All Posts Create a Post
Python numberize until undefined or infinity numbers
Something we need to create the function to convert the number into string number, for example: 1000 to 1.0 k, 1000000 to 1.0 m, etc. def numberize(number): scales = { …
changewords - Simply python tool to change or replace the text string in the files
changewords is Simply python tool to change or replace the text string in the files. This tool pretty nice for programmers if somehow they want to replace/change their codes for …
Convert all mp4 files into mp3 files
One method is a bash *for loop*. Easy convert to .mp3 files: mkdir outputs/ for f in *.mp4; do ffmpeg -i "$f" "outputs/${f%.mp4}.mp3"; done For converting only .mp4 files: mkdir …
Filter Timeline Twitter menggunakan Tweepy
Melanjut tutorial yang sebelumnya, yaitu mengenai: Cara menggunakan Tweepy dan saat ini kita membahas sedikit bagaimana cara Filter Timeline Twitter menggunakan Tweepy. Yang perlu kita perhatikan adalah “Dokumentasi”, karena dokumentasi …