This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Set the font | |
set guifont=Inconsolata\ 12 | |
" My favourite color scheme for the GUI | |
colorscheme koehler | |
" Remove toolbar | |
set guioptions-=T | |
" Remove right scrollbar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-add-repository ppa:ubuntu-on-rails/ppa | |
sudo apt-get update | |
sudo apt-get install gedit-plugins gedit-gmate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# USE: git config --global diff.external diff.py | |
import sys | |
import os | |
os.system('meld "%s" "%s"' % (sys.argv[2], sys.argv[5])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ { "fields" : { "created" : "2011-02-07 13:41:37", | |
"modified" : "2011-02-07 13:41:37", | |
"tags" : [ 1, | |
2 | |
], | |
"text" : "Ultimo contenido", | |
"title" : "Ultimo contenido" | |
}, | |
"model" : "blog.content", | |
"pk" : 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<parent> | |
<artifactId>test-multimodule</artifactId> | |
<groupId>com.sourcerebels</groupId> | |
<version>1.0-SNAPSHOT</version> | |
</parent> | |
<groupId>com.sourcerebels.framework</groupId> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Created on 17/12/2010 | |
@author: Edu Rodriguez Castillo <http://www.sourcerebels.com> | |
''' | |
import urllib2 | |
def isAlive(url): | |
try: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Created on 11/12/2010 | |
@author: Eduardo Rodriguez Castillo <http://sourcerebels.com> | |
''' | |
import re | |
def convert(number=1): | |
conversionTable = ((50, "L"),(40, "XL"),(10, "X"),(9, "IX"),(5, "V"), (4, "IV")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Transforms a Exception stack trace into String. | |
* @param e The exception to be transformed. | |
* @return A string with the stack trace text. | |
*/ | |
public String exception2String(Exception e) { | |
StringWriter sw = new StringWriter(); | |
PrintWriter pw = new PrintWriter(sw); | |
e.printStackTrace(pw); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use_theme_colors=False | |
background_color=#222222 | |
foreground_color=#707678 | |
font = Andale Mono 10 | |
palette=#22cc22dd22ee:#aaee44774477:#669966cc5599:#cc77cc9933dd:#66ff9999bb44:#aaaa88ccbbff:#6688bb44bb11:#770077667788:#aa33aa55aa66:#eeee66336633:#9900aa5577dd:#dd00cc5544dd:#77cc9966bb00:#88ff44cc7700:#22dd88228855:#ee22ee22ee22 | |
scrollback_lines = '500' | |
cursor_blink = True | |
background_darkness=0.0 | |
force_no_bell=true | |
handle_size=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For Maven based projects | |
target | |
target/* | |
# IDE dependant files | |
# NetBeans | |
nb-configuration.xml |