start redoing website
This commit is contained in:
parent
0e90607b69
commit
8ebd27cd69
@ -1,24 +0,0 @@
|
|||||||
Other than noted exceptions, this is free and unencumbered data
|
|
||||||
released into the public domain.
|
|
||||||
|
|
||||||
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
||||||
distribute this data, either in source code form or as a compiled
|
|
||||||
binary, for any purpose, commercial or non-commercial, and by any
|
|
||||||
means.
|
|
||||||
|
|
||||||
In jurisdictions that recognize copyright laws, the author or authors
|
|
||||||
of this data dedicate any and all copyright interest in the data to the
|
|
||||||
public domain. We make this dedication for the benefit of the public at
|
|
||||||
large and to the detriment of our heirs and successors. We intend this
|
|
||||||
dedication to be an overt act of relinquishment in perpetuity of all
|
|
||||||
present and future rights to this data under copyright law.
|
|
||||||
|
|
||||||
THE DATA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
||||||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
||||||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA OR THE USE OR
|
|
||||||
OTHER DEALINGS IN THE DATA.
|
|
||||||
|
|
||||||
For more information, please refer to <http://unlicense.org/>
|
|
@ -1,32 +0,0 @@
|
|||||||
<H2 ID="extensions">Browser extensions I use</H2>
|
|
||||||
<H4>updated 2022-08-30</H4>
|
|
||||||
<P>
|
|
||||||
These are browser extensions I usually install and use.
|
|
||||||
These are Mozilla Firefox extensions that work in the latest versions of Mozilla Firefox.
|
|
||||||
If you use Google Chrome, <A HREF="/shitlist#alphabet">please stop</A>.
|
|
||||||
</P>
|
|
||||||
<UL>
|
|
||||||
<LI>Containerization<UL>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/contain-amazon/">Amazon Container</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/facebook-container/">Facebook Container</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/google-container/">Google Container</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/contain-reddit/">Reddit Container</A></LI>
|
|
||||||
</UL></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/clearurls/">ClearURLs</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/google-analytics-blocker/">Google Analytics Blocker</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/image-search-options/">Image Search Options</A></LI>
|
|
||||||
<LI><A HREF="https://noscript.net/">NoScript</A></LI>
|
|
||||||
<LI><A HREF="https://shinigami-eyes.github.io/">Shinigami Eyes</A><UL>
|
|
||||||
<LI>
|
|
||||||
A frequently questioned item on this list, but fairly useful.
|
|
||||||
It's nice to be able to query a search engine and have all the questionable sites highlighted in red.
|
|
||||||
</LI></UL></LI>
|
|
||||||
<LI><A HREF="https://github.com/gorhill/uBlock">uBlock Origin</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/uaswitcher/">User-Agent Switcher</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/violentmonkey/">Violentmonkey</A></LI>
|
|
||||||
<LI><A HREF="https://addons.mozilla.org/en-US/firefox/addon/wayback-machine_new/">Wayback Machine</A></LI>
|
|
||||||
</UL>
|
|
||||||
<H5>Other Art</H5>
|
|
||||||
<UL>
|
|
||||||
<LI><A HREF="https://tebibyte.media/~emma/firefox#extensions">Emma Tebibyte's recommended Firefox extensions</A> (sourced for entries on this list)</LI>
|
|
||||||
</UL>
|
|
575
homepage/blog → homepage/homepage
Executable file → Normal file
575
homepage/blog → homepage/homepage
Executable file → Normal file
File diff suppressed because it is too large
Load Diff
@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
printf "what, are you crazy? you're gonna get us all killed!\n" >&2
|
|
@ -1,26 +0,0 @@
|
|||||||
#!/bin/sh -x
|
|
||||||
set -e
|
|
||||||
|
|
||||||
if ! command -v curl >/dev/null 2>&1; then
|
|
||||||
printf "This script depends on curl.\n"
|
|
||||||
exit 64 # sysexits(3) EX_USAGE
|
|
||||||
fi
|
|
||||||
|
|
||||||
ZELDA="https://archive.org/download/cirno_actually_plays_zelda_in_terminal/zelda.wav"
|
|
||||||
CURL="curl -Ls"
|
|
||||||
|
|
||||||
if command -v aplay >/dev/null 2>&1; # ALSA
|
|
||||||
then $CURL "$ZELDA" | aplay
|
|
||||||
|
|
||||||
elif ls /dev/dsp >/dev/null 2>&1; # OSS
|
|
||||||
then curl -L "$ZELDA" >/dev/dsp
|
|
||||||
|
|
||||||
elif command -v audioplay >/dev/null 2>&1; # NetBSD audio(4)
|
|
||||||
then $CURL "$ZELDA" | audioplay -f -e ulinear -P 16 -s 48000
|
|
||||||
|
|
||||||
else
|
|
||||||
printf "Unknown sound device. Sorry!\n"
|
|
||||||
exit 70 # sysexits(3) EX_SOFTWARE
|
|
||||||
fi
|
|
||||||
|
|
||||||
exit 0
|
|
Loading…
Reference in New Issue
Block a user