Skip to content

Instantly share code, notes, and snippets.

View isaactzab's full-sized avatar

Isaac Levi Tzab Poot isaactzab

View GitHub Profile

Installing UfRaw

add-apt-repository ppa:dhor/myway
apt-get update
apt-get install UfRaw

@isaactzab
isaactzab / mixins.jade
Created March 17, 2016 22:49 — forked from shaneriley/mixins.jade
Jade mixins example
// Writing JS for everything is great and all, but I don't want to see JS
// inline in my Jade templates. Thankfully, there are ways of abstrating it
// into mixins!
// Want some Rails-like helpers?
mixin link_to(name, href)
- href = href || "#"
a(href="#{href}")= name
// How about a single editing point for a class name?
@isaactzab
isaactzab / Nautilus File Manager Installation
Created February 25, 2016 23:16
The Nautilus File Manager Installation with extensions
sudo apt-get install nautilus
#extension open in terminal
sudo apt-get install nautilus-open-terminal
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// Sassy-validation (v0.4.0)
// ----
@import "sassy-validation";
Sassy-validation {
is-measure: val(10px, 'measure');