Author: techb4
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…
Hardening your WordPress installation
find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x find…
Searching Git Commit History
To search your git commit history for a specific comment made, it’s quite straightforward: …
Sign into Gmail without Signing into Chrome [Updated Dec 1, 2018]
UPDATE: To disable signing in to chrome, go to Settings (scroll down to advanced) >…