Skip to content

Instantly share code, notes, and snippets.

View gitscosh's full-sized avatar
🚒
For DevOps help, dial 0118 999 881 999 119 725 3.

Scosh gitscosh

🚒
For DevOps help, dial 0118 999 881 999 119 725 3.
View GitHub Profile
@gotbletu
gotbletu / eXoScummVM 2.9.0 game list.txt
Last active February 27, 2026 07:39
eXoScummVM 2.9.0 game list
1.5 Ritter (Windows).zip
11 Mysterious Adventures (C64).zip
11th Hour, The (Windows).zip
13th Disciple, The (DOS).zip
3 Geeks (Windows).zip
3 Skulls of the Toltecs (CD DOS).zip
404 - Life Not Found (IF).zip
5 Days A Stranger (Windows).zip
6 Days A Sacrifice (Windows).zip
69,105 Keys (IF).zip
@gotbletu
gotbletu / eXoWin3x 2.0 game list.txt
Created March 19, 2024 11:30
eXoWin3x 2.0 game list
'Jongg CD!, The (1997).zip
101 Dalmatians - Escape From DeVil Manor (1997).zip
1942 - The Pacific Air War Gold (1994).zip
20,000 Leagues Under The Sea (1995).zip
3-D Dinosaur Adventure Anniversary Edition (1997).zip
3-D Ultra Minigolf (1997).zip
3-D Ultra Pinball (1995).zip
3-D Ultra Pinball - Creep Night (1996).zip
3-D Ultra Pinball - The Lost Continent (1997).zip
3D Atlas '98 (1997).zip
@DrewCaliber
DrewCaliber / Info.txt
Created January 4, 2022 23:42
Main index for TheAlcoveBot in Discord.js v12
The following is to help with setting up the bot. I know, a ton of things could have been writtin into the config.json. But this bot was designed basically from scratch by a complete newb fueled by redbull. So get over it.
prefix - The designated lead symbol to start every command with.
Go to https://discord.com/developers/applications login and create and follow these steps: https://www.writebots.com/discord-bot-token/.
token - Paste your bots Discord token between the qoutations
failures - Paste a channel ID that you want the logs for failed tickets to show up in
@mobilemind
mobilemind / git-tag-delete-local-and-remote.sh
Last active December 18, 2025 20:10
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
@c0ldlimit
c0ldlimit / git_newrepo
Created November 16, 2012 17:14
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line
@cjus
cjus / jsonval.sh
Created June 26, 2011 17:42
Extract a JSON value from a BASH script
#!/bin/bash
function jsonval {
temp=`echo $json | sed 's/\\\\\//\//g' | sed 's/[{}]//g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | sed 's/\"\:\"/\|/g' | sed 's/[\,]/ /g' | sed 's/\"//g' | grep -w $prop`
echo ${temp##*|}
}
json=`curl -s -X GET http://twitter.com/users/show/$1.json`
prop='profile_image_url'
picurl=`jsonval`