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
// Arrows and WASD example | |
void setup() { | |
} | |
void draw() { | |
} |
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
// | |
// Options for pcb-gcode.ulp. | |
// Often used options are at the top of the file. | |
// Copied to gcode-defaults.h by the setup program. | |
// | |
// author=Mario Lukas | |
// description=iModela Profile | |
// | |
int FILENAMES_8_CHARACTERS = NO; |
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
[ notes ] | |
- installing tightvnc | |
sudo apt-get install tightvncserver (and vnc viewer on client) | |
- configuring raspberry pi hostname | |
raspberry pi name: | |
sudo nano /etc/dhcp/dhclient.conf | |
hostname ckpi |
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
461 npm install -g yo | |
462 sudo npm install -g yo | |
463 npm install generator-express | |
464 ls | |
465 yo express | |
466 sudo bower install & sudo npm install | |
467 mngahgaslk;vadsoils | |
468 grunt | |
469 ls | |
470 ls |
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
Process: Modul8 [464] | |
Path: /Applications/Modul8/Modul8.app/Contents/MacOS/Modul8 | |
Identifier: com.GarageCUBE.modul8_25 | |
Version: 2.8.0 (2.8 build 2106) | |
Code Type: X86 (Native) | |
Parent Process: launchd [177] | |
Responsible: Modul8 [464] | |
User ID: 502 | |
Date/Time: 2014-06-29 15:10:47.340 -0400 |
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
brew install https://raw.github.com/eugeneoden/homebrew/eca9de1/Library/Formula/sshpass.rb |
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
- generated db from source | |
- custom tools to reverse models into DB tables | |
- original source provided was not the same as on bluemonkeys | |
- additional cms pages (Help, Campaign and Admin), code and server management was needed added to match it | |
- domain Switches and additional server management (dev-ops) | |
- email server setups and security | |
- custom email verifications from server | |
- automatic facebook verification for soccial accounts | |
- custom admin accounts | |
- new QR code functionality and rewrite for 3rd party apps |
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
var net = require('net'); | |
var http = require('http'); | |
var request = require('request'); | |
// feed url (NYC coords) | |
var feedUrl = 'http://clients.rtorres.me:3000/?lat=40.6700&lon=-73.9400'; | |
// feed url (SF coords) | |
//var feedUrl = 'http://clients.rtorres.me:3000/?lat=37.7833&lon=-122.4167'; |
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
[ Added ] | |
- Generated DB dump and tools from source | |
- New QR code functionality for 3rd party apps | |
- Domain Switches and additional server management | |
- Email server setups and security | |
- Server dev-ops and mangement | |
- Responsive front-end, requested on demand | |
- Mapbox integration | |
- Added admin page and additional views (they were not in the zipped code) | |
- Updated CMS pages |
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
public function add() { | |
Configure::write('debug', 2); | |
try { | |
if (!$this->checkKey()) { | |
throw new Exception('Empty key', 10016); | |
} |