Skip to content

Instantly share code, notes, and snippets.

View infolock's full-sized avatar
👨‍👩‍👦‍👦
nqdq

infolock infolock

👨‍👩‍👦‍👦
nqdq
View GitHub Profile
// Creating method from code found here: https://gist.github.com/bennadel/9751583#file-code-4-js
// Used with jsperf
var _charArr = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "{", "}", "|", ":", "\"", "<", ">", "?", "~", "!", "@", "#", "$", "%", "&", "^", "&", "*", "(", ")", "_", "+", " ", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "`", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "-", "=", "[", "]", "\\", ";", "'", ",", ".", "/"];
var randomStr( maxLen ) {
var rndKey = 0;
var str = "";
var i;
##
# Below are the steps taken to install the GuestAdditions on a VirtualBox Centos 6.5 Instance. This was done to setup sharing between Mac OSX and CentOS 6.5.
#
# Login to the GUEST ( your actual VirtualBox CentOS Instance ), update `yum` and install the necessary packages
#
##
yum update
yum --enablerepo rpmforge install dkms
yum --enablerepo rpmforge install dkms
@infolock
infolock / swift-json-parse.swift
Last active August 29, 2015 14:06
Swift JSON Parse
import Foundation
// This can go in its own separate swift file - just keeping it here for reference..
struct MyModel {
let name: String
let email: String
static func create( name: String, email: String ) -> MyModel {
return MyModel( name: name, email: email )
}
@infolock
infolock / .gitignore
Created October 3, 2016 14:15
Boilerplate Gitignore for macOS web (JS) development
bower_components/
node_modules/
tmp/
.AppleDouble
.LSOverride
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes