(with apologies to Yakko Warner)
United States, Canada, Mexico, Panama,
Haiti, Jamaica, Peru,
Republic Dominican isn't Dominica,
Cuba, El Salvador, too.
# don't @ me | |
import collections | |
import random | |
import re | |
import string | |
LENGTH = 5 | |
class Datum: |
LESSON 1 | |
Hints differ in case and/or spacing only | |
LESSON 2 | |
Hints differ in case and/or spacing only | |
LESSON 3 | |
Hints differ: | |
- Suction-boots for force floors. Fire boots for fire. Flippers for water. Skates for ice. | |
- MAGNET FORFORCE FLOORS.HEAT SHIELDFOR FIRE.WATER SHIELDFOR WATER.CLEATS FOR ICE. |
title = Star\ Anise\ Chronicles:\ Escape\ from\ the\ Chamber\ of\ Despair | |
# Arch Linux | |
INFORM7_BIN = /usr/libexec/gnome-inform7 | |
# Ubuntu x64 | |
#INFORM7_BIN = /usr/lib/x86_64-linux-gnu/gnome-inform7 | |
all: glulx | |
project = $(title).inform |
# this could be made to work with surprisingly little effort. | |
# no, i won't tell you how. please don't do it | |
class SnarlingBeastEvent(EncounterEvent): | |
language = 'english' | |
title = "a snarling beast" | |
text = "a snarling beast leaps out of the underbrush." | |
language = 'pig latin' | |
title = "anway arlingsnay eastbay" | |
text = "anway arlingsnay eastbay eapslay outway ofway ethay underbrushway." |
00000000: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000010: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000020: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000030: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000040: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000050: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000060: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000070: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000080: 8888 8888 8888 8888 8888 8888 8888 8888 ................ | |
00000090: 8888 8888 8888 8888 8888 8888 8888 8888 ................ |
import wave | |
TARGET_RATE = 16384 | |
with wave.open('aowr2.wav') as w: | |
with wave.open('aowrcrush2.wav', 'wb') as wout: | |
nchannels, sample_width, framerate, nframes, _, _ = w.getparams() | |
wout.setparams(w.getparams()) | |
outdata = bytearray() | |
gbdata = bytearray() |
#include <iostream> | |
#include <string.h> | |
struct A { | |
int b; | |
}; | |
int main() { | |
{ | |
char blah[256]; |
local checkerboard | |
local shader | |
function love.load() | |
love.graphics.setDefaultFilter('nearest', 'nearest') | |
local imagedata = love.image.newImageData(8, 8) | |
imagedata:mapPixel(function(x, y, r, g, b, a) | |
if (x + y) % 2 == 1 then | |
return 192, 192, 192, 255 |
random.betavariate(2, 2) * 2 - 1 | |
0 | ########################################################################### | |
10 | ############################################################################### | |
20 | ##################################################################################### | |
30 | ############################################################################################# | |
40 | ################################################################################################### | |
50 | ############################################################################################## | |
60 | ##################################################################################### | |
70 | ############################################################################### | |
80 | ############################################################################ |