Tony Tan tonytan748.github.io
1.

5 favorite open source Django packages

this blog translate from https://opensource.com/business/15/12/5-favorite-open-source-django-packages Django is built around the concept of reusable apps: self-contained package...
2.

How to find some characters in all files in linux

If you want find the characters “hello,world!” in the current folder. you can do: 1grep -rn "hello,world!" * 12345* current folder,or some folder name-r recursion to f...
3.

12 Useful Pandas Techniques in Python for Data Manipulation

12 Useful Pandas Techniques in Python for Data Manipulation IntroductionPython is fast becoming the preferred language for data scientists – and for good reasons. It provides th...
4.

Set up data in custom Django context processors to access on all Django templates

ProblemYou want to set up data to become available on all Django templates, without having to set up the data individually on Django view methods. SolutionCreate a custom Django...
5.

CURL command reference

Operations Description -X appoint HTTP request method, like POST, GET -H appoint request header, for example Content-type:application/json -d appoint request data –...
6.

Prtfect Single Code for Python

some coding for python which one line to finish a common Product 2 for every element in list 1print map(lambda x:x*2, range(1,11)) Sum of all elements in list 1print sum(ran...
7.

Nifty Python Tricks

Some Python Useful Ways This Blog tracsfer from (here)[https://pythontips.com/2015/04/19/nifty-python-tricks/] EnumerateInstead of doing: 1234i = 0for item in iterable: print...
8.

Python module: fileinput

Loop many files in a folder and read them by line I just make a example to explane how to use fileinput. fileinput is use to loop some format files in a folder, and read it by ...
9.

Install Kernel4.6 in Ubuntu 15.04

How to upgrade Ubuntu Kernel to 4.6 This blog transfer from here Check the current Linux kernel version with command: 1uname -r Now, we will install Linux Kernel 4.6. You can do...
10.

A Few Things To Remember While Coding In Python

Transfer from http://satyajit.ranjeev.in/2012/05/17/python-a-few-things-to-remember.html Zen of PythonLearing the culture that surrounds a language bringd you one step closer to...