Skip to content

Instantly share code, notes, and snippets.

View overestimate's full-sized avatar
⚒️
slowly making things

emily overestimate

⚒️
slowly making things
  • college til '28, looking for internships
  • 11:43 (UTC -06:00)
View GitHub Profile
@overestimate
overestimate / bun_serve_userscript_template.js
Last active December 28, 2023 22:04
userscript template to use with bun for development
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version <$DATE$>
// @description try to take over the world!
// @author You
// @match <$URL$>
// @icon <$ICON$>
// @grant none
// ==/UserScript==
@overestimate
overestimate / README.md
Last active November 8, 2023 17:05
cs2 desubticked exec method (FIXED)
@overestimate
overestimate / install.py
Last active June 4, 2022 09:23
minimal mcsnipergo installer
#!/usr/bin/env python3
RELEASE_SUFFIX = '_Linux_64-bit'
import os
stream = os.popen('curl -sL https://api.github.com/repos/kqzz/mcsnipergo/releases')
res = stream.read()[:-1]
import json
obj = json.loads(res)
url = ""
for asset in obj[0]['assets']:
if RELEASE_SUFFIX in asset['name']:
@overestimate
overestimate / remove.css
Last active July 7, 2024 17:03
ClearVision Watermark Removal
.typeWindows-2-g3UY > .wordmark-2u86JB:before,
.typeWindows-2-g3UY > .wordmark-2u86JB:after {
display: none;
content: initial;
}
.container-YkUktl {
margin-bottom: 0px;
}
.container-YkUktl:before,
.container-YkUktl:after,
@overestimate
overestimate / install_certs.py
Created March 27, 2022 07:49
Mirrored 'Install Certificates.py'
import os
import os.path
import ssl
import stat
import subprocess
import sys
STAT_0o775 = ( stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
| stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP
| stat.S_IROTH | stat.S_IXOTH )
def main():
@overestimate
overestimate / README.md
Last active February 4, 2022 19:08
wordle solution bookmarklet

Open the link below and bookmark the link there. Click the bookmark while wordle is open to get the solution. data:text/html;base64,PGEgaHJlZj0namF2YXNjcmlwdDphbGVydChgU29sdXRpb24gaXM6ICR7SlNPTi5wYXJzZShsb2NhbFN0b3JhZ2UuZ2FtZVN0YXRlKS5zb2x1dGlvbn1gKSc+R2V0IFdvcmRsZSBTb2x1dGlvbjwvYT4= (MAY NOT WORK)

Alternatively, head to the link below while wordle is open in the same tab to get the solution. javascript:alert(`Solution is: ${JSON.parse(localStorage.gameState).solution}`)

@overestimate
overestimate / MCbearer.js
Created December 21, 2021 19:32
minecraft userscript/console js to copy token to clipboard
console.log("bearer below.")
console.log(document.cookie.split(';').find(b=>b.includes('bearer_token=')).split('=')[1])
@overestimate
overestimate / NameMC Info.user.js
Last active December 21, 2021 23:07
NameMC Info Copy Script
// ==UserScript==
// @name NameMC Info Copy
// @namespace http://overestimate.ninja/
// @version 0.4.2
// @description Gets timestamp and name info for quick sniper usage.
// @author overestimate
// @match https://namemc.com/search?q=*
// @match https://namemc.com/minecraft-names*
// @icon https://www.google.com/s2/favicons?domain=namemc.com
// @grant none
@overestimate
overestimate / install.sh
Last active March 18, 2021 04:34
GoSnipe Easy Install Script
#!/bin/sh
if [ $(uname -s) = "Linux" ]
then
if [ $(uname -p) = "x86_64" ]
then
mkdir $HOME/GoSnipe; curl -Lo $HOME/GoSnipe/gosnipe https://ci.appveyor.com/api/projects/overestimate/gosnipe/artifacts/gosnipe-linux-amd64; chmod 755 $HOME/GoSnipe/gosnipe; echo 'export PATH="$PATH:$HOME/GoSnipe"' >> $HOME/.profile
exit 0
elif [ $(uname -p) = "aarch64" ]
then
mkdir $HOME/GoSnipe; curl -Lo $HOME/GoSnipe/gosnipe https://ci.appveyor.com/api/projects/overestimate/gosnipe/artifacts/gosnipe-linux-arm64; chmod 755 $HOME/GoSnipe/gosnipe; echo 'export PATH="$PATH:$HOME/GoSnipe"' >> $HOME/.profile
@overestimate
overestimate / USAGE.MD
Created August 7, 2020 23:12
3Snipe for Windows Terminal