Skip to content

Instantly share code, notes, and snippets.

View arcanoix's full-sized avatar
:octocat:
Developer Code Now Work

Gustavo Herrera arcanoix

:octocat:
Developer Code Now Work
View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active April 5, 2026 09:12
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 馃槃 :smile: 馃槅 :laughing:
馃槉 :blush: 馃槂 :smiley: 鈽猴笍 :relaxed:
馃槒 :smirk: 馃槏 :heart_eyes: 馃槝 :kissing_heart:
馃槡 :kissing_closed_eyes: 馃槼 :flushed: 馃槍 :relieved:
馃槅 :satisfied: 馃榿 :grin: 馃槈 :wink:
馃槣 :stuck_out_tongue_winking_eye: 馃槤 :stuck_out_tongue_closed_eyes: 馃榾 :grinning:
馃槜 :kissing: 馃槞 :kissing_smiling_eyes: 馃槢 :stuck_out_tongue:
@msurguy
msurguy / Ajax-Instructions.md
Created April 4, 2014 22:52
Morris bar charts with AJAX (Laravel)

Did I hear you wanted AJAX charts instead of hard coded? You got it.

Follow this guide to integrate bar chart reports into your Laravel application with AJAX. Reports like the following come with this guide:

  • Total number of Orders by day
  • Total number of Users subscribed by day
  • etc

The library used for the charts is: http://www.oesmith.co.uk/morris.js/

@tleish
tleish / mysql_backup.sh
Last active April 1, 2026 15:43
Bash Script to backup all MySQL databases
#!/bin/bash
#==============================================================================
#TITLE: mysql_backup.sh
#DESCRIPTION: script for automating the daily mysql backups on development computer
#AUTHOR: tleish
#DATE: 2013-12-20
#VERSION: 0.4
#USAGE: ./mysql_backup.sh
#CRON:
# example cron for daily db backup @ 9:15 am
@addyosmani
addyosmani / README.md
Last active March 30, 2026 03:56 — forked from 140bytes/LICENSE.txt
108 byte CSS Layout Debugger

CSS Layout Debugger

A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.

One-line version to paste in your DevTools

Use $$ if your browser aliases it:

~ 108 byte version

@ben-albon
ben-albon / php5.6-pgsql.Dockerfile
Last active February 12, 2026 14:24
Docker PHP Image with PostgreSQL Driver
FROM php:5.6-apache
RUN apt-get update && apt-get install -y libpq-dev && docker-php-ext-install pdo pdo_pgsql
COPY src/ /var/www/html
@BCasal
BCasal / Colaborar Proyecto GitHub.markdown
Last active October 5, 2025 20:08
Pasos a seguir para colaborar en un proyecto de GitHub

C贸mo colaborar en un proyecto en GitHub

  • Fork del repositorio
  • Clonar el repositorio
  • Actualizar la rama master
  • Crear una rama
  • Hacer los cambios
  • Hacer un Pull Request

Fork del repositorio

@poszlo
poszlo / Send Form (HTML+PHP+Sweet Alert).md
Created October 27, 2015 08:56
Send Form (HTML+PHP+Sweet Alert)
@gokulkrishh
gokulkrishh / media-query.css
Last active March 26, 2026 11:33
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@shameersn
shameersn / gist:0197352f3b0daf0666ef
Created November 5, 2015 07:03
jquery how to get data attribute value of selected option
<select>
<option data-id="1">one</option>
<option data-id="2">two</option>
<option data-id="3">three</option>
</select>
You need to find the selected option:
$(this).find(':selected').data('id')
or
@danielnunez
danielnunez / gist:0dc5f8e58e5dc5c4b040
Created December 10, 2015 19:22
Largo m谩ximo de VARCHAR en MySQL
Los valores en las columnas VARCHAR cadenas de longitud variable.
La longitud puede ser especificado como un valor de 0 a 255 antes
de MySQL 5.0.3, y de 0 a 65.535 en 5.0.3 y versiones posteriores.
El efectivo m谩ximo de la longitud de un VARCHAR en MySQL 5.0.3 y
luego est谩 sujeta a que el tama帽o m谩ximo de fila (65.535 bytes,
el cual es compartido entre todas las columnas) y el conjunto de
caracteres utilizado.
Uso TEXT tipos.
Los cuatro tipos de TEXTO son TINYTEXT, TEXT, MEDIUMTEXT, y LONGTEXT.