排序
Generating mock data using Mimesis: Part I
Generating mock data using Mimesis: Part I, The ability to generate mock but valid data comes in handy in app development, where you need to work with databases. Filling in the dat...
Simple Face Recognizing System using python and openCV
Simple Face Recognizing System using python and openCV, Face Recognising System Face Recognising System is a computer application that is used to identify people from a image or a ...
Timing your Python Code
Timing your Python Code,There are many times when you would want to see how much time your program takes to execute. The easiest way to do it on a unix system is to use the time co...
Suggestions for learning more Java
Suggestions for learning more Java,Hello all, I've been interested in Java lately. I feel like I have a good grasp on the basics of the language as well as object oriented programi...
Internet censorship device
Internet censorship device,I spent my day in creating an arduino toy I want to use in an incoming speech I'll give in a sec convention, about internet censorship. Internet censorsh...
Exceptional Python
Exceptional Python,Originally published on my blog Introduction: Error management Sometimes, things go wrong. We have plenty of ways of expressing this in the English language: Som...
Build a simple python web crawler
Build a simple python web crawler, What is a Web Crawler? Web crawler is an internet bot that is used for web indexing in World Wide Web.All types of search engines use web crawler...
MongoDB Plugin for PyCharm
MongoDB Plugin for PyCharm,There are many different options available when developing to look at and examine your MongoDB collections. MongoDB's Compass is a great example of a too...
Build a quick Summarizer with Python and NLTK
Build a quick Summarizer with Python and NLTK,If you're interested in Data Analytics, you will find learning about Natural Language Processing very useful. A good project to start ...
Testing against unmanaged models in Django
Testing against unmanaged models in Django, The problem My Django application is supposed to read the tables of an already existing database. So the models of the database are gene...
Managing RESTful URLs in Django Rest Framework
Managing RESTful URLs in Django Rest Framework,We've all been taught about RESTful API design. It does not take much to realize that these endpoints POST /products/1/delete POST /p...