Skip to content

Instantly share code, notes, and snippets.

View mattgaspar's full-sized avatar

Matt Gaspar mattgaspar

View GitHub Profile
@michoelchaikin
michoelchaikin / swipe_cc.js
Last active May 30, 2018 16:26
Accept credit cards by swiping in NetSuite using USB credit card reader
/**
* Accept credit cards by swiping in NetSuite using USB credit card reader
* (http://www.ebay.com.au/sch/i.html?_nkw=Magnetic+Stripe+Swiper)
*
* To deploy:
*
* 1) Upload this file to File Cabinet
* 2) In your custom Sales Order form, add the script file (no need to associate with any events)
* 3) Add an 'Inline HTML' custom field to the form with default value:
* <a href="javascript:swipe_cc();">Swipe Credit Card</a>
#!/usr/bin/ruby
# Create display override file to force Mac OS X to use RGB mode for Display
# see http://embdev.net/topic/284710
require 'base64'
data=`ioreg -l -d0 -w 0 -r -c AppleDisplay`
edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten
vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten
@michielvaneerd
michielvaneerd / Backbone and JSONP
Last active November 4, 2021 16:27
Fetching a Backbone collection with JSONP is really simple. It turns out you only need to override the sync method (to set the dataType to jsonp). In this case I also had to override the parse method, because the response consists of more than the models. This example uses the Discogs API to search for artists.
var Artist = Backbone.Model.extend();
var Artists = Backbone.Collection.extend({
model : Artist,
url : "http://api.discogs.com/database/search?type=artist",
sync : function(method, collection, options) {
// By setting the dataType to "jsonp", jQuery creates a function
// and adds it as a callback parameter to the request, e.g.:
// [url]&callback=jQuery19104472605645155031_1373700330157&q=bananarama
// If you want another name for the callback, also specify the
@timgaunt
timgaunt / jQuery.ConversionTracker.js
Created October 24, 2012 15:59
Google Analytics and Google AdWords link and button click tracker
/*!
* Conversion Tracker: a jQuery Plugin that tracks an event in both Google Analytics and Google AdWords
* @author: Tim Gaunt (@timgaunt)
* @url: http://blogs.thesitedoctor.co.uk/tim
* @documentation: http://blogs.thesitedoctor.co.uk/tim
* @published: 24/10/2012
* @license Creative Commons Attribution Non-Commercial Share Alike 3.0 Licence
* http://creativecommons.org/licenses/by-nc-sa/3.0/
*
* ----------------------
@ShirtlessKirk
ShirtlessKirk / luhn.js
Last active January 6, 2025 16:01
Luhn validation algorithm
/**
* Luhn algorithm in JavaScript: validate credit card number supplied as string of numbers
* @author ShirtlessKirk. Copyright (c) 2012.
* @license WTFPL (http://www.wtfpl.net/txt/copying)
*/
var luhnChk = (function (arr) {
return function (ccNum) {
var
len = ccNum.length,
bit = 1,