All Posts Create a Post
Django rest clean up before validation
Sometime we need to clean up the value before it validated by an exiting validations. For example, when user sended an longitude and latitude data into backend with multiple length …
How to setup all raw_id_fields and search_fields for django
For example I have this 3 fields as question_set, question and folder. I need to assign all of this fields into raw_id_fields inside the admin.ModelAdmin without add manually per-single fields. …
How to make a notification when terminal process is complete
I have started a long process through a terminal. Is it possible to make the Ubuntu terminal make a sound once the process is complete? This way, I don’t need …
Django Standard API Response Middleware for DRF
As you can see, if you using django-rest-framework, you will found many different response format. This middleware to solve all of these problems with implement the Standard API Response. All …
IDGenerator
Generate a unique identifier of a specified fixed length consisting of the characters 0-9 and a-z. For example: zcgst5od 9x2zgn0l qa44sp0z 61vv1nl5 umpprkbt ylg4lmcy dec0lu1t 38mhd8i5 rx00yf0e kc2qdc07 Here is …
Markdown syntax to resize or styling the image
This case was issued by muradaliyev88 in django-markdown-editor repository. as answered by rudolfbyker If you are writing MarkDown for PanDoc, you can do this: {height=100px} or {style="border: 1px solid;height:100px"} result …
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 …
Program Merapikan atau Ganti Nama File
Program Merapikan atau Ganti Nama File – Program ini dibuat oleh teman saya yang bernama Ferry, dimana tujuannya tentu untuk merapikan atau ganti nama dari File yang berada dalam satu …