Skip to content

Instantly share code, notes, and snippets.

View audreyt's full-sized avatar

唐鳳 audreyt

View GitHub Profile

May 26th 2016, Madrid, Audrey Tang, Baki Youssoufou, Richard Bartlett, Natalia Lombardo, Pablo Soto

The highlight of my recent trip to Europe was this conversation in the photograph above (also captured in this 360° video, and this audio recording).

The people in this photograph are participants from the Tunisian revolution in 2010, the Spanish 15M movement and the New Zealand Occupy movement in 2011, the 2014 Sunflower Movement from Taiwan, and Nuit Debout, the horizontal protest movement currently underway in France.

The recording is 3 hours long, so I've loosely transcribed it and cut it down into a couple of chapters:

@audreyt
audreyt / english.js
Last active October 23, 2021 14:09 — forked from colinmegill/english.js
Polis strings
var s = {};
s.agree = "Agree";
s.disagree = "Disagree";
s.pass = "Pass / Unsure";
s.x_wrote = "wrote:";
s.x_tweeted = "tweeted:";
s.group_123 = "Group:";
@audreyt
audreyt / gist:7723325
Last active October 23, 2021 14:10 — forked from ETBlue/gist:7723307
.wrap.clearfix
- fs=require('fs');
- var glob=function(folder, regexp){
- var result=[];
- var files=fs.readdirSync(folder); for(var i=0;i<files.length;i++){
- var target_file = folder+'/'+files[i];
- var target_path = folder+'.html';
- var target_topic = target_path.slice(target_path.indexOf('/'),target_path.lastIndexOf('/'));
- var target_author = folder.slice(folder.lastIndexOf('/'));
- var stat = fs.statSync(target_file);
/**
* Conway's Game of Life, in LiveScript
* ====================================
*
* Conway's Game of Life is a cellular automaton, published by John H Conway
* in 1970, fulfilling the design principles but greatly simplifying the
* research of von Neumann, into a hypothetical machine that could build
* copies of itself. It is a zero-player game, meaning there is no input, and
* the game will progress on its own with a 'seed', or configuration, to
* begin with.
#!/usr/bin/env node
var threadCount = 4;
var threadPool = require('webworker-threads').createPool(threadCount);
threadPool.load('gistfile2.js');
threadPool.all.emit('init');
threadPool.on('message', function threadMessage(data) {
console.log(this.id + ': ' + data);
@audreyt
audreyt / pw.ls
Created November 20, 2012 20:56 — forked from gugod/pw.ls
#!/usr/bin/env lsc -d
require! fs
dictwords = lines fs.read-file-sync \/usr/share/dict/words \utf8
pick = -> it[ floor Math.random! * * ]
pwgen = -> [ pick dictwords for til 4 ].join ''
console.log pwgen!
@audreyt
audreyt / fib.js
Created November 9, 2012 19:02 — forked from ry/fib.js
a proper fibonacci server in node. it will light up all your cores.
var http = require('http')
var fork = require('child_process').fork;
function fib(n) {
if (n < 2) {
return 1;
} else {
return fib(n - 2) + fib(n - 1);
}
}
@audreyt
audreyt / gist:834671
Created February 19, 2011 00:31 — forked from fujiwara/gist:732822
mt.psgi (for both Melody and MT5)
#!/usr/bin/env perl
use strict;
use warnings;
use File::Basename;
use Plack::Builder;
use Plack::App::CGIBin;
my $basedir = dirname(__FILE__);
(源: http://gist.github.com/479846)
(譯: translate.google.com)
在這個日子正是10年前,喬恩Orwant咖啡杯扔在牆上在會議中。
維基百科方志公佈的Perl 6正就7月19日十年前...而投擲水杯18日,可以說是火花誕生的Perl 6。
為什麼他扔杯子?"拉里牆上的自己的解釋"
<http://www.spidereyeballs.com/os5/set1/small_os5_r06_9705.html>它包括足夠的細節: