Skip to content

Instantly share code, notes, and snippets.

View burritosoftware's full-sized avatar
🦊
writing furry magic into code ✨

Burrito burritosoftware

🦊
writing furry magic into code ✨
View GitHub Profile

Keybase proof

I hereby claim:

  • I am burritosoftware on github.
  • I am burritosoftware (https://keybase.io/burritosoftware) on keybase.
  • I have a public key ASBd8leVBeRHGClqE9LILhrPbbWnITaWl7Mm2_jDcNcmOAo

To claim this, I am signing this object:

@burritosoftware
burritosoftware / odysseywinburrito.md
Last active June 22, 2021 10:26
Odysseyra1n on Windows Tutorial (Burrito Edition)

Odysseyra1n on Windows Tutorial (Burrito Edition)

Prerequisites

What you'll need:

  • A USB drive
  • A computer
  • An official Apple cable
  • A checkra1n compatible iOS device (5s to X)
@burritosoftware
burritosoftware / ultimateguidetoaltstore.md
Last active December 2, 2022 09:07
The Ultimate Guide to Troubleshooting AltStore

The Ultimate Guide to Troubleshooting AltStore

Having issues with AltStore? This is the right place for you.

Wi-Fi Sideloading/Refreshing Is Not Working

  • Check that your Mac or PC and your device are connected to the same network.

  • Check that iTunes/Finder Wi-Fi Sync is turned on.

    1. Plug in your device to your computer.
    2. Launch iTunes (or Finder on Catalina and later).
  1. Select your device in the sidebar or top bar.
@burritosoftware
burritosoftware / whyimleavingrjailbreak.md
Last active September 18, 2023 20:30
The reasons why I am leaving the r/Jailbreak Discord community, and everything that came to this.

Hello.

I'm Burrito. You may know me from making AuthKit, AppDefense, Wander, or some other projects like my jailbreak guides. I'm one of the youngest people in the jailbreak community, and probably one of the youngest tool creators. Today, I would like to share some harsh experiences I've had, and why I am leaving the community.

For starters, I should mention that my experience only applies to the r/Jailbreak Discord community. Also, I should mention that you should read everything. There is no tl;dr, and the people who actually read the entire message with a serious mind would earn lots of respect and trust from me. I know this message will surface to r/Jailbreak's Discord, in one way or another, and I know people will skim over this, and I know that many people will not agree. I also know, in the terms of the r/Jailbreak Discord, that I will get a lot of "who the **** asked" and "who cares" jokes and comments. I also strongly know that the staff of the server will mock and meme this writing I ma

@burritosoftware
burritosoftware / dump.py
Last active September 25, 2021 18:29
Beat Saber dumping
import json
import os
import time
# Enter your username and password in the variables below
# This script should be placed in a directory with:
# DepotDownloader: https://github.com/SteamRE/DepotDownloader/releases/latest
# Latest BSVersions.json: https://raw.githubusercontent.com/RiskiVR/BSLegacyLauncher/master/Resources/BSVersions.json
# clean.py: https://gist.githubusercontent.com/burritosoftware/e80048ea18c591be3fd6bd3eda7b90d1/raw/f51538d5378986618cc0673dfe42958a1b5da407/clean.py
@burritosoftware
burritosoftware / clean.py
Created September 25, 2021 18:28
Cleaning Beat Saber dumps
import os
import shutil
for version in os.listdir('Beat Saber Versions'):
depotfiles = 'Beat Saber Versions/' + version + '/.DepotDownloader'
if os.path.exists(depotfiles):
shutil.rmtree(depotfiles)
print(version + ' cleaned')
@burritosoftware
burritosoftware / steamworkshopdl.user.js
Created June 15, 2022 06:57
Steam Workshop Download Button (soon to be used with my steamwsauto program)
// ==UserScript==
// @name Steam Workshop Download Button
// @author Burrito (forked)
// @description Adds a button to the Steam Workshop pages that lets you open steamwsauto to begin downloading. Also provides fixes for the Subscribe button to fix patches with the Download button.
// @include *steamcommunity.com/sharedfiles/filedetails/?id=*
// @grant GM_addStyle
// @version 1.0.0
// ==/UserScript==
var patt=new RegExp("[0-9]{2,15}");
@burritosoftware
burritosoftware / pleadbetter.css
Last active October 21, 2023 17:08
revert your pleading face and tears emojis back to their cuter counterparts (to install: use https://openasar.dev and throw this into the theming tab) (oh this also doesn't work on the emoji picker or autocomplete, that may probably require some additional css or a script)
img[data-name=":pleading_face:"] {
content: url(https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f97a.svg);
}
img[data-name=":face_holding_back_tears:"] {
content: url(https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f979.svg);
}
@burritosoftware
burritosoftware / vmware-fedora.md
Last active February 23, 2024 22:16
How to actually install VMware Workstation on Fedora

How to actually install VMware Workstation on Fedora

also known as vmware: fix ur crap


  1. Download Workstation Pro from VMware
  2. chmod +x the bundle file, then sudo sh [vmware].bundle
  3. Follow this KB article to install dependencies (notably, you want to get kernel-devel as this contains the required headers, this is the only thing I had to install)
  4. Follow the first impatient method here to compile and install the required kernel modules that VMware's installer will fail to do
  5. Sign the kernel modules if you have Secure Boot enabled by following this KB article. Notably, you need to change where Step 2 is looking for the kernel scripts by changing it to:
sudo /usr/src/kernels/`uname -r`/scripts/sign-file sha256 ./MOK.priv ./MOK.der `modinfo -n vmmon`