Skip to content

Instantly share code, notes, and snippets.

View sherah's full-sized avatar
🏠
Working from home

Sherah Beck sherah

🏠
Working from home
View GitHub Profile
@jadaradix
jadaradix / yosemite-subl
Last active January 25, 2022 05:22
Fix Sublime's "subl" command on OS X Yosemite.
rm /usr/local/bin/subl;
sudo ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl;
@krosti
krosti / formatMoney.js
Created November 6, 2012 17:26
formayMoney prototype function in javascript
/* global prototype formatMoney function
* params:
* c (integer): count numbers of digits after sign
* d (string): decimals sign separator
* t (string): miles sign separator
*
* example:
* (123456789.12345).formatMoney(2, ',', '.');
* => "123.456.789,12" Latinoamerican moneyFormat
*/