Skip to content

Instantly share code, notes, and snippets.

@pikapower9080
pikapower9080 / feed.rss
Last active October 13, 2025 00:38
This American Life Archive - RSS
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="https://raw.githubusercontent.com/awkspace/this-american-scraper/master/feed.xml" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<title>This American Life</title>
<link>https://www.thisamericanlife.org</link>
<description>Each week we choose a theme. Then anything can happen. This American Life is true stories that unfold like little movies for radio. Personal stories with funny moments, big feelings, and surprising plot twists. Newsy stories that try to capture what it’s like to be alive right now. It’s the most popular weekly podcast in the world, and winner of the first ever Pulitzer Prize for a radio show or podcast. Hosted by Ira Glass and produced in collaboration with WBEZ Chicago.</description>
<language>en</language>
<copyright>Copyright 1995-2025 This American Life</copyright>
<itunes:image href="https://thisamericanlife.org/sites/all/themes/thislife/img/tal-logo-3000x3000.png"/>
<itunes:category text="Society
@pikapower9080
pikapower9080 / index.js
Created January 18, 2023 01:43
Undertale Randomizer (MAC)
/*
Note: this node.js script will only work on mac with the steam version of the game, sorry about that.
MAKE A BACKUP BEFORE RUNNING
To make a backup: Copy the files in your undertale resources folder to a new folder somewhere safe
To find your resources folder:
- Open Finder
- Press Command + G
- Paste ~/Library/Application Support/Steam/steamapps/common/Undertale/UNDERTALE.app/Contents/Resources
*/
@pikapower9080
pikapower9080 / game.json
Created August 27, 2022 19:09
Text adventure engine example story
{
"comment": "This is an example story! Feel free to use this as your base!",
"meta": {
"title": "Space Vacation",
"author": "pikapower9080",
"description": "An example story"
},
"options": {
"hasEndingItem": true,
"endingItemId": "flashlight",
@pikapower9080
pikapower9080 / inspect.js
Created May 26, 2022 12:30
Javascript Bookmarklets
const script = document.createElement("script")
script.type = "module"
script.src = "https://cdn.jsdelivr.net/gh/vanillawc/wc-monaco-editor@1/index.js"
document.head.appendChild(script)
const mainDiv = document.createElement("div")
mainDiv.id = "inspect-main"
const textarea = document.createElement("wc-monaco-editor")
textarea.setAttribute("language", "html")
textarea.setAttribute("src", `data:text/plain,${encodeURIComponent(document.documentElement.innerHTML)}`)
document.body.appendChild(mainDiv)
@pikapower9080
pikapower9080 / doggo.html
Last active April 21, 2022 13:23
A cute picture of a dog, another html-sandbox example.
<!DOCTYPE html>
<html>
<head>
<title>DOGGO!</title>
<style>
body{
overflow: clip;
}
#doggo{
position: absolute;
@pikapower9080
pikapower9080 / hover.html
Last active April 21, 2022 12:38
An example html file for html-sandbox
<!DOCTYPE html>
<!-- This is an example html file for html-sandbox -->
<html>
<head>
<title>CSS Hover Effect</title>
<style>
/* Animation from animista */
@import url("https://fonts.googleapis.com/css?family=Merriweather:400,400i,700");
@keyframes text-pop-up-top {
0% {