Skip to content

Instantly share code, notes, and snippets.

View rawsh's full-sized avatar

Robert Washbourne rawsh

View GitHub Profile
SELLING Naughty Flygon 2-31-24-21-27-17 ev trained lv 53 PM me offers
SELLING Neutral Gallade 27-31-18-31-30-19 ev trained PM offers
"use strict";
// ==UserScript==
// @name Vertix.io Aimbotaaaa
// @description Aim at the closest player by pressing Shift.
// @match http://vertix.io
// @match http://www.vertix.io
// @version 1.0
//
// @namespace https://greasyfork.org/users/119655
@rawsh
rawsh / readme.md
Last active April 5, 2024 00:56
Emulating BotW on PC with CEMU and Wii USB Helper
  • Download wii usb helper https://github.com/FailedShack/USBHelperInstaller/releases
  • Create emulation and games directory (Documents/CEMU/Games)
  • Download CEMU http://cemu.info/ and extract to emulation directory (Documents/CEMU/cemu)
  • Download CEMUhook and extract to the same directory https://cemuhook.sshnuke.net/
  • Launch wii usb helper and use vault.titlekeys.ovh as the title key site (database)
  • Search Breath Of the Wild and select Add, Add Update, and Add DLC then click download on the bottom left
  • Download the Cache from here and move it to the folder cemu/shaderCache/transferable With Vulkan backend you don't need a transferable shader cache.
  • Launch the cemu executable. Click input and Xinput then select the controller and map buttons. Set CPU -> triple core recompiler in the top bar settings.
  • Click prepare game for emulation in Wii USB Helper then "Play this game on PC" (you can also add
Running tests... (may take 2-5 minutes)
CPU: AMD Ryzen 7 1800X Eight-Core Processor
Measurement result (interval 5 seconds):
TSC-diff: 0x00000004a5932228
TSC-freq: 0x00000000edf8d06e
QPC-diff: 0x00000000012964c8
QPC-freq: 0x00000000003b7e34
TSC/QPC: 0x0000000000000400
@rawsh
rawsh / package.json
Created March 10, 2018 18:41
Mailgun subscribers for a static website.
{
"name": "nodelist",
"version": "1.0.0",
"description": "Mailing lists for DevPy.me",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Robert Washbourne",
"license": "ISC",
background no
use_xft yes
xftfont Fira Sans:size=8
xftalpha 1
update_interval 1
total_run_times 0
own_window yes
own_window_title conky
own_window_type desktop
own_window_transparent yes
@rawsh
rawsh / settings.md
Last active February 17, 2018 03:53
ATOM STYLES

FONT: Fira Sans

font size: 11px

UI THEME: One Dark

settings:

@rawsh
rawsh / styles.less
Created February 17, 2018 03:03
atom
.tree-view-resizer, atom-text-editor::shadow {
::-webkit-scrollbar {
background-color: #262626;
&-track {}
&-thumb {
background-color: #404040;
&:window-inactive {
@rawsh
rawsh / sortgrades.js
Last active December 17, 2017 20:33
Sort grades numerically WebAssign (run in js console)
var list = document.querySelectorAll(".scoreBox > p > strong");
var regExp = /\(([^)]+)\)/;
var sgrades = [];
function insert(element, array) {
array.push(element);
array.sort(function(a, b) {
return a - b;
});
return array;