Skip to content

Instantly share code, notes, and snippets.

@jkrup
jkrup / ikiwiki.rb
Created June 23, 2012 08:12
ikiwiki brew formula
require 'formula'
class Ikiwiki < Formula
url 'http://ftp.de.debian.org/debian/pool/main/i/ikiwiki/ikiwiki_3.20120516.tar.gz'
homepage 'http://ikiwiki.info/'
head 'git://git.ikiwiki.info/'
depends_on 'Text::Markdown' => :perl
depends_on 'URI' => :perl
depends_on 'HTML::Parser' => :perl
@jkrup
jkrup / batchrenamepuzzle.txt
Created July 19, 2012 13:41
batch files to puzzle_#
I=0;for FILE in *; do let I++;mv $FILE puzzle$I.jpg;done
Shader "TextureMask"
{
Properties
{
_Mask ("Culling Mask", 2D) = "white" {}
@jkrup
jkrup / bitmask.shader
Created October 15, 2012 16:45
Mask shader for Unity3d
Shader "Custom/bitmask"
{
Properties
{
//_MainTex ("Base", 2D) = "black" {}
_Mask ("Culling Mask", 2D) = "" {}
_Cutoff ("Alpha Cutoff", Range(0,1)) = 0
--------------------
“Desiderata”
--------------------
Go placidly amid the noise and haste,
and remember what peace there may be in silence.
As far as possible, without surrender,
be on good terms with all persons.
@jkrup
jkrup / 0_reuse_code.js
Last active September 2, 2015 20:58
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jkrup
jkrup / javascript_resources.md
Last active September 2, 2015 20:58 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@jkrup
jkrup / rails_resources.md
Last active September 2, 2015 20:58 — forked from jookyboi/rails_resources.md
Rails-related Gems and guides to accelerate your web project.

Gems

  • Bundler - Bundler maintains a consistent environment for ruby applications. It tracks an application's code and the rubygems it needs to run, so that an application will always have the exact gems (and versions) that it needs to run.
  • rabl - General ruby templating with json, bson, xml, plist and msgpack support
  • Thin - Very fast and lightweight Ruby web server
  • Unicorn - Unicorn is an HTTP server for Rack applications designed to only serve fast clients on low-latency, high-bandwidth connections and take advantage of features in Unix/Unix-like kernels.
  • SimpleCov - SimpleCov is a code coverage analysis tool for Ruby 1.9.
  • Zeus - Zeus preloads your Rails app so that your normal development tasks such as console, server, generate, and specs/tests take less than one second.
  • [factory_girl](h
@jkrup
jkrup / css_resources.md
Last active September 2, 2015 20:58 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides

# find diffs in files that were affected by merge conflict
git diff --cached `echo **/*.orig | sed s/.orig//`