Skip to content

Instantly share code, notes, and snippets.

@KrishManohar
KrishManohar / .cfm
Created July 28, 2015 17:07
Coldfusion Generate Random IP Address
<cfset ipAddress = RandRange(0, 255) & '.' & RandRange(0, 255) & '.' & RandRange(0, 255) & '.' & RandRange(0, 255) />
<cfoutput>
IP ADDRESS: #ipAddress#
</cfoutput>
@KrishManohar
KrishManohar / Installing Meteorite Permission
Created October 9, 2013 20:38
Installing Meteorite Permission
$ sudo -H npm install -g meteorite
@KrishManohar
KrishManohar / Install Meteorite
Last active December 25, 2015 03:09
Install Meteorite
$ npm install -g meteorite
@KrishManohar
KrishManohar / Installing Meteor
Created October 9, 2013 20:30
Installing Meteor
$ curl https://install.meteor.com | sh