Skip to content

Instantly share code, notes, and snippets.

View neil-morrison44's full-sized avatar

Neil Morrison neil-morrison44

View GitHub Profile
[
{
"repo": "https://api.github.com/repos/spiritualized1997/openFPGA-GBA/releases"
},
{
"repo": "https://api.github.com/repos/spiritualized1997/openFPGA-GB-GBC/releases",
"name": "Spiritualized.GBC"
},
{
"repo": "https://api.github.com/repos/spacemen3/PDP-1/releases"
@neil-morrison44
neil-morrison44 / update_unstable_playstation.sh
Last active December 7, 2021 01:45
Pulls down the latest unstable MiSTer PSX core & puts it in the right place
#!/bin/bash
VERSIONS_JSON=$(curl "https://api.github.com/repos/MiSTer-unstable-nightlies/PlayStation_MiSTer/releases?tag=unstable-builds" \
--insecure | jq '[.[0].assets[] | select(.name|endswith(".rbf")) | {name: .name, url: .browser_download_url} ]')
echo $VERSIONS_JSON | jq
echo "Could allow for selection, but instead I'll just download the latest one..."
LATEST_NAME=$(echo $VERSIONS_JSON | jq -r 'last.name')

Keybase proof

I hereby claim:

  • I am neil-morrison44 on github.
  • I am neil44 (https://keybase.io/neil44) on keybase.
  • I have a public key whose fingerprint is 624E 3734 0655 DC17 001B D6FB 8D05 2EC1 60DC B4D3

To claim this, I am signing this object:

@neil-morrison44
neil-morrison44 / FullScreenize
Created October 11, 2012 17:52
Bookmarklet for changing a website into a full screen web app for iOS
javascript:document.write('<meta%20name="apple-mobile-web-app-capable"%20content="yes"%20/>')