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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt] | |
@="Open Terminal here" | |
"Icon"="%USERPROFILE%\\OneDrive\\Pictures\\icons\\terminal.ico" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\wt\command] | |
@="C:\\Users\\mateu\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe -d ." |
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
code --install-extension bitlang.cobol | |
code --install-extension dunstontc.dark-plus-syntax | |
code --install-extension ms-vscode.cpptools | |
code --install-extension PKief.material-icon-theme | |
code --install-extension shanduur.c-embedded-sql | |
code --install-extension bitbelt.converttoasciiart | |
code --install-extension cseitel.open-in-npp |
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
config='https://github.com/Shanduur/simple-linux-configuration.git' | |
if [ -e ~/tmp ]; then | |
rm -rf ~/tmp | |
fi | |
pkg install -y openssh rsync git make neovim clang golang htop neofetch man tsu | |
if [ -e ~/.config ]; then | |
echo "[WARNING] Directory .config exists." |
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
args: -set device.hostpci0.x-msix-relocation=bar2 -device isa-applesmc,osk="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" -smbios type=2 -device usb-kbd,bus=ehci.0,port=2 -cpu host,kvm=on,vendor=GenuineIntel,+kvm_pv_unhalt,+kvm_pv_eoi,+hypervisor,+invtsc | |
balloon: 0 | |
bios: ovmf | |
bootdisk: ide2 | |
cores: 4 | |
cpu: Penryn | |
efidisk0: storage-1:vm-101-disk-1,size=1M | |
hostpci0: 02:00,pcie=1 | |
ide0: data:iso/Catalina-Installer.iso,cache=unsafe,size=2086412K | |
ide2: data:iso/OpenCore.iso,cache=unsafe,size=150M |
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
Show hidden characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Python: Current File", // requires ms-python.python extension | |
"type": "python", | |
"request": "launch", | |
"program": "${file}", | |
"console": "integratedTerminal" | |
}, |
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
export CLANG_VERSION="CLANG38" | |
export UBUNTU_RELEASE="focal" |
This file has been truncated, but you can view the full file.
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
vagrant : INFO global: Vagrant version: 2.2.14 | |
At line:1 char:1 | |
+ vagrant up --debug 2>&1 | Tee-Object -FilePath ".\vagrant.log" | |
+ ~~~~~~~~~~~~~~~~~~~~~~~ | |
+ CategoryInfo : NotSpecified: ( INFO global: Vagrant version: 2.2.14:String) [], RemoteException | |
+ FullyQualifiedErrorId : NativeCommandError | |
INFO global: Ruby version: 2.6.6 | |
INFO global: RubyGems version: 3.0.3 | |
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\2.2.14\\gems\\vagrant-2.2.14\\bin\\vagrant" |
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 | |
# default username / password combination is: | |
# ubuntu:ubuntu | |
export DEFAULT_USER="ubuntu" | |
echo "default user: ${DEFAULT_USER}" | |
export CURRENT_USER=$(whoami) | |
echo "current user: ${CURRENT_USER}" | |
# Configuration |
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 | |
OS=$(uname -s) | |
ARCH=$(uname -m) | |
URL="https://github.com/docker/compose/releases/latest/download/docker-compose-${OS}-${ARCH}" | |
if [ -z ${OVERRIDE_PATH} ]; | |
then | |
INSTALL_PATH="/usr/local/lib/docker/cli-plugins/docker-compose" | |
else |
OlderNewer