Skip to content

Instantly share code, notes, and snippets.

View roperzh's full-sized avatar

Roberto Dip roperzh

View GitHub Profile
<?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">
<!-- Generated by: TmTheme-Editor -->
<!-- ============================================ -->
<!-- app: http://tmtheme-editor.herokuapp.com -->
<!-- code: https://github.com/aziz/tmTheme-Editor -->
<plist version="1.0">
<dict>
<key>name</key>
<string>fiber</string>
show_autocomplete: function (itemName, collection) {
var accentMap = {
"á": "a",
"é": "e",
"í": "i",
"ó": "o",
"ú": "u",
"ñ": "n"
};
#!/bin/sh
BASE_MSG="$1"
TICKETNO=`git branch | grep '^\*' | sed s/^[^-]*-//`
echo "Ticket #$TICKETNO: \n `cat $BASE_MSG`" > $BASE_MSG
@roperzh
roperzh / ajax.js
Created July 14, 2014 02:37
Simple ajax service, IE9+ compatible
// -------------------------------------------
// Ajax Stuff
// -------------------------------------------
Ajax = {
get: function(options) {
options.method = "GET";
this.request(options);
},
@roperzh
roperzh / observable.js
Created July 13, 2014 15:26
Mutation observers and Essential.js
// -------------------------------------------
// Mutation observers applied
// -------------------------------------------
Ui.Observable = Essential.Behavior.extend({
config: {
attributes: true,
childList: true,
characterData: true
},
@roperzh
roperzh / grid.scss
Created July 5, 2014 02:50
Very simple & effective grid system
// -------------------------------------------
// Simple grid system
// -------------------------------------------
/* Container for a group of columns */
.grid {
width: 100%;
height: 100%;
@include clearfix();
@roperzh
roperzh / .conkyrc
Created May 14, 2014 13:56
My .conkyrc file
# conky configuration
#
# The list of variables has been removed from this file in favour
# of keeping the documentation more maintainable.
# Check http://conky.sf.net for an up-to-date-list.
#
# For ideas about how to modify conky, please see:
#
#
# For help with conky, please see:
@roperzh
roperzh / README.md
Last active August 29, 2015 14:00
Custom and minimalist zsh theme

Tinyice

Minimalist theme for oh-my-zsh, aimed to show information related to git and rvm.

Example

  • (↑) current branch is ahead of the remote.

  • (↓) current branch is behind of the remote.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.