This file contains hidden or 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
// | |
// Because you're not going to put yet another asset in your bundle, are you? | |
// | |
// Created by Ben Torkington on 1/08/23. | |
// | |
import CoreImage | |
class FlagFilter { | |
let displayName: String |
This file contains hidden or 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/sh | |
# How to merge the sf2ua romset for use with the SF2 rewrite | |
# Basically, you need to merge the ROMs together the same was as they're mapped on the real | |
# hardware. | |
# First, get the interleave tool from https://www.romhacking.net/forum/index.php?topic=26264.0 | |
interleave int1 1 sf2u.30a sf2u.37a | |
interleave int2 1 sf2u.31a sf2u.38a |
This file contains hidden or 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
const axios = require("axios"); | |
const cheerio = require("cheerio"); | |
const crypto = require('crypto'); | |
const fs = require('fs-extra'); | |
const { TwitterClient } = require('twitter-api-client'); | |
// On launch, load the list of locations that have already been tweeted | |
// This is a JSON object containting hashes of the names and addresses of locations. | |
let locations = fs.readJSONSync('./locations.json'); |
This file contains hidden or 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/perl | |
use LWP::UserAgent; | |
use XML::LibXML; | |
use HTTP::Request; | |
use DateTime; | |
use Date::Parse; | |
use DateTime::Format::Strptime; | |
my $startDate = DateTime->new( |