Visual Studio Code | VSCodium |
---|---|
/Applications/Visual Studio Code.app |
/Applications/VSCodium.app |
$HOME/.vscode |
$HOME/.vscode-oss |
$HOME/Library/Application Support/Code |
$HOME/Library/Application Support/VSCodium |
$HOME/Library/Preferences/com.microsoft.VSCode.plist |
$HOME/Library/Preferences/com.visualstudio.code.oss.plist |
/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code |
/Applications/VSCodium.app/Contents/Resources/app/bin/codium` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Note: LOGIN SCREEN SCALE (200%), LOGIN SCREEN SIZE (1152x864) and DISPLAY SCALE (200%) below are dependant on | |
# Virtual Machine > Settings > Display > 'Use full resolution for Retina display' in VMware Fusion being checked | |
# (gui.fitGuestUsingNativeDisplayResolution = "TRUE" in .vmx file) | |
# Get the installed Ubuntu version e.g. 20, 18, 16 etc. | |
VERSION=$(lsb_release -r | awk '{print $2}' | cut -d '.' -f 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://docs.python-requests.org/en/master/api/ | |
import requests | |
class RequestsApi: | |
def __init__(self, base_url, **kwargs): | |
self.base_url = base_url | |
self.session = requests.Session() | |
for arg in kwargs: | |
if isinstance(kwargs[arg], dict): | |
kwargs[arg] = self.__deep_merge(getattr(self.session, arg), kwargs[arg]) |