This file contains 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
#!/bin/bash | |
echo "mks.gl.allowBlacklistedDrivers = \"TRUE\"" >> ~/.vmware/preferences | |
echo "mks.vk.allowUnsupportedDevices = \"TRUE\"" >> ~/.vmware/preferences | |
echo "VMWare is patched so that 3D is supported on your GFX Card" |
This file contains 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
#!/bin/zsh | |
brew install sdl2 freetype2 fontconfig pkg-config opus libpng libedit jpeg-turbo | |
cd ~ | |
mkdir ~/Documents/Gaming/ | |
mkdir ~/Documents/Gaming/Half\ Life\ 2 | |
mkdir ~/Documents/Gaming/Half\ Life\ 2\ Episodes | |
mkdir ~/Documents/Gaming/Portal |
This file contains 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
from bs4 import BeautifulSoup | |
import os | |
import subprocess | |
print("Enter A 2 Letter Combo:") | |
code = input() | |
for i in range(1000, 9999): | |
print("Downloading pic "+ str(i) + "in" + code) |