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
[["original"], | |
["https://pikidiary.lol/uploads/emotes/global/angel.png"], | |
["https://pikidiary.lol/uploads/emotes/global/angry.png"], | |
["https://pikidiary.lol/uploads/emotes/global/astonish.png"], | |
["https://pikidiary.lol/uploads/emotes/global/awkward.png"], | |
["https://pikidiary.lol/uploads/emotes/global/blink.png"], | |
["https://pikidiary.lol/uploads/emotes/global/complacent.png"], | |
["https://pikidiary.lol/uploads/emotes/global/cool.png"], | |
["https://pikidiary.lol/uploads/emotes/global/cry.png"], | |
["https://pikidiary.lol/uploads/emotes/global/cute.png"], |
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
[["original"], | |
["https://pikidiary.lol/uploads/emotes/014731.gif"], | |
["https://pikidiary.lol/uploads/emotes/014731.gif"], | |
["https://pikidiary.lol/uploads/emotes/014731.gif"], | |
["https://pikidiary.lol/uploads/emotes/01653158.gif"], | |
["https://pikidiary.lol/uploads/emotes/0322614.gif"], | |
["https://pikidiary.lol/uploads/emotes/035640.gif"], | |
["https://pikidiary.lol/uploads/emotes/0389771.gif"], | |
["https://pikidiary.lol/uploads/emotes/04593992.gif"], | |
["https://pikidiary.lol/uploads/emotes/0494824.gif"], |
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
# @repeat-tech configuration.nix 11/21/23 | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
]; | |
# Boot |
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/bash | |
# Usage: ./neocities.sh USER:PASS FILENAME | |
login=$1 # This isn't really needed but eh. Why not. | |
list="rssList.txt" | |
rss="rss.xml" | |
lines=$(cat $list) | |
footer=""" | |
</channel> |
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
# onlyFilesFinder | |
# by subway menu AKA suspecting | |
# I am not testing this on dbree. You're on your own. | |
# OH YEAH BTW: Webarchive takes a long and concerning time to scrape the site, so give it a minute. | |
import requests | |
res = requests.get("https://web.archive.org/cdx/search/cdx?url=onlyfiles.io/p/&matchType=domain") | |
splitter = res.text.split("\n") |