-
WiFiで呼吸する全てのリアル・マッド・ヘクティクに告ぐ‼5時と9時の間で紡がれるもう一つの神話こと情報社会のバーニング・マン #takawo杯 第2回開催します!インターネットがそう在るように、どうか遠く世界の果てまで響き渡りますように。皆様からの熱いご応募お待ちしております!
-
定時越えのシンデレラたちよ、サービス残業に今宵、終止符を! 道理の通らないこの時代、制御不能なのは俺とお前の関係性だけで十分だ!! 情報世界の千夜一夜物語こと #takawo杯 第2回開催中です!皆様からの熱いご応募お待ちしております!!
-
満員電車は誰もが互いに無関心で、いじくるスマホのバックライトが夜を照らして 「こんな言葉遊びでさえ届かないんだとしたら、何のために言葉交わしてるんだろ」って、送ろうとしたら圏外。今この全ての夜が戦場、 #takawo杯 第2回開催中です、皆様からのエモいご応募お待ちしております‼
-
IT駄洒落とは、言語のシニフィアンとシニフィエを組み換え、交配させ、標本化すること。それが正しいかどうかは全てお前と23世紀が判断しろ‼手応えの無い現実から遠い未来へと、再び放たれるゴールデンディスク、#takawo杯 第2回が開催中です!皆様からの熱いご応募お待ちしております‼
-
第2期IT駄洒落=群雄割拠時代来たる!!まっさらなバンドの初期衝動を閉じ込めたファーストから、満を持し成熟のセカンドをドロップする情報社会オブ・ザ・デッドこと #takawo杯 イズ・バッカゲン! 皆様からの熱いご応募お待ちしております!http://xn--takawo-nu4m.net/
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
#!/bin/bash | |
# do shell script "/Applications/Sikuli-IDE.app/sikuli-ide.sh -r /Users/nolim1t/Documents/randomscript.sikuli" | |
/Applications/Sikuli-IDE.app/sikuli-ide.sh -r /Users/nolim1t/Documents/somescript.sikuli |
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
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |
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
// | |
// how to use java.awt.Robot class in processing ... | |
// | |
import java.awt.*; | |
import java.awt.event.*; | |
Robot robot; | |
PFont pfont; | |
Point save_p; | |
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
/* | |
* Easing.pde - brings Robert Penner's easing functions into Processing | |
* (c) 2015 cocopon. | |
* | |
* See the following to learn more about these famous functions: | |
* http://www.robertpenner.com/easing/ | |
* | |
* License: | |
* http://www.robertpenner.com/easing_terms_of_use.html | |
*/ |
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
void setup_kinect(){ | |
context = new SimpleOpenNI(this); | |
if (context.isInit() == false) { | |
println("Can't Init SimpleOpenNI, maybe the camera is not connected."); | |
exit(); | |
return; | |
} |
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 processing.pdf.*; | |
import java.util.Calendar; | |
boolean savePDF = false; | |
void setup() { | |
size(500, 500); | |
colorMode(HSB, 360, 100, 100); | |
} |
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
var url = "https://spreadsheets.google.com/feeds/list/1qwbpwuHScQcujaMEg434eWPmpChMGBzaRQ9n39tYBjE/od6/public/values?alt=json"; | |
var dudes = []; | |
function setup() { | |
createCanvas(windowWidth, windowHeight); | |
// Request the data from openweathermap | |
loadJSON(url, gotSpreadsheet); | |
} | |
function draw() { | |
background(0); |
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
// by davey whyte aka @beesandbombs | |
void setup(){ | |
size(600,520,P3D); | |
colorMode(HSB,1); | |
noStroke(); | |
} | |
float R = 160, r = 55; | |
int N = 720; |
OlderNewer