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 lazy = require("lazy"); | |
var iconv = require('iconv-lite') | |
var removeQuotes = function(str){ | |
return str.substring(1, str.length -1); | |
}; | |
lazy(fs.createReadStream(path.join(__dirname,'..', 'datafiles', 'cities.csv'))) | |
.lines | |
.map(function(byteArray) { | |
return iconv.decode(byteArray, 'latin1'); | |
}) |
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 locateMe = function(){ | |
try { | |
if(geoPosition.init()){ | |
var geocoder = new google.maps.Geocoder(); | |
var foundLocation = function(city, state, country, lat, lon){ | |
if(country) $("#country").val(country).trigger("change"); | |
if(state) $("#state").val(state).trigger("change"); | |
if(city) $("#city").val(city).trigger("change"); | |
$("#userLat").val(lat); | |
$("#userLon").val(lon); |
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
/** | |
* input = DOM or jquery object | |
* [begin] = Number | |
* [end] = Number | |
* If begin and end are not specified, returns the current input selection | |
**/ | |
var inputCaret = function(input, begin, end) { | |
var npt = input.jquery && input.length > 0 ? input[0] : input, range; | |
if (typeof begin == 'number') { | |
if (!$(input).is(':visible')) { |
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
$(-> | |
$doc = $(document) | |
$doc.on('submit', 'form[data-parent]', (e) -> | |
$target = $(e.currentTarget) | |
# we have 2 options here: | |
# 1) find all these sub forms on page load | |
# 2) find them all on each form submit | |
# I like option 2 better because it works with dynamically added/removed forms, at the slight cost of running more selectors | |
parentSelector = $target.data('parent') | |
$parentForm = $(parentSelector) #the attribute must be a selector. Maybe add a sanity check for it being a selector so jquery doesnt barf if its not? |
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
import jinjatag | |
from bs4 import BeautifulSoup | |
import coffeescript | |
@jinjatag.simple_block() | |
def script(body, uglify=None): | |
if uglify is None: | |
uglify = not static.config.get('ASSETS_DEBUG', True) | |
soup = BeautifulSoup(body) | |
scripts = soup.findAll('script') |
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
(function () { | |
function addStyleText(text) { | |
var head = document.getElementsByTagName('head')[0], | |
style = document.createElement('style'), | |
rules = document.createTextNode(text); | |
style.type = 'text/css'; | |
if (style.styleSheet) | |
style.styleSheet.cssText = rules.nodeValue; | |
else |
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
/** | |
* Humanize the given `ms`. | |
* | |
* @param {Number} m | |
* @return {String} | |
*/ | |
function humanize(ms) { | |
var sec = 1000 | |
, min = 60 * 1000 |
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
Behavior2.Class('multiselect', 'select.multiselect', { | |
'!multiselect': #you can trigger 'multiselect' on any element, and any multiselects within that element will be refreshed. or $ctx.trigger('multiselect', 'rebuild') | |
'body': 'updateSelf' | |
}, ($ctx, that) -> | |
that.options = | |
maxHeight: 200 | |
numberDisplayed: 10 |
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
// ==UserScript== | |
// @name Catman OpenPediatrics Login | |
// @namespace dogself | |
// @version 0.1 | |
// @description log in like catman | |
// @include https://hq.app.openpediatrics.org/webUI | |
// @include https://hq.app.openpediatrics.org/webUI/ | |
// @grant unsafeWindow | |
// @run-at document-end | |
// @copyright dogself |
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
"1234567890.34".replace(/\B(?=(\d{3})+(?!\d))/g, ",") | |
"1,234,567,890.34" |