Skip to content

Instantly share code, notes, and snippets.

View daniel-esparragoza's full-sized avatar

Daniel Esparragoza daniel-esparragoza

View GitHub Profile
@jesuscmd
jesuscmd / gist:5630694
Last active December 17, 2015 15:19
Instalar comandos para bajar todo un sitio web
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install wget
wget --random-wait -r -p -e robots=off -U mozilla http://themes.alessioatzeni.com/html/anubis/index.html
en caso de bloqueo poner un chrome en lugar de mozilla
@ain
ain / log.php
Created February 23, 2012 19:47
tail functionality in PHP
<?php
// full path to text file
define("TEXT_FILE", "/home/www/default-error.log");
// number of lines to read from the end of file
define("LINES_COUNT", 10);
function read_file($file, $lines) {
//global $fsize;