The original Sokoban DOS levels, along with the extra set, for PuzzleScript. Has new graphics using the Resurrect 64 Palette, along with levels sourced from the Sokoban Levels Source.
As noted by @murdats below, there are more URLs than just these 1440 ones, depending on the argument values | |
that are hashed (as the filenames below are MD5 hashes of a few arguments: red/blue pill color, HHMM time, etc.) | |
You can read details about the algorithm used to generate these URLs here: | |
https://news.ycombinator.com/item?id=28448335 | |
--- | |
00:00 https://thechoiceisyours.whatisthematrix.com/generated/v7/high/d43725991d28ffcab04aa716762cf6af.mp4 |
Data & Tools: | |
Many contributors. Thanks to all. | |
Contact: | |
[email protected] | |
IRC Channels: | |
#parlerparsers at https://webirc.hackint.org/ | |
#parlerparsers-video for video IDing | |
Let's say you have a video ID, like wfy02V209EwU
taken from this map
The link for the video kiBnNejo0JW0
is at https://video.parler.com/ki/Bn/kiBnNejo0JW0. Notice that the link is: https://video.parler.com/
followed by the first two characters of the video ID, then /
, then the next two characters, another /
, and the video ID.
But if you click on this, you will get an error.
This is because the Parler video servers are still running (as of January 12) but the Domain Name System (DNS) is not running.
#!/usr/bin/env python3 | |
import csv, codecs, urllib.request | |
print('Database generator by Void') | |
host = codecs.decode(b'aHR0cHM6Ly9ub3BheXN0YXRpb24uY29tL3Rzdg==', 'base64').decode('ascii') | |
content = { | |
"unknown" : "", | |
"games": "PS3_GAMES.tsv", |
https://blokas.io/patchbox-os/
sudo nano /boot/config.txt
enable_uart=1
dtoverlay=midi-uart0
using System; | |
using System.Collections.Generic; | |
using Godot; | |
namespace Haikuchatclient { | |
public static class PixelTools { | |
// Find out message height in pixels. | |
// ********************************** |
#!/bin/bash | |
CYAN="$(tput bold; tput setaf 6)" | |
RESET="$(tput sgr0)" | |
clear | |
if command -v python3 > /dev/null 2>&1; then | |
if [ $(python3 -c "print('ye')") = "ye" ]; then | |
clear |
#!/usr/bin/lua5.1 | |
--- Async/Await for Lua 5.1 | |
-- This script implements async/await functions for Lua, allowing tasks to | |
-- be queued and scheduled independently. | |
-- | |
-- This is just an example and has a bunch of issues, isn't tested, isn't | |
-- even actually used anywhere; I basically just got bored and had one of | |
-- those "what if?" type ideas 6 hours ago. | |
local co_create = coroutine.create |
⚠️ Note 2023-01-21
Some things have changed since I originally wrote this in 2016. I have updated a few minor details, and the advice is still broadly the same, but there are some new Cloudflare features you can (and should) take advantage of. In particular, pay attention to Trevor Stevens' comment here from 22 January 2022, and Matt Stenson's useful caching advice. In addition, Backblaze, with whom Cloudflare are a Bandwidth Alliance partner, have published their own guide detailing how to use Cloudflare's Web Workers to cache content from B2 private buckets. That is worth reading,