Skip to content

Instantly share code, notes, and snippets.

View inkdeep's full-sized avatar

Jeremy Kleindl inkdeep

View GitHub Profile
@inkdeep
inkdeep / colors_array.js
Created December 18, 2013 14:20
Array of colors with name and hex value
[
["Alice blue", "#F0F8FF"],
["Antique white", "#FAEBD7"],
["Aqua", "#00FFFF"],
["Aquamarine", "#7FFFD4"],
["Azure", "#F0FFFF"],
["Beige", "#F5F5DC"],
["Bisque", "#FFE4C4"],
["Black", "#000000"],
["Blanche dalmond", "#FFEBCD"],
/*
arrays
*/
const _set = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
const _set2 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
/*
predicates
*/
const isEven = x => x % 2 === 0;
const addOne = x => x + 1;
@inkdeep
inkdeep / web_worker_experiment.js
Created April 12, 2018 14:03
Experimenting with ways to take JavaScript on the client and make web workers with it.
function workerMessageHandler({ data, origin, lastEventId, source, ports }) {
console.warn(`worker got message
data: ${JSON.stringify(data)}
origin: ${origin}
lastEventId: ${lastEventId}
source: ${source}
ports: ${ports}
`);
self.addEventListener("message", function(e) {
@inkdeep
inkdeep / js-array_uniq.js
Created March 6, 2013 18:52
javascript uniq - Native and Dojo style
// Native JS (fast)
uniq = function( /* Array */ arr) {
var test = {};
var result = [];
for (var i = 0, len = arr.length; i < len; i++) {
if (!test[arr[i]]) { // value not seen yet?
test[arr[i]] = true;
result.push(arr[i]);
}
}
☼ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew upgrade v8
==> Upgrading v8
rm /usr/local/bin/v8
rm /usr/local/include/v8stdint.h
rm /usr/local/include/v8.h
rm /usr/local/include/v8-testing.h
rm /usr/local/include/v8-profiler.h
rm /usr/local/include/v8-preparser.h
rm /usr/local/include/v8-debug.h
rm /usr/local/lib/libv8.dylib
@inkdeep
inkdeep / cap_set_branch.rb
Created August 20, 2012 13:12
Capistrano select branch/tag to deploy
set :branch do
tags = `git tag`.split("\n")
list = tags.collect {|x| %(#{tags.index(x)}: #{x}) }
puts %(------------------------------------------
Available Tags for Deployment
Use m for master
------------------------------------------)
puts list << "------------------------------------------\n"
i = Capistrano::CLI.ui.ask('Tag to deploy:')
i == 'm' ? 'master' : tags[i.to_i]
@inkdeep
inkdeep / method_finder.rb
Created July 29, 2011 20:48
original method_finder inspired by _why
# Some credits:
# Code this verions is based on: Andrew Birkett
# http://www.nobugs.org/developer/ruby/method_finder.html
# Improvements from _why's blog entry
# * what? == - _why
# * @@blacklist - llasram
# * $stdout redirect - _why
# http://redhanded.hobix.com/inspect/stickItInYourIrbrcMethodfinder.html
# Improvements from Nikolas Coukouma
# * Varargs and block support
namespace :test do
task :populate_testopts do
if ENV['TESTNAME'].present?
ENV['TESTOPTS'] = ENV['TESTOPTS'] ? "#{ENV['TESTOPTS']} " : ''
ENV['TESTOPTS'] += "--name=#{ENV['TESTNAME'].inspect}"
end
end
end
%w(test:units test:functionals test:integration).each do |task_name|
@inkdeep
inkdeep / annoying.js
Created June 1, 2011 17:25 — forked from Kilian/annoying.js
How to be an asshole
/**
* Annoying.js - How to be an asshole to your users
*
* DO NOT EVER, EVER USE THIS.
*
* Copyright (c) 2011 Kilian Valkhof (kilianvalkhof.com)
* Visit https://gist.github.com/767982 for more information and changelogs.
* Visit http://kilianvalkhof.com/2011/javascript/annoying-js-how-to-be-an-asshole/ for the introduction and weblog
* Check out https://gist.github.com/942745 if you want to annoy developer instead of visitors
*
@inkdeep
inkdeep / update_github_tmbundles.rb
Created April 7, 2011 17:44
Update TextMate bundles cloned from GitHub (or wherever) in ~/Library/Application Support/TextMate/Bundles
#!/usr/bin/env ruby
textmate_bundle_path = File.expand_path('~/Library/Application Support/TextMate/Bundles/')
Dir.chdir(textmate_bundle_path)
bundles = Dir.glob('*.tmbundle')
bundles.each do |bundle|
Dir.chdir(File.join(textmate_bundle_path, bundle))
puts %(