Skip to content

Instantly share code, notes, and snippets.

View leobaiano's full-sized avatar

Leo Baiano leobaiano

  • UX Agency
  • São Paulo, SP - Brasil
View GitHub Profile
@leobaiano
leobaiano / mamp-sql-dump-export.sh
Created November 27, 2018 02:23 — forked from oliveratgithub/mamp-sql-dump-export.sh
MAMP MySQL dump export using Terminal.app in macOS
$ cd /Applications/MAMP/Library/bin/
$ ./mysqldump --host=localhost -uroot -proot source_database > ~/Desktop/database_name-dump.sql
@leobaiano
leobaiano / page-palestras
Created January 11, 2016 18:28 — forked from walterjaworski/page-palestras
Checkboxes com palestras e origem selecionada automaticamente
<fieldset>
<legend>Todas as palestras</legend>
<?php // WP_Query arguments
$args = array (
'post_type' => array( 'palestra' ),
);
// The Query
@leobaiano
leobaiano / 0_reuse_code.js
Last active August 29, 2015 14:25
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console