Skip to content

Instantly share code, notes, and snippets.

View rtorr's full-sized avatar

Richard Torruellas rtorr

View GitHub Profile
@rtorr
rtorr / .bashrc
Created October 5, 2012 19:00
Android drawables conversion
#EXAMPLE $ vert -d res/drawable-mdpi -d res/drawable-hdpi res/drawable-xhdpi-v14/*.png
alias vert='python ~/git/android_tools/drawable_convert.py'
@rtorr
rtorr / gist:4226279
Created December 6, 2012 17:24
android profile
# Tools for android
export PATH=${PATH}:~/android-sdk-macosx/tools
alias lsd='/Users/rtorruellas/android-sdk-macosx/platform-tools/adb devices'
alias logd='/Users/rtorruellas/android-sdk-macosx/platform-tools/adb logcat'
alias rund='mvn clean install android:deploy'
@rtorr
rtorr / .Xmodmap
Created February 3, 2013 05:01
.Xmodmap for ubuntu mac keyboard layout
clear control
clear mod4
keycode 105 =
keycode 206 =
keycode 133 = Control_L NoSymbol Control_L
keycode 134 = Control_R NoSymbol Control_R
keycode 37 = Super_L NoSymbol Super_L
@rtorr
rtorr / .Xmodmap
Last active December 12, 2015 03:09
linux
# for mac keyboard layout (to update run xmodmap ~/.Xmodmap)
clear control
clear mod4
keycode 105 =
keycode 206 =
keycode 133 = Control_L NoSymbol Control_L
keycode 134 = Control_R NoSymbol Control_R
keycode 37 = Super_L NoSymbol Super_L
@rtorr
rtorr / aThing.tmTheme
Last active December 16, 2015 21:20
A Thing - Sublime Text 2 / Textmate theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!--
======================================================================
A Thing
A Sublime Text 2 / Textmate theme.
2013 Richard Torruellas (http://rtorruellas.com)
Released under the MIT License <http://opensource.org/licenses/MIT>
https://gist.github.com/rtorr/5499177
======================================================================
# --------------------------better bash promt-----------------------------------#
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt”
# Shamelessly copied from https://github.com/gf3/dotfiles
default_username='rtorr'
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
export TERM=gnome-256color
elif infocmp xterm-256color >/dev/null 2>&1; then
@rtorr
rtorr / gist:6123658
Created July 31, 2013 16:32
css to json
/**
* Shamelessly ripped from https://github.com/aramkocharyan/CSSJSON/blob/master/cssjson.js
* just to convert CSS to JSON for testing
*/
var CSSJSON = new function () {
var base = this;
base.init = function () {
String.prototype.trim = function () {return this.replace(/^\s+|\s+$/g, '');};
String.prototype.repeat = function (n) {return new Array(1 + n).join(this);};
};
// Generated on 2013-08-04 using generator-webapp 0.2.6
'use strict';
var LIVERELOAD_PORT = 35729;
var lrSnippet = require('connect-livereload')({port: LIVERELOAD_PORT});
var mountFolder = function (connect, dir) {
return connect.static(require('path').resolve(dir));
};
// # Globbing
// for performance reasons we're only matching one level down:
# Apache Configuration File
# (!) Using `.htaccess` files slows down Apache, therefore, if you have access
# to the main server config file (usually called `httpd.conf`), you should add
# this logic there: http://httpd.apache.org/docs/current/howto/htaccess.html.
# ##############################################################################
# # CROSS-ORIGIN RESOURCE SHARING (CORS) #
# ##############################################################################
var fs = require('fs');
var mkdirp = require('mkdirp');
exports.writer = function(req, body){
if (req.originalUrl !== '/'){
var destination = './dist'+req.originalUrl+'/index.html';
}else {
var destination = './dist'+req.originalUrl+'index.html';
}