The Problem with Python Package Structure in dev Mode
If you are trying to develop a python package and facing difficulties in doing so, this article may help. The Issue Recently, I was trying…
Thoughts, tutorials, and research notes.
If you are trying to develop a python package and facing difficulties in doing so, this article may help. The Issue Recently, I was trying…
Frameworks come-and-go. There’s nothing you can do. But one thing you can do is – adapt. And if you don’t, you’ll be forgotten like your…
Playing with large set of data is always fun if you know how to do it. You can fetch interesting information from it. As part…
It’s been a while since I have done this type of brain storming stuff. Today is my country’s victory day and I have got some…
Few months ago I wrote a code in AngularJS which was something like this: <ul ng-repeat="course in courses|filter:{is_taken:true }" > <li>{{ course.name }}</li> </ul> …
Security is always a big deal for a software specially for web app where you don’t know your users’ intention. To ensure some common security…