How to install NVM with 1 line of code
This one line will install the shell script found below created by @creationix
Ideas, findings, thoughts and discussion focused on the technology and how to make things work.
This one line will install the shell script found below created by @creationix
Whenever I start working on a new project, I generally default to Github [http://github.com] and start researching which libraries or frameworks can help me quickly complete...
String Extension import Foundation extension String { var length: Int { get { return countElements(self) } } func contains(s: String) -> Bool { return self.rangeOfString(s) ? true : false } func replace(...
Rails is all about patterns and when you're creating models, it's important to set pattern-based rules before you publish to your database. Below are...
I've been doing some research on creating audio apps for iOS and it's taken me down into the complex world of audio frameworks. Apparently...
I wanted to download 100 files but I did not want to do it manually so I created a simple script instead. var files = [ "http://www.patatap....
Some of these design resources are free, some of them are not but it should be enough of a starting point to help you with your project. UIX...
This is a generic AJAX class that can be reused throughout your app. I normally place this within a single file like com.chrisjmendez.AjaxRequest.js, load the...
Dev Environment Install SailsJS npm install sailsjs Install Chrome Postman [https://chrome.google.com/webstore/detail/postman-rest-client-short/mkhojklkhkdaghjjfdnphfphiaiohkef] Content-Type application/json Quickly get started Create a new sails...
Here's how to get Raspberry Pi and Arduino to talk to each other. General Purpose Input Output (GPIO) Control the GPIO pins on Rasberry PI using...
Deprecated Openshift v2.0 has now reached End of Life [https://blog.openshift.com/migrate-to-v3-v2-eol/] and will be replaced by v3.0. -------------------------------------------------------------------------------- You will need a few...
Writing an SD card from OS X Step 1 You can figure out the name of your blank SD Card by first inserting the disk and running this...
This demo shows you how to use a ArcGIS map and ESRI data using jQuery. At this point, it's probably best to learn the DOJO framework...
Tools * NodeJS + NPM [http://nodejs.org/] * Apple Developer Account [http://developer.apple.com] * xCode [https://developer.apple.com/xcode/] You will need a few raw materials to make...
Scripts used to record whenever users click an external link. New Google Analytics gtag Tracker <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3....
Common @ApacheCordova commands Build a project /path/to/my_new_cordova_project/cordova/debug Launch emulator /path/to/my_new_cordova_project/cordova/emulate Start Logging /path/to/...
I have a few ExpressJS applications that use Forever [https://www.npmjs.com/package/forever] to keep things always moving. The scripts below are what I use invoke...
Boilerplate * Boilerplate Code [http://javierarce.github.com/epub-boilerplate/] * CSS Starter Kit [https://github.com/mattharrison/epub-css-starter-kit] * UUID Generator [http://www.famkruithof.net/uuid/uuidgen] Metadata * BISAC Subject Headings...
Adobe Media Server 5.0 offers media publishers some new ways to deliver on-demand video and music to iOS devices through Apple's HTTP Live Streaming. This...
There are a lot of ways to distribute music and video over the web, and it's often difficult to figure out which features (and service plans)...
Install Forever package Download and install forever package/ npm install --save forever Create two files Create a start file. nano /app_dir/start.sh Create a stop file....
This is the simplest NodeJS server you can create. var port = 8080; var server = "localhost" var http = require('http').createServer( onServerCreatedHandler ); http.listen( port,...