Skip to content

Instantly share code, notes, and snippets.

View tiagones's full-sized avatar

Tiago P Dantas tiagones

View GitHub Profile
@tiagones
tiagones / humans.txt
Created August 8, 2014 02:00
humans.txt from HTML5 ★ BOILERPLATE
# humanstxt.org/
# The humans responsible & technology colophon
# TEAM
<name> -- <role> -- <twitter>
# THANKS
<name>
@tiagones
tiagones / robots.txt
Last active August 29, 2015 14:05
Robots.txt Magento Boilerplate
# Google Image Crawler Setup
User-agent: Googlebot-Image
Disallow: /
Allow: /media/catalog/product/
# Yahoo! Multimedia Crawler Setup
User-agent: yahoo-mmcrawler
Disallow: /
Allow: /media/catalog/product/
@tiagones
tiagones / tinydump.php
Last active August 29, 2015 14:05 — forked from ceckoslab/tinydump
<?php
define('DS', DIRECTORY_SEPARATOR);
function _getExtractSchemaStatement($sqlFileName, $db)
{
$dumpSchema = 'mysqldump' . ' ';
$dumpSchema .= '--no-data' . ' ';
$dumpSchema .= '-u ' . $db['user'] . ' ';
$dumpSchema .= '-p' . $db['pass'] . ' ';
$dumpSchema .= '-h ' . $db['host'] . ' ';
<?xml version="1.0"?>
<layout>
<default>
<!--Root/Default Layouts-->
<reference name="root">
<!--Appending Block-->
<block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>
</reference>
<!--CSS and JS Files-->