Skip to content

Instantly share code, notes, and snippets.

View mkoryak's full-sized avatar
🐈
Working

Misha Koryak mkoryak

🐈
Working
View GitHub Profile
@mkoryak
mkoryak / multiselect.coffee
Last active August 29, 2015 14:05
behavior2 options example
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
@mkoryak
mkoryak / humanize_ms.js
Created May 29, 2014 18:01
humanize ms
/**
* Humanize the given `ms`.
*
* @param {Number} m
* @return {String}
*/
function humanize(ms) {
var sec = 1000
, min = 60 * 1000
(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
@mkoryak
mkoryak / scripts.py
Created December 10, 2013 21:53
scripts jinjatag
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')
@mkoryak
mkoryak / multiform.coffee
Created September 16, 2013 18:29
submit multiple forms as if it was a single form
$(->
$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?
@mkoryak
mkoryak / inputCaret.js
Created August 18, 2013 04:01
cross-browser input text selection and selected range
/**
* 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')) {
@mkoryak
mkoryak / geolocation.js
Last active December 20, 2015 14:29
reverse geolocation via one of my forked geolocation libs
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);
@mkoryak
mkoryak / read.js
Created August 3, 2013 01:28
reading maxmind geoip cities csv
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');
})
@mkoryak
mkoryak / gist:6023894
Created July 17, 2013 19:55
functional
var Person = function(){
var that = {};
var privateVar = 'BLEEEEEE'; //how do i do this with prototypical inhereitance?
that.talk = function(){
return "i said "+privateVar;
}
return that;
};
@mkoryak
mkoryak / format.bas
Created May 29, 2013 00:49
This is one of the first programs I wrote. The file has a modified date of 1/9/1998
CLS
GOSUB sub1
IF quest$ = "y" THEN
GOSUB sub2
ELSE
END
END IF
GOSUB sub3