| Models | Examples |
|---|---|
| Display ads | Yahoo! |
| Search ads |
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
| # This script continues the work of gdc-downloader.py and actually combines the video and audio | |
| # into a single video file. The underlay.png file specifies the dimensions of the video. | |
| # Personally, I use an all-black 1024x768 rectangle for optimal iPad viewing. | |
| # As with gdc-downloader.py, code quality is crappy and quickly assembled to work for my | |
| # nefarious purposes. | |
| # Usage is as follows: | |
| # | |
| # gdc-encoder.py [video name] [video path] [output name] [GDC name] |
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
| MOVED: https://github.com/matb33/meteor-ec2-install |
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 casperjs | |
| # | |
| # Example: ./github-users.coffee Greenville | |
| # | |
| {Casper} = require 'casper' | |
| class GitHubUserScraper extends Casper | |
| USER_AGENT: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11' |
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
| // On the client AND the server | |
| Rooms = new Meteor.Collection('rooms'); | |
| Messages = new Meteor.Collection('messages'); | |
| // On the server | |
| Meteor.publish('chatRoom', function(roomId) { | |
| return Messages.find({ roomId: roomId }); | |
| }); | |
| // On the client |
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
| sudo apt-get install liblua5.1-dev | |
| sudo mkdir /usr/include/lua5.1/include/ | |
| sudo cp /usr/include/lua5.1/* /usr/include/lua5.1/include/ | |
| sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.1.so /usr/local/lib/liblua.so | |
| hg clone https://code.google.com/p/vim/ | |
| cd vim | |
| ./configure --with-features=huge \ | |
| --enable-perlinterp \ | |
| --enable-rubyinterp \ | |
| --enable-pythoninterp=yes \ |
This is my personal list of Javascript Emulator
- [Apple II+] (http://porkrind.org/a2/)
- [Apple II js] (http://www.scullinsteel.com/apple2/)
