Skip to content

Instantly share code, notes, and snippets.

View WingofaGriffin's full-sized avatar
🏳️‍🌈

Griffin WingofaGriffin

🏳️‍🌈
View GitHub Profile
@WingofaGriffin
WingofaGriffin / foss_donations.md
Last active February 12, 2024 16:58
Open Source Donation List
@WingofaGriffin
WingofaGriffin / README.md
Last active June 1, 2023 02:59
Smash Bros Mods on Steam Deck

Smash Bros Mods on Steam Deck

This is a quick guide on how to install Smash Bros Mods on deck. This is for those of you who are new to Linux, or just need some help with Steam. This guide will only support Smash Remix and Project+, but should be relatively transferable to other mods.

Smash Remix (Smash N64)

To install Smash Remix you will first need a vanilla copy of the NTSC version of Super Smash Bros. N64. I cannot tell you where to find this.

  1. Download the latest patch. You can find it here. The file should be titled smashremix<version>.zip. Unzip it.
@WingofaGriffin
WingofaGriffin / media-output.js
Last active June 24, 2021 16:58
Revamp of "Start Media Download" API reference to handle media files
const fetch = require("node-fetch");
const fs = require("fs");
const url = process.env.DOLBYIO_OUTPUT_URL;
const options = {
method: "GET",
headers: {
Accept: "application/octet-stream",
"x-api-key": process.env.DOLBYIO_API_KEY,
},
@WingofaGriffin
WingofaGriffin / amazonreviewscraper.js
Last active August 13, 2019 21:10
An Apify scraper to scrape amazon reviews. Adapted from Scrapehero https://gist.github.com/scrapehero/cefaf014076b953f865a63ad453d507b
// Link selector: li.a-last a
async function pageFunction(context) {
const { request, log, jQuery } = context;
var $ = context.jQuery;
var result = [];
$("div.review").each( function() {
result.push({
@WingofaGriffin
WingofaGriffin / pridescraper.js
Last active March 5, 2020 00:30
A apify task meant to scrape https://www.nighttours.com/gaypride/ for the event data
async function pageFunction(context) {
const { request, log, jQuery } = context;
var $ = context.jQuery;
var result = [];
$.fn.ignore = function(sel){
return this.clone().find(sel||">*").remove().end();
};