Skip to content

Instantly share code, notes, and snippets.

View JasonGiedymin's full-sized avatar
Localized in the quantum field of probabilities.

Jason Giedymin JasonGiedymin

Localized in the quantum field of probabilities.
View GitHub Profile
@JasonGiedymin
JasonGiedymin / goswitch.sh
Last active August 29, 2015 14:05
Golang version switcher. Activate by `goswitch 1.4` or `goswitch list`. See help at `goswitch help`.
#!/bin/bash
#
# Author: Jason Giedymin <[email protected]>
# Copyright 2014 Jason Giedymin
# License: Apache2
#
# Basic goswitch script to swtich between two gopath roots.
# This script can be useful if you have a basic structure
# and your build scripts don't have knowledge of where
# your golibs are installed.
@JasonGiedymin
JasonGiedymin / Basic Gulp File
Created March 14, 2014 15:54
A simple gulpfile I use for some of my projects. Some more thought could be done on the task order. I've found that the task dependencies do not work as expected (most likely because deferreds aren't being used in the lib or by hand in this script).
// Apache2 License
// Author: Jason Giedymin
// ### Requires
var packageFile = require('./package');
var gulp = require('gulp');
var rimraf = require('gulp-rimraf');
var zip = require('gulp-zip');
var docco = require("gulp-docco");
var mocha = require('gulp-mocha');
package slick
/**
* This is some code extracted from TimeOut codebase, demonstrating:
* - Use of tag typed to avoid mixing session of different DB
* - The use of the Reader Monad to compose Actions together and defer the choice of async/sync computation
*
* I remove the part where we can say if our operation are read only or not (to use different connection), in order to
* make things easier.
**/
@JasonGiedymin
JasonGiedymin / Mesos upstart scripts
Last active December 29, 2015 19:49 — forked from kwilczynski/Mesos upstart scripts
Updating with mesos trunk: - Change log location - Change mesos home (temporary)
description "Mesos Master"
start on runlevel [2345]
stop on starting rc RUNLEVEL=[016]
respawn
respawn limit 2 5
env MESOS_CONFIG="/etc/mesos/conf"
env MESOS_HOME="/usr/local/lib"
#!/bin/bash
java_binary_link="/usr/bin/java"
java_library="libjvm.so"
library_paths=(
/jre/lib/amd64/server
/jre/lib/amd64/client
/usr/lib
/lib
@JasonGiedymin
JasonGiedymin / gist:7042147
Created October 18, 2013 14:12
Vagrant quick cluster
# Vagrant Quick Cluster
nodes = [
{ :hostname => 'vmci', :cpus => 1, :mem => 256, :ip => '172.168.0.100', :box => 'vm_ci', :url => '../precise64.box' },
{ :hostname => 'vmdev', :cpus => 1, :mem => 256, :ip => '172.168.0.101', :box => 'vm_dev', :url => '../precise64.box' },
{ :hostname => 'vmtest', :cpus => 1, :mem => 256, :ip => '172.168.0.102', :box => 'vm_test', :url => '../precise64.box' },
{ :hostname => 'vmprod', :cpus => 1, :mem => 256, :ip => '172.168.0.103', :box => 'vm_prod', :url => '../precise64.box' }
]
Vagrant.configure('2') do |config|
@JasonGiedymin
JasonGiedymin / OptionLiftSpec.scala
Last active December 17, 2015 12:29
Quick experiment with option list of values, option list of functions, and lifting both for binding/executing.
package jason
import org.scalatest.FreeSpec
class OptionLiftSpec extends FreeSpec {
def fTimesTwo(x: Int): Option[Int] = Some(x * 2)
def fTimesThree(x: Int): Option[Int] = Some(x * 3)
@JasonGiedymin
JasonGiedymin / JS Loop Testing
Created August 26, 2012 20:45
Fast Loop Analysis
Preparation code
<script>
Benchmark.prototype.setup = function() {
var sum = 0;
var values = [1, 1, 1, 1, 1];
var i = values.length;
};
</script>
@JasonGiedymin
JasonGiedymin / ubuntu-essentials.sh
Created August 4, 2012 04:53
Ubuntu essentials
#!/bin/bash
echo "Installing Dependencies for Ubuntu ONLY"
sudo apt-get update
sudo apt-get install git git-core curl build-essential openssl libssl-dev wget vim pkg-config make autoconf automake gcc g++ ccache tcl-dev libexpat1-dev libpcre3-dev libcap-dev libcap2 bison flex
echo "Installing dependencies complete."
@JasonGiedymin
JasonGiedymin / .gitignore
Created August 4, 2012 04:46
Global .gitignore
# Global .gitignore
## Dirs
node_modules
tmp
temp
## Generic
*~