This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* 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/ | |
* | |
* ---------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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, |