Skip to content

Instantly share code, notes, and snippets.

View Jheysoon's full-sized avatar

Jayson Martinez Jheysoon

View GitHub Profile
@Jheysoon
Jheysoon / ordinal.js
Created July 14, 2017 01:19 — forked from jlbruno/ordinal.js
Javascript Ordinal Numbers
// found here http://forums.shopify.com/categories/2/posts/29259
var getOrdinal = function(n) {
var s=["th","st","nd","rd"],
v=n%100;
return n+(s[(v-20)%10]||s[v]||s[0]);
}
@Jheysoon
Jheysoon / gist:432c662fb8b1bdb32897397a1fd446da
Created August 12, 2016 03:30 — forked from spinegar/gist:6544378
Using SugarCRM's New RESTful API With Guzzle
<?php
use Guzzle\Common\Event;
use Guzzle\Http\Client;
// specify the REST web service to interact with
$url = 'http://sugarinstance/rest/v10';
// And admin username/password
$username = 'username';
$password = 'password';