Flask – micro web framework written in Python

Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions. It can be used for creating complete web application or for developing […]

Flask – micro web framework written in Python Read More »

Are software jobs stressful? If yes, in what way are they

I have over 10 years of experience. In my experience, stress in programming is related to deadlines. Sometimes, our customers -internal or externals- set unrealistic deadlines to deliver. And of course, and especially when you are new, it’s hard to say “no”. With time, I learned that the answer to “I want it done, and I want

Are software jobs stressful? If yes, in what way are they Read More »

JSONP – Javascript widgets

JSONP stands for JSON with Padding. Requesting a file from another domain can cause problems, due to cross-domain policy. Requesting an external script from another domain does not have this problem. JSONP uses this advantage, and request files using the script tag instead of the XMLHttpRequest object. Use cases Below is an example source code, How

JSONP – Javascript widgets Read More »

Scroll to Top