Mixins for Fun and Profit
Mixins for Fun and Profit,This post originally appeared on Easy as Python in December 2016. There are people out there who have the time, motivation, and resources to cook meals en...
Dockerizing your flask application
Dockerizing your flask application,First we run our flask app into a apache server, so we need to configure apache server. A full tutorial can be checked here wsgi file #!/usr/bin/...
Testing Different Fibonacci Generator Techniques in Python
Testing Different Fibonacci Generator Techniques in Python,Hey all! So, yesterday I posted a practice solution for finding the 200,000th number in the Fibonacci sequence as quickly...
Installing Python and virtualenv on OSX
Installing Python and virtualenv on OSX,Every time I need to install Python on OSX or whenever a colleague asks for help, I have to search fo the most updated instructions on Googl...
Memory Managment in Python – Part 2
Memory Managment in Python – Part 2,In the last part, we checked out how variables are stored in Python and how Python handles memory management with reference counts and garbage ...
Parse in Gambling: How to Write Your Parser in 15 Minutes?
Parse in Gambling: How to Write Your Parser in 15 Minutes?, Step 1 - Parsing: What? Why? How? Generally, parsing is a linear comparison of words sequence with the rules of a langua...
Single Label Multiclass Classification Using Keras
Single Label Multiclass Classification Using Keras,Hi DEVz, It's my second post using Keras for machine learning. This time it's the next lesson in the book for Multiclass Classifi...
Recursion Algorithm Practice: Fibonacci Sequence Generator
Recursion Algorithm Practice: Fibonacci Sequence Generator, for more of our great content, visit the Coding Duck Blog at: ccstechme.com/coding-duck-blog Hey there Dev community! So...
Big-O: Prime Factors and Pseudo-Polynomial Time
Big-O: Prime Factors and Pseudo-Polynomial Time,Most programmers have at least a passing acquaintance with big-O notation. It's a technique that's used to find the upper bound on r...
Example of Yaml Generator and Validator in Python
Example of Yaml Generator and Validator in Python,If you work with Yaml regularly or not, the thing most people know about it is that it definitely cares about whitespace, and even...