This file contains hidden or 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
| #!/usr/bin/env python | |
| import wx, time, webbrowser | |
| import random | |
| import urllib2 | |
| import time | |
| from threading import Thread | |
| #https://readertray.googlecode.com/svn/trunk/lib/tools.py | |
| from tools import file | |
This file contains hidden or 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
| Summary of the links shared here: | |
| http://blip.tv/clojure/michael-fogus-the-macronomicon-597023... | |
| http://blog.fogus.me/2011/11/15/the-macronomicon-slides/ | |
| http://boingboing.net/2011/12/28/linguistics-turing-complete... | |
| http://businessofsoftware.org/2010/06/don-norman-at-business... | |
| http://channel9.msdn.com/Events/GoingNative/GoingNative-2012... | |
| http://channel9.msdn.com/Shows/Going+Deep/Expert-to-Expert-R... | |
| http://en.wikipedia.org/wiki/Leonard_Susskind | |
| http://en.wikipedia.org/wiki/Sketchpad | |
| http://en.wikipedia.org/wiki/The_Mother_of_All_Demos |
This file contains hidden or 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
| from java.io import File | |
| from java.nio.file import Files | |
| from java.nio.file import FileSystems | |
| from java.nio.file.StandardWatchEventKinds import * | |
| from java.nio.file.StandardCopyOption import * | |
| from java.nio.file import Paths | |
| source = '/source/file/path' | |
| target = '/dest/file/path' |
This file contains hidden or 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 java.awt.Robot; | |
| import java.awt.event.KeyEvent; | |
| public class TestRobot { | |
| public static void main(String args[]) throws Exception { | |
| Robot r = new Robot(); | |
| int sleep = 500; | |
| int i = 0; | |
| for(;;) { | |
| r.keyPress(KeyEvent.VK_SPACE); |
NewerOlder