Skip to content

Instantly share code, notes, and snippets.

View moglerdev's full-sized avatar
🐵
Proving Riemann's conjecture

Christopher Jäger (Mogler) moglerdev

🐵
Proving Riemann's conjecture
View GitHub Profile
@moglerdev
moglerdev / shootbot_for_echometer.js
Created August 1, 2023 09:36
A small bot to cheat in the balloon game from echometer
/**
* Shootbot for Echometer
*/
class SB {
websocket = null;
constructor() {
const retroId = window.location.pathname.split("/").at(-1);
this.xsrfToken = document.cookie.split(";").map(x => x.trim().split("=")).filter(x => x[0].toLowerCase() == "xsrf-token")[0][1];
this.websocket = new WebSocket(`wss://my.echometerapp.com/api/retro/${retroId}/events?isMobile=false`);
@moglerdev
moglerdev / vsc-updater.sh
Last active December 31, 2023 07:05
This script downloads the tar.gz files from Microsoft servers, installs them in the /opt folder, and registers a symlink, as well as in the application pool. Designed for the convenience of Arch Linux users
#!/bin/sh
####################################################################################
### LICENSE MIT
###
### Copyright (c) 2023 Christopher R. Jaeger
###
### Permission is hereby granted, free of charge, to any person obtaining a copy
### of this software and associated documentation files (the "Software"), to deal
### in the Software without restriction, including without limitation the rights
### to use, copy, modify, merge, publish, distribute, sublicense, and/or sell