- 100: This train has been cancelled because of a broken down train
- 101: This train has been cancelled because of a delay on a previous journey
- 102: This train has been cancelled because of a derailed train
- 104: This train has been cancelled because of a fire at a station
- 105: This train has been cancelled because of a fire at a station earlier
- 106: This train has been cancelled because of a landslip
- 107: This train has been cancelled because of a line-side fire
This file contains 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
line -> thing {% id %} | |
thing -> block {% id %} | |
| r_parens {% id %} | |
| b_parens {% id %} | |
n -> n4 {% id %} |
This file contains 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
class Binaryen < Formula | |
desc "Compiler infrastructure and toolchain library for WebAssembly, in C++" | |
homepage "https://github.com/WebAssembly/binaryen" | |
url "https://github.com/WebAssembly/binaryen/archive/version_26.tar.gz" | |
head "https://github.com/WebAssembly/binaryen.git" | |
version "26" | |
sha256 "e78ff7ea4dbffa0d53084a0bc1ec8ed43445b674a02c17af798f3c0df13d418d" | |
depends_on "cmake" => :build |
This file contains 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
class Wabt < Formula | |
desc "The WebAssembly Binary Toolkit" | |
homepage "https://github.com/WebAssembly/wabt" | |
head "https://github.com/WebAssembly/wabt.git" | |
#url "https://github.com/WebAssembly/wabt/archive/binary_0xc.tar.gz" | |
sha256 "0ee56305b232d2a07aebd18afd0861ba39941d137ebf2ce2d57395a1bcd82940" | |
depends_on "cmake" => :build | |
def install |
This file contains 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
# -*- coding: latin-1 -*- | |
"""Heap queue algorithm (a.k.a. priority queue). | |
Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for | |
all k, counting elements from 0. For the sake of comparison, | |
non-existing elements are considered to be infinite. The interesting | |
property of a heap is that a[0] is always its smallest element. | |
Usage: |
This file contains 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
server { | |
listen 80; | |
server_name cors.tjvr.org; | |
root /usr/share/nginx/html; | |
index index.html; | |
client_max_body_size 1m; | |
client_body_buffer_size 64k; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
import os | |
from mitmproxy.models import HTTPResponse, decoded | |
from mitmproxy.script import concurrent | |
from netlib.http import Headers | |
target = 'scratch.mit.edu' | |
target_cdn = 'cdn.scratch.mit.edu' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
?|..| imports standard library | |
--------------------------------------------------------- | |
% zero | |
?… import library named … | |
…$… define export named string … with value … | |
can't export digit as logical value |