Skip to content

Instantly share code, notes, and snippets.

View gerardorochin's full-sized avatar

Gerardo Rochín gerardorochin

View GitHub Profile
@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 / 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 / rfc regex
Created June 6, 2013 00:00
Expresion regular para validar RFC
/^([A-Z,Ñ,&]{3,4}([0-9]{2})(0[1-9]|1[0-2])(0[1-9]|1[0-9]|2[0-9]|3[0-1])[A-Z|\d]{3})$/
@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 / error-install-grub.sh
Last active March 5, 2024 04:49
Fix error generated on the install GRUB on Arch Linux: Syntax errors are detected in generated GRUB config file.
# try:
grub-mkconfig -o /boot/grub/grub.cfg
# output error:
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux-ck
Found initrd image: /boot/initramfs-linux-ck.img
Found Windows 8 (loader) on /dev/sda1
error: out of memory.
error: syntax error.
{
"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"