Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET
requests.
q
The query string to convert to audio
tl
Translation language, for example, ar
for Arabic, or en-us
for English
ssh root@remoteserver screen -d -m bash /path/to/script |
#!/usr/bin/env bash | |
#http://goo.gl/T2zC01 | |
# Upgrade Base Packages | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
# Install Web Packages | |
sudo apt-get install -y build-essential dkms re2c apache2 php5 php5-dev php-pear php5-xdebug php5-apcu php5-json php5-sqlite \ |
1.Descargamos vagrant. | |
2.Instalamos.. siguiente -> siguiente -> | |
3.Creamos una carpeta. | |
4.vagrant init. | |
5.Añadimos un box, este contiene la imagen de la maquina virtual. | |
Podemos usar por ejemplo: |
brew install tmux | |
tmux new -s development | |
Paneles | |
Ctrl-b % | |
Ctrl-b " | |
-------WWOOOOOWWWW---------- | |
Ctrl-b q (Nos salen unos numeros que debemos apretar para cambiar de panel de forma sencilla) | |
Ctrl-b x desechar paneles... |
http://es.wikipedia.org/wiki/M%C3%ADkonos |
echo "127.0.0.1 $1" >> "/etc/hosts" | |
vhost="<VirtualHost *:80> | |
ServerName $1 | |
DocumentRoot /home/vagrant/virtuals/$2 | |
<Directory \"/home/vagrant/virtuals/$2\"> | |
Order allow,deny | |
Allow from all | |
Require all granted | |
AllowOverride All |
Base URL: http://translate.google.com/translate_tts
It converts written words into audio. It accepts GET
requests.
q
The query string to convert to audio
tl
Translation language, for example, ar
for Arabic, or en-us
for English
mysqldump --opt --user="USERNAME" --password="PASSWORD" my-db > app/tests/_data/dump.sql |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="vendor/autoload.php" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" |
#Php | |
export PATH=/usr/local/php5/bin:$PATH | |
export PATH=$PATH:/Users/santiblanco/composer-packages/vendor/bin | |
#Composer | |
alias ci="composer install" | |
alias cu="composer update" | |
alias cc="wget http://goo.gl/PiOzT3 && mv PiOzT3 composer.json && composer install" | |
alias cdu="composer dump-autoload -o" |