This file has been truncated, but you can view the full file.
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
| <?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 |
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
| /* | |
| 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 | |
| */ |
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
| { | |
| "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", |
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 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) |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>DOGGO!</title> | |
| <style> | |
| body{ | |
| overflow: clip; | |
| } | |
| #doggo{ | |
| position: absolute; |
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
| <!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% { |