Single-page Web Application Advanced
Photographs courtesy of:...
Digital Product Manager & Social Entrepreneur. Mostly write about AWS, Swift, R, and Ruby.
Photographs courtesy of:...
Names of Famous Composers:...
This entry will show you how to create a QR reader using a live webcam feed. Install Processing Option 1: Manual Download Processing 2.2.1 Disk Image...
A simple GET request using Swift. //: Playground - noun: a place where people can play import UIKit class Test { init(path:String){ getRequest(path) } func getRequest(path:String)...
This one line will install the shell script found below created by @creationix
For new developers interested in audio, the world of compression algorithms, codecs and content formats is somewhat confusing. For this reason, I've decided to create an...
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...
I was recently asked to turn a bitmap image (.bmp) into a vector graphic and I wanted to do it using Javascript. NodeJS did the trick. The first...
I've been learning about investment strategies lately and I've found these resources to be the most valuable ones for me. Personal Investment Strategy At...
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...
It's not a good idea to use global variables but if you do, this technique is probably the safest. // Global Object #1. Type: Object. function setData(...
If you're ever building a site that requires you to list out industries, here you go. This list was derived from NAICS [https://www.census.gov/...
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...
Below are a few tools I use to integrate affiliate marketing into websites and apps. Before we start Here are a few other things I find helpful to...
You like a theme but it's referencing a Google font you want to switch out. Here's the simplest way to do it, by keeping...
You might need to strip out HTML in comments and here's how. /** ******** ******** ******** ******** ******** ******** ******** ******** * TITLE: Disable HTML in WordPress comments * DESCRIPTION: Disallow HTML in WordPress comments, add this...