Skip to content

Instantly share code, notes, and snippets.

View fabdelgado's full-sized avatar
🌎

Fabián Delgado fabdelgado

🌎
View GitHub Profile
@fabdelgado
fabdelgado / db
Created September 27, 2022 18:53
package mysql
import (
"crypto/tls"
"crypto/x509"
"fmt"
_ "github.com/go-sql-driver/mysql"
"gorm.io/driver/mysql"
"gorm.io/gorm"
"io"
@fabdelgado
fabdelgado / README-drupal-español.md
Last active May 11, 2020 17:03 — forked from Villanuevand/README-español.md
Una plantilla para hacer un buen README.md. Inspirado en el gist de @PurpleBooth => https://gist.github.com/PurpleBooth/109311bb0361f32d87a2

Título del Módulo

En este párrafo debe describir la finalidad del módulo

Primeros pasos 🚀

Escriba aquí las instrucciones que permitirán a otro desarrollador o tester obtener este módulo y ponerlo en funcionamiento en un ambiente local.

Pre-requisitos 📋

@fabdelgado
fabdelgado / mod_pagespeed .htaccess
Last active July 28, 2019 03:35 — forked from solancer/mod_pagespeed .htaccess
mod_pagespeed .htaccess configuration
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
@fabdelgado
fabdelgado / fix_permissions.sh
Created June 19, 2019 02:53 — forked from pwenzel/fix_permissions.sh
change permissions for all files and folders with xargs
# change permissions for all files, skipping dirs
find . -type f | xargs chmod 664
# change permissions for all dirs, skipping files
find . -type d | xargs chmod 775
mainWindow = new BrowserWindow({
x: mainWindowState.x,
y: mainWindowState.y,
width: (kiosk) ? mainWindowState.width : 298,
height:(kiosk) ? mainWindowState.height: 192,
frame: false,
icon: iconPath_32,
resizable: false,
kiosk: kiosk,
disableAutoHideCursor: false,
@fabdelgado
fabdelgado / git-tag-delete-local-and-remote.sh
Created May 13, 2019 13:43 — forked from mobilemind/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
@fabdelgado
fabdelgado / radios_nacionales.txt
Created April 30, 2019 15:23 — forked from pisculichi/radios_nacionales.txt
URLs de radios nacionales de Argentina, para poder escuchar en la terminal con mplayer o vlc
# alias radio='function __radio(){ r=`grep -v "#" radios_nacionales.txt | grep -m 1 -i $1 | cut -d" " -f1`; cvlc $r 2> /dev/null; }; __radio'
# podria utilizarse mplayer en vez de vlc
AMs Nacionales
http://200.68.81.65:8000/am530 Radio Madre 530
http://www.servidorstreaming1.com:9962/; Radio Colonia 550
http://195.154.182.222:25223/live.mp3 Radio Argentina 570
http://playerservices.streamtheworld.com/api/livestream-redirect/CONTINENTAL_SC Continental 590
http://209.95.35.49:7012/stream Rivadavia 630
@fabdelgado
fabdelgado / radios_nacionales.txt
Created April 30, 2019 15:23 — forked from pisculichi/radios_nacionales.txt
URLs de radios nacionales de Argentina, para poder escuchar en la terminal con mplayer o vlc
# alias radio='function __radio(){ r=`grep -v "#" radios_nacionales.txt | grep -m 1 -i $1 | cut -d" " -f1`; cvlc $r 2> /dev/null; }; __radio'
# podria utilizarse mplayer en vez de vlc
AMs Nacionales
http://200.68.81.65:8000/am530 Radio Madre 530
http://www.servidorstreaming1.com:9962/; Radio Colonia 550
http://195.154.182.222:25223/live.mp3 Radio Argentina 570
http://playerservices.streamtheworld.com/api/livestream-redirect/CONTINENTAL_SC Continental 590
http://209.95.35.49:7012/stream Rivadavia 630
{{ menus.menu_links(items, attributes, 0) }}
{% macro menu_links(items, attributes, menu_level) %}
{% import _self as menus %}
{% if items %}
{% if menu_level == 0 %}
<ul class="nav navbar-nav">
{% else %}
<ul class="nav navbar-nav">
{% endif %}
@fabdelgado
fabdelgado / Dockerfile
Created January 24, 2019 20:58 — forked from dtan4/Dockerfile
Minimal Sinatra Application on Docker
FROM ruby:2.2.0
RUN bundle config --global frozen 1
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ADD Gemfile /usr/src/app/
ADD Gemfile.lock /usr/src/app/
RUN bundle install --without test development --system