Skip to content

Instantly share code, notes, and snippets.

View gaulatti's full-sized avatar

Javier Godoy Núñez gaulatti

View GitHub Profile
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rango_a_calcular As Range
Set rango_a_calcular = Range("D3:F12")
If Not Application.Intersect(rango_a_calcular, Range(Target.Address)) Is Nothing Then
For i = 1 To rango_a_calcular.Rows.Count
Dim fila_actual As Integer
Dim medida_2 As Integer
Dim medida_3 As Integer
set -gx PATH $HOME/.composer/vendor/bin $PATH
# GIT
# Aliases
alias ll='ls -la'
alias g='git'
alias gst='git status'
alias gd='git diff'
alias gdc='git diff --cached'
alias gl='git pull'
alias gup='git pull --rebase'
server
{
error_log %s/logs/%s debug;
listen 80;
server_name %s;
root %s/%s;
}
@gaulatti
gaulatti / copera.rm
Created September 14, 2015 21:28
Streaming Radio Cooperativa (Nostalgia)
rtsp://200.29.30.2:554/encoder/copera.rm
--stop--
pnm://200.29.30.2:7070/encoder/copera.rm
@gaulatti
gaulatti / config
Created July 26, 2015 21:47
sample-nginx-laravel-config
server {
listen 80;
server_name localhost;
root /Users/rotvulpix/Source/Lab/front;
access_log /var/nginx/logs/front.dev.log main;
error_log /var/nginx/logs/front.dev.error.log;
location / {
try_files $uri $uri/ /index.php?$query_string;
--- /usr/local/etc/apache2/2.2/original/httpd.conf 2014-12-05 20:14:50.000000000 -0500
+++ /usr/local/etc/apache2/2.2/httpd.conf 2014-12-05 20:16:46.000000000 -0500
@@ -38,7 +38,7 @@
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
-Listen 8080
+Listen 8000
#
@gaulatti
gaulatti / BaseController.php
Created November 21, 2014 17:07
Laravel Base Controller w/Hacks
<?php
class BaseController extends Controller {
/**
* Setup the layout used by the controller.
*
* @return void
*/
protected function setupLayout()
@gaulatti
gaulatti / clear2.php
Created October 13, 2014 16:30
Deploying Symfony2
<?php
shell_exec('rm -rf ../app/cache/*');
shell_exec('chmod -R 777 ../app/cache/*');
shell_exec('rm -rf ../app/logs/*');
shell_exec('chmod -R 777 ../app/logs/*');
@gaulatti
gaulatti / checkboxAsDropdown
Last active August 29, 2015 14:06
Representing Checkboxes with Bootstrap Dropdowns
<!-- RadioButtons, about them the Dropdown will be filled -->
<input type="radio" name="ambito" class="selectable" value="1" data-caption="Ámbito 1">
<input type="radio" name="ambito" class="selectable" value="2" data-caption="Ámbito 2">
<input type="radio" name="ambito" class="selectable" value="3" data-caption="Ámbito 3">
<!-- Bootstrap Dropdown - empty -->
<div class="btn-group radio-selectable" data-radio="ambito">
<button type="button" class="btn btn-default dropdown-toggle btn-info" data-toggle="dropdown">
Seleccione <span class="caret"></span>
</button>
#!/bin/bash
echo '===> install apc.so in OSX Mavericks'
mkdir -p ~/tmp/apc-deps
# Compile PCRE - Perl Compatible Regular Expressions
cd ~/tmp/apc-deps
curl -O ftp://ftp.csx.cam.ac.uk//pub/software/programming/pcre/pcre-8.33.tar.gz
tar -xvzf pcre-8.33.tar.gz