Building Python scripts in Sublime Text (on Windows)
Install Python Download Python [python-3.10.5-amd64.exe] to: C:\dev\python\ Choose Customize Installation Enable only: pip tcl/tk and...
LUKE CHIKKALA
Tech Notes
Install Python Download Python [python-3.10.5-amd64.exe] to: C:\dev\python\ Choose Customize Installation Enable only: pip tcl/tk and...
Apple officially deprecated the support for OpenGL since macOS 10.14 Mojave. As such, building a basic window (or a triangle, if you’re...
Having downloaded glade from Homebrew 🍺, I can only run it directly from the terminal. Since I always use my 34″ external monitor, I...
!! PENDING POST !! This is not an actual post but just a short note for anyone (including myself) learning the GNOME’s GTK+ widget...
Of the billion and a half display filters, here are a few useful ones for analyzing TCP packets. However, I won’t be updating it...
Example: say "Hello, from MacLife" There are 48 built-in voices as of macOS Catalina: To get a list of available voice, type: say -v ?...
With the default settings of PuTTY (at least as of v0.73 released: 29-Sep-19) as a TELNET client, it sends the following characters as a...
defaults write com.apple.screencapture disable-shadow -bool TRUE; killall SystemUIServer Put it back, defaults write...
To download a file from a website: Syntax: curl www.example.com --output my.file Example: curl https://wpcom-themes.svn.automattic.com/...
/Volumes/NameofUSB/grandMA3/shared/shows
1. Open Terminal and navigate to the home [~] directory. cd ~ or cd 2. Open .bash_profile nano .bash_profile If there isn’t one...
On macOS & Linux Use the host command host -t AAAA www.google.com host is a terminal tool for performing DNS lookups. Output:
On macOS & Linux (or any platform in which “curl” is installed) curl ipinfo.io/ip
On macOS WARNING: Be cautious when using the following commands. Find the correct partition of the disk. diskutil list From the above...
On UNIX, Linux & MacOS only Type the following to change the current directory to Home directory: cd $HOME Edit the file “.vimrc” by...
php -S 192.168.0.1:80 -t ~/path/to/index -S : starts server -t : path to file
Using terminal, go to /Users/Username/.ssh [code]cd /Users/John/.ssh[/code] Open the known_hosts file with a text editor of your choice...
Change the User-Agent by inspecting the element. Go to Network > three vertical dots at extreme right corner of network window > More...
Create a batch with the following line: [code]taskkill /F /IM wscript.exe /T[/code] HOW TO CREATE A BATCH FILE? wait, how did you learn...