← back

writing

Format numbers in Javascript

Now, you can just use .toLocaleString() to format a number in any way you like. Back then you would need a custom …

Git Logging Github Accounts With 2FA

if you have 2FA for your Github account activated, it will be annoying to access your private repositories through git, …

How to connect to github

When using git, it is a hassle to retype the password every time we commit. Of course, you can always save the password …

How to connect to your Pythonanywhere database remotely

Pythonanywhere is an excellent place to run your python code and your website, it offers multiple consoles and database. …

How to dupilicate a python list

If you want a copy of a list, you might do this:

list1 = list2

if you alter values in list2, you would find that the …

How to freely and accurately OCR PDFs

Many times when someone sends you a pdf of a scanned or a picture of a document, you can’t copy texts off of the …

How to get a procedure's definition in MSSQL

If you are new to a legacy database and want to learn more about its internals, sometimes it’s good to read the …

How to make elements fixed on the screen

If you want something to always float on the screen, not affected by other elements, you can achieve this using CSS: …

How to strip html tags in Django

Many times, you would want to strip the html tags away from a string and only leave plain text. This can be accomplished …

Manim: An Python Animation Engine

If you use Python, you might know a library called Manim. It is first a personal project by 3b1b and you can now (well …