Skip to content

Instantly share code, notes, and snippets.

View vahe's full-sized avatar

Vahe Khachikyan vahe

  • Shopify
  • Toronto, Canada
View GitHub Profile
@vahe
vahe / gist:31c3fe91b6afd2966c0a
Created December 28, 2014 03:47
i3status config
# i3status configuration file.
# see "man i3status" for documentation.
# It is important that this file is edited as UTF-8.
# The following line should contain a sharp s:
# ß
# If the above line is not correctly displayed, fix your editor first!
general {
colors = true
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
@vahe
vahe / entypo.css
Last active December 21, 2015 06:49 — forked from pnull/entypo.css
@font-face {
font-family: 'EntypoRegular';
src: url('font/entypo.eot');
src: url('font/entypo.eot?#iefix') format('embedded-opentype'),
url('font/entypo.woff') format('woff'),
url('font/entypo.ttf') format('truetype'),
url('font/entypo.svg#EntypoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@vahe
vahe / entypo.css
Last active December 21, 2015 06:48
/**
* Stylesheet that implements Entypo font
* http://www.entypo.com/
*
* Autor Yordan Ivanov
* [email protected]
*/
@font-face {
font-family: 'EntypoRegular';
@vahe
vahe / install_node.sh
Last active December 21, 2015 05:08
Install node.js on Raspberry Pi (debian). Source: http://oskarhane.com/raspberry-pi-install-node-js-and-npm/
#!/bin/bash
#Make a new dir where you'll put the binary
sudo mkdir /opt/node
#Get it
wget http://nodejs.org/dist/v0.10.16/node-v0.10.16-linux-arm-pi.tar.gz
#unpack
tar xzf node-v0.10.16-linux-arm-pi.tar.gz