Skip to content

Instantly share code, notes, and snippets.

View gerardorochin's full-sized avatar

Gerardo Rochín gerardorochin

View GitHub Profile
{
"caret_extra_width": 1,
"caret_style": "phase",
"close_windows_when_empty": false,
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"copy_with_empty_selection": false,
"detect_indentation": true,
"detect_slow_plugins": false,
"drag_text": false,
"draw_minimap_border": true,
ZSH=$HOME/.oh-my-zsh
# Path to your oh-my-zsh configuration.
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
@gerardorochin
gerardorochin / serf_members_api.rb
Last active August 29, 2015 14:05
Serf members HTTP API
#!/usr/local/bin/ruby
# -*- mode: ruby -*-
# vi: set ft=ruby :
# encoding: UTF-8
#
# Get all members:
# curl "localhost:3737/api/members"
#
# Get members alive:
# curl "localhost:3737/api/members?status=alive"
@gerardorochin
gerardorochin / bootstrap_pagination.php
Created February 20, 2013 01:51
CodeIgniter Pagination Twitter Bootstrap Style
/**
* Pagination Twitter Bootstrap Style
*
* @access private
* @param records per page
* @param current page
* @param total records
* @return string
*/
private function _bootstrap_paginate($rpp='', $page='', $total=0)
@gerardorochin
gerardorochin / bash-colors.sh
Created September 18, 2013 22:02
Color Output on Bash Scripts
#!/bin/bash
# tputcolors
echo
echo -e "$(tput bold) reg bld und tput-command-colors$(tput sgr0)"
for i in $(seq 1 7); do
echo " $(tput setaf $i)Text$(tput sgr0) $(tput bold)$(tput setaf $i)Text$(tput sgr0) $(tput sgr 0 1)$(tput setaf $i)Text$(tput sgr0) \$(tput setaf $i)"
done
@gerardorochin
gerardorochin / fix-export-bzr-to-git.sh
Last active December 25, 2015 13:29
fix: file not in branch error msg: fatal: Path /full/path/file not in branch fast-import: dumping crash report to path/fast_import_crash_# bzr: broken pipe
#!/bin/bash
# Once you've confirmed the bug, switch to the fixed version do the following:
cd ~/.bazaar/plugins
# Instead of removing it, you can also just move it somewhere not visible to bzr.
rm -rf fastimport
bzr branch lp:~lyda.google/bzr-fastimport/mysql-export-fix fastimport
# try again
@gerardorochin
gerardorochin / export-bzr-to-git.sh
Last active December 25, 2015 13:29
bzr to git migration
#!/bin/bash
# Getting the bzr plugin
mkdir -p ~/.bazaar/plugins
cd ~/.bazaar/plugins
bzr branch lp:~lyda.google/bzr-fastimport/mysql-export-fix fastimport
# Migration
git init ~/project.git
cd ~/project.git
@gerardorochin
gerardorochin / html_to_markdown.php
Created October 23, 2013 15:43
Translate html minimal code WYSIWYG editor to markdown
<?php
$wysiwyg = "<p><b>test</b></p><p><i>test</i></p><p><strike>test</strike></p><p><br></p><p><ul><li>test</li></ul></p><p><ol><li>test</li></ol></p>";
$html = array('<b>', '</b>', '<i>', '</i>', '<p>', '</p>', '<br>', '<ul>', '</ul>', '<li>', '</li>', '<ol>', '</ol>', '<strike>', '</strike>');
$markdown = array('**', '**', '*', '*', '', PHP_EOL, PHP_EOL, '', '', "* ", '', '', '', '~~', '~~');
echo str_replace($html, $markdown, $wysiwyg);
/**
@gerardorochin
gerardorochin / gitweb.nginx.conf
Last active February 8, 2018 05:01
FreeBSD gitweb.cgi config for nginx
#Git Web
location /git {
alias /usr/local/www/gitweb/;
index gitweb.cgi;
auth_basic "Git SCM";
auth_basic_user_file htpasswd;
}
location ~ ^/git/gitweb.cgi {
@gerardorochin
gerardorochin / Make a USB bootable for pfSense on OSX
Created April 25, 2016 18:49
Example for create USB bootable for pfSense using device /dev/disk3
# diskutil list
/dev/disk0 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *121.3 GB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_CoreStorage Macintosh HD 121.0 GB disk0s2
3: Apple_Boot Boot OS X 134.2 MB disk0s3
/dev/disk1 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER