Skip to content

Instantly share code, notes, and snippets.

View tifasoftware's full-sized avatar

LeChan Labs (Infilit) tifasoftware

View GitHub Profile
@tifasoftware
tifasoftware / patchVMWare.sh
Created November 19, 2023 04:25
Enable 3D Accerlation on Unsupported Cards in VMWare Workstation for Linux
#!/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"
@tifasoftware
tifasoftware / build.sh
Last active March 6, 2024 19:19
Building Source Engine for Apple Silicon
#!/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
@tifasoftware
tifasoftware / grabpics.py
Created July 13, 2022 04:36
LightShot Screen Shot Scrapping
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)