Skip to content

Instantly share code, notes, and snippets.

View rezen's full-sized avatar

Andres Hermosilla rezen

View GitHub Profile
@rezen
rezen / cf7.html
Created April 4, 2014 16:20
Contact form 7 text
<div class="col-half">
<div class="input-block">
<label>Subject*</label>
[text* c_subject]
</div>
<div class="input-block">
<label>Company</label>
[text c_company]
</div>
<div class="input-block">
@rezen
rezen / find-dups.sql
Created May 1, 2014 18:59
mysql find duplicates of column value
SELECT email,
COUNT(email) AS NumOccurrences
FROM users
GROUP BY email
HAVING ( COUNT(email) > 1 )
var series = [
function( callback ){
callback( 'bob', 12);
return 1;
},
function ( callback, person, age ) {
console.log( person,age);
callback( 'moew' );
return 12;
@rezen
rezen / backup-mysql.sh
Last active August 29, 2015 14:18
improve mysqldump
#!/bin/sh
# @notes
#
# If you have a moderately sized database ( 2gb dumps)
# make sure to update your mysql conf to allow larger packets
# for dump. Below are some suggested my.cnf settings
#
# If you have a fairly large db, mysqldump is not
# recommended. Instead try something like
@rezen
rezen / install-monit.sh
Last active August 29, 2015 14:19
install-monit.sh
#!/bin/sh
# https://www.digitalocean.com/community/tutorials/lemp-stack-monitoring-with-monit-on-ubuntu-14-04
sudo yum install -y pam-devel openssl-devel
cd /usr/local/src
wget http://mmonit.com/monit/dist/monit-5.11.tar.gz
sudo wget http://mmonit.com/monit/dist/monit-5.11.tar.gz
sudo tar -zxvf monit-5.11.tar.gz
cd monit-5.11
@rezen
rezen / get-numbering.txt
Last active August 29, 2015 14:19
Understanding computer numbering systems
Binary number system
https://www.youtube.com/watch?v=ry1hpm1GXVI
Why binary?
https://www.youtube.com/watch?v=1sWCBgGALXE
8-bits = 1 byte
8-bits (aka 1 bytes) is amount needed for 1 of the 255 asci charactors
2^7 | 2^6|2^5 |2^4 |2^3|2^2|2^1|2^0
128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 (max number = 255)
@rezen
rezen / input-mask.js
Created February 28, 2012 17:54
JS: input[type=File upload mask input[type="file"]!
// File upload mask
$('.upload-masked').each(function(){
var $this = $(this)
, $mask = $('<input type="text" class="upload-mask" value="" />');
$this.wrap('<div class="input-wrap" style="position:relative;"></div>');
$this.css({opacity:0,position:'absolute'});
$this.after('<span class="upload-mask-button">BROWSE</span>');
$this.after($mask);
@rezen
rezen / wp_attachfix.sql
Created March 21, 2012 22:08
Migrating WordPress attachments on new domain with WP in a sub folder
UPDATE `wp_posts` SET guid = REPLACE(guid,'*old_domain*','*new_domain*') WHERE `post_type` = 'attachment'
@rezen
rezen / gist:2654207
Created May 10, 2012 16:15
Email Address regex
^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*(\.[a-z]{2,3})$
@rezen
rezen / gist:3161175
Created July 22, 2012 22:11 — forked from luetkemj/wp-query-ref.php
WP: Query $args
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query
* Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php
*/
$args = array(