Originally posted on jinahya:
user@host:~$ cat json.json {"a": {"b": "c"}} user@host:~$ python -m json.tool json.json { "a": { "b": "c" } } user@host:~$ cat json.json | python…
Month: March 2013
Installing gevent from source on Windows
Originally posted on only problems, no solutions:
I was trying to install Gevent from source on my windows machine using virtualenv. So lets start from the beggining:…
The Triangle Project, initial and recursive
Originally posted on :: NickBurns:
(follows from ‘Refactoring, the triangle project overview) Through this series of blogs, I want to record my pythonic adventures and refactor my existing…
Python: Dynamically Load Module and Call Functions
Originally posted on Architecture and Planning:
I was looking through the videos for PyCon 2013 and there was a talk on Dynamic Code Patterns that caught my…
Extracting Data From MS-SQL TDS Streams in a libpcap File
Originally posted on Malware Musings:
Sometimes in life you find yourself wanting to have a quiet afternoon in front of a computer, extracting login credentials and SQL…
Product management vs. Project management
Originally posted on Semiconductor Product Marketing:
Here is another interesting article about the difference between Product Manager and Project Manager. In some companies, Project Managers are known…
Implementing project work with the right contractor
Originally posted on kumiquarry:
Introduction : A Project work that delivers the desired result depends on the quality and efficiency of the raw materials supplied by the…
List all uploaded file with Delete option
Originally posted on Web Developer Blog:
Hello guys, Today, one of my friend asked me to display the uploaded files from folder with delete option. so i…
Why Write Command-Line Applications in PHP?
Originally posted on One More Game-Dev and Programming Blog:
PHP is well-known to programmers as a popular language for developing web applications. But we can also write…