This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 96775ccde72c4f53a87431073d6585671a1fd3e6 Mon Sep 17 00:00:00 2001 | |
From: Eric Park <[email protected]> | |
Date: Tue, 4 Mar 2025 19:57:48 -0500 | |
Subject: [PATCH 1/4] Import normal x86 code | |
This overwrites Quark support with the normal x86 (i386) version found | |
on the official XINU website: | |
https://www.cs.purdue.edu/homes/comer/downloads/Xinu_Book_And_Code/VirtualBox/Xinu-VirtualBox.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Marlin 3D Printer Firmware | |
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] | |
* | |
* Based on Sprinter and grbl. | |
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo -e "Script started at $(date)" | |
curl "https://github.com/ericswpark.keys" > ~/.ssh/authorized_keys | |
echo "The following keys were added:" | |
cat ~/.ssh/authorized_keys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:void%20function(){const%20a=new%20MouseEvent(%22mouseup%22),b=document.querySelector(%22%23topicContextMenu%22).shadowRoot.querySelector(%22d2l-button-icon%22);b.dispatchEvent(a),(a=%3Enew%20Promise(b=%3EsetTimeout(b,a)))(5e2).then(()=%3E{const%20a=document.querySelector(%22%23d2l_pageTitleActions_markAllRead%22);a.click()})}(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Persistent | |
#b:: | |
{ | |
; Open Quick Actions window | |
Send("{LWin Down}a{LWin Up}") | |
; The quick action window takes a while to initialize and allow keyboard navigation | |
; Without the sleep timer you may end up on the wrong screen (or disabling WiFi) | |
; If your computer is slower, increase this value a bit more | |
Sleep(600) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Script to back up Beat Saber files | |
# Why not use SideQuest? It doesn't handle permissions very well | |
# Better to always use vanilla adb | |
# This script assumes adb is available in your PATH | |
# What is backed up: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
VUETORRENT_REPO_NAME="VueTorrent/VueTorrent" | |
GITHUB_API_URL="https://api.github.com/repos" | |
GITHUB_URL="https://github.com" | |
GITHUB_VUETORRENT_API_URL="$GITHUB_API_URL/$VUETORRENT_REPO_NAME" | |
GITHUB_VUETORRENT_URL="$GITHUB_URL/$VUETORRENT_REPO_NAME" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.example.my_script</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/Users/ericswpark/fix_mosh_server.sh</string> | |
</array> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
import subprocess | |
import argparse | |
# Set the path to the directory containing the movies | |
directory = 'Movies/' | |
# Name to append at the end of optimized files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Switch to extras directory | |
cd /boot/extras | |
# Download all packages required | |
wget https://slack.conraid.net/repository/slackware64-current/mosh/mosh-1.4.0-x86_64-4cf.txz | |
https://slack.conraid.net/repository/slackware64-current/protobuf/protobuf-21.12-x86_64-1cf.txz | |
# Install all downloaded packages | |
installpkg mosh-1.4.0-x86_64-4cf.txz | |
installpkg protobuf-21.12-x86_64-1cf.txz |
NewerOlder