Start a Virtual Environment in Python 3
python3 -m venv ./env Activate the virtual environment with: source env/bin/activate
Firefox Containers (without using an extension)
A new update was made recently to the Firefox Multi Container extension, requesting permission to…
Resetting Django Migrations Without Losing Data
This shows how to reset django migrations without losing any data. If you’ve deleted an…
Show all properties of a variable in python (like PHPs var_dump, but better)
“but better” because types are also exposed from inspect import getmembers from pprint import pprint…
Grep for IP address with regular expressions, recursive directory search, only matching
Grep is powerful search. Here is how to grep for an IP address within a…
Changing git commit AUTHOR and COMMITTER
It’s as simple as: git -c user.name="Author Name" -c user.email=author@email.com commit --amend --reset-author All done.
views.open error, Slack API
Trying to debug a nondescript error, "The server responded with: {'ok': False, 'error': 'internal_error'}", brings…
Google Authenticator App Crashes After iOS 14.2 Update
Go to Settings > General > iPhone Storage > Authenticator Click on “Offload App”,…
Invalid Keypair Troubleshoot on Jetbrains Products (PyCharm, PHPStorm) using command line tools
This is how I fixed my problem (from rsa to openssh rsa) I’m using a…
Fix slow PHP mac localhost
It’s probably not slow PHP, just slow routing. Open terminal and type in hostname to…