Python packaging with cython

cython converts python code to C/C++ and creates compiled extensions. Generally this is used to speed up the execution, but one can also use it for protecting their python source code. Code structure package_tutorial +- setup.py +- README.md +- my_pkg +- __init__.py +- module_one.pyx +- module_two.pyx +- utils.pyx # __init__.py from . import utils from . import module_one from . import module_two # utils.py def add(a, b): return a+b # module_one....

एप्रिल 17, 2021 · 1 min · 170 words · शंतनू

Documentation

Importance of Documentation

ऑक्टोबर 9, 2016 · 1 min · 171 words · शंतनू

Front Door

जुलै 26, 2016 · 0 min · 0 words · शंतनू

Read Receipt and Delivery Receipt

Use following email headers for requesting e-mail acknowledgement. Return-Receipt-To: [email protected] Disposition-Notification-To: [email protected]

ऑगस्ट 27, 2015 · 1 min · 12 words · शंतनू

Strengths And Weakness

जुलै 2, 2015 · 0 min · 0 words · शंतनू

Why the English Language Is Hard to Learn...

The bandage was wound around the wound. The farm was used to produce produce. The dump was so full that it had to refuse more refuse. We must polish the Polish furniture. He could lead if he would get the lead out. The soldier decided to desert his dessert in the desert. Since there is no time like the present, he thought it was time to present the present. A bass was painted on the head of the bass drum....

जून 15, 2015 · 3 min · 565 words · शंतनू

Code Quality

एप्रिल 18, 2015 · 0 min · 0 words · शंतनू

Effective Communication

An older gentleman was on the operating table awaiting a complicated surgery on him and he insisted that his son-in-law, a renowned surgeon, perform the operation. As he was about to get the anaesthesia, he spoke to his son-in-law. “Yes, Dad, what is it?” “Don’t be nervous son; do your best and just remember, if something happens to me mother in law will come and live with you.” The surgery was a great success....

एप्रिल 14, 2015 · 1 min · 74 words · शंतनू

I Know You're Listening

एप्रिल 12, 2015 · 0 min · 0 words · शंतनू

Newton's Laws of Software

Law 1 Every Software Engineer continues his state of chatting or forwarding mails unless he is assigned work by manager. Law 2 The rate of change in the software is directly proportional to the payment received from client and takes place at the quick rate as when deadline force is applied. Law 3 For every Use Case Manifestation there is an equal but opposite Software Implementation. Law 4 Bugs can neither be created nor be removed from software by a developer....

मार्च 24, 2015 · 1 min · 102 words · शंतनू