Skip to content

Instantly share code, notes, and snippets.

View eduardo's full-sized avatar

Edu Fernández eduardo

View GitHub Profile
@eduardo
eduardo / gist:1239075
Created September 24, 2011 07:21
How to downgrade the My Book World edition firmware from 1.02.10 to 1.02.06
Re: Network complications with My Book World firmware 1.02.10
Options
Monday
I found a solution on a nother post located here.
http://community.wdc.com/t5/My-Book-World-Edition/DO-NOT-UPDATE-1-02-10-FIRMWARE/td-p/257090/highlig...
If youve flashed your WD MyBookWorld to the new release of the firmware (version 01.02.10), the unit
will not allow you to reflash with a version that is earlier as it checks if the release that is current
is the latest by its number.
@eduardo
eduardo / .slate
Created July 16, 2013 06:54 — forked from mgax/.slate
config secondsBeforeRepeat 0.05
config secondsBetweenRepeat 0.05
config checkDefaultsOnLoad true
config focusCheckWidthMax 3000
@eduardo
eduardo / .slate
Created July 16, 2013 06:54 — forked from trishume/.slate
# Configs
config defaultToCurrentScreen true
config nudgePercentOf screenSize
config resizePercentOf screenSize
config secondsBetweenRepeat 0.1
config checkDefaultsOnLoad true
config focusCheckWidthMax 3000
config keyboardLayout dvorak
config windowHintsShowIcons true
config windowHintsIgnoreHiddenWindows false
@eduardo
eduardo / .slate
Created July 16, 2013 06:54 — forked from bsag/.slate
# My slate file
# 10-02-2013
# Basic mappings and bindings for moving screens around
# I have set up my right command key to trigger ctrl+alt+shift+cmd
# see http://stevelosh.com/blog/2012/10/a-modern-space-cadet/#hyper for details
config defaultToCurrentScreen true
config windowHintsShowIcons true
config windowHintsIgnoreHiddenWindows false
config windowHintsSpread true
gem "paymill"
@eduardo
eduardo / conferenciaror-2011-books.markdown
Created July 14, 2011 15:47
List of books recommended/mentioned in @conferenciaror 2011
@eduardo
eduardo / a.rb
Created May 10, 2012 03:06 — forked from ahoward/a.rb
#! /usr/local/rbenv/versions/1.8.7-p352-redmine/bin/ruby
### file: ./script/passenger
##
# get busy!
#
Background.logger.info("process #{ Process.pid } starting...")
logger = Background.logger
@eduardo
eduardo / gist:2644361
Created May 9, 2012 13:07 — forked from JoshMcKin/gist:801081
Deploy with Thin Rails 3
require "bundler/capistrano"
default_run_options[:pty] = true
set :user, 'user'
set :domain, 'SOMEDOMAIN.OR.IP'
set :application, "applcation_name"
set :repository, "/home/#{user}/git/#{application}.git/"
set :local_repository, "."
set :deploy_to, "/home/#{user}/#{application}"
@eduardo
eduardo / thin.sh
Created May 9, 2012 02:36 — forked from me-vlad/thin.sh
init script for multiple thin instances with rbenv shared install
#!/bin/sh
# thin This shell script takes care of starting and stopping
# thin daemon from rbenv shared install
#
# chkconfig: 2345 85 15
# description: thin is an Ruby web server
# config: /etc/sysconfig/thin
### BEGIN INIT INFO