Skip to content

Instantly share code, notes, and snippets.

View rickeyvisinski-kanban's full-sized avatar

Rickey Visinski rickeyvisinski-kanban

View GitHub Profile
@rickeyvisinski-kanban
rickeyvisinski-kanban / gist:5399383
Created April 16, 2013 20:32
The second for loop will never be evaluated unless links in explicitly resolved, eg val nl = links()...
package com.test
import dispatch._
import scala.collection.JavaConverters._
import java.io.{ FileOutputStream, File }
import org.apache.commons.io.IOUtils
import scala.concurrent.ExecutionContext.Implicits.global
object App {
@rickeyvisinski-kanban
rickeyvisinski-kanban / gist:5061325
Created March 1, 2013 00:12
Fix the libudev of google chrome for good
# Maintainer: t3ddy <t3ddy1988 "at" gmail {dot} com>
# Contributor: Lex Rivera aka x-demon <aur@x-demon.org>
# Contributor: Det <nimetonmaili at gmail a-dot com>
# Contributor: ruario
pkgname=google-chrome-dev
pkgver=27.0.1423.0 # Check for new Linux releases in: http://googlechromereleases.blogspot.com/search/label/Dev%20updates
pkgrel=1
pkgdesc="An attempt at creating a safer, faster, and more stable browser (Dev Channel)"
arch=('i686' 'x86_64')
@rickeyvisinski-kanban
rickeyvisinski-kanban / gist:4678162
Created January 30, 2013 23:04
Browser Text Editor
data:text/html, <title>Text Editor</title><body><style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e" style="font-size:16px;"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/javascript");</script></body>
@rickeyvisinski-kanban
rickeyvisinski-kanban / lighttable
Created January 17, 2013 21:23
Light table launcher script
#!/bin/bash
BIN=LightTable
HERE=$PWD
warn() {
echo "Make sure you have libudev.so.0 symlinked in $HERE to your version of libudev"
exit 2
}