First Adventure in Malware Data Science
First Adventure in Malware Data Science,I haven’t been a software developer for very long, but I enjoy it. In my day job I do backend work in Flask, but I was looking for an excit...
How to Securely Store a Password in Java
How to Securely Store a Password in Java,A previous version of this article confused the process of 'hashing' with the process of 'encryption'. It's worth noting that, while simila...
Making a hash of data
Making a hash of data,When I was replacing peewee with PonyORM in my web publishing engine, I was evaluating a few options, including moving away from an ORM entirely and simply st...
Implementing Model Class Inheritance in SQLAlchemy
Implementing Model Class Inheritance in SQLAlchemy, Implementing Model Class Inheritance in SQLAlchemy (with Flask) SQLAlchemy is an Object-relational mapping (ORM) made for the Py...
How to reverse a list in Python
How to reverse a list in Python, Reversing a list in Python is really, really easy. This doesn't apply only to list but to sequence in general (string and tuple for example). msg =...
Everything you need to know about tree data structures
Everything you need to know about tree data structures, This post was originally published at iamtk.co. When you first learn to code, it’s common to learn arrays as the “main dat...
Optimize the Django ORM
Optimize the Django ORM,Recently, I have been optimizing some functions that were slower than expected. As with most MVPs, the initial iteration was to get something working and ou...
Builder Pattern, a first step to DSL
Builder Pattern, a first step to DSL,When you are looking for an explanation of Builder pattern, you will probably find some articles all showing a class dedicated to creating an o...
Bye Bye 403: Building a Filter Resistant Web Crawler Part II: Building a Proxy List
Bye Bye 403: Building a Filter Resistant Web Crawler Part II: Building a Proxy List, originally published on the Coding Duck blog: www.ccstechme.com/coding-duck-blog Woohooo! We've...
PyKup – Web App backup manager
PyKup - Web App backup manager, PyKup - WebApp backup manager A simple tool to easily manage and schedule backup for any web app! With PyKup you can backup your web applications in...
A tiny python log decorator
A tiny python log decorator,This post is only a compilation from others posts that i read for create a log decorator. Firstly, we need to configure a log properly, an good example ...
Adding validation support for Json in Django Models
Adding validation support for Json in Django Models, The contents of this post have now been moved to my blog and can be viewed here 原文链接:Adding validation support for Json in...