Tenho disponível, 4h do meu lindo dia. Tenho interesse em projetos que utilizem/apliquem os itens abaixo.
- Trabalho em equipe
 - Que use alguma metodoligia ágil.
 - TDD
 - Code Review.
 - PHP/Laravel
 - API
 
| Docker Containers | |
| Create an interactive terminal container with a name, an image, and a default command: | |
| Usage: docker create -it --name=<name> <image> <command> | |
| Example: docker create -it --name=foo ubuntu bash | |
| List all running containers: | 
| foreach($arquivos as $arquivo) | |
| { | |
| if(!in_array($arquivo->getFileName(), $excludeNotDir) && | |
| !in_array($arquivo->getExtension(), $excludeExtension) && | |
| !$arquivo->isDir()) | |
| { | |
| array_push($files, array('arquivo' => $arquivo->getFileName())); | |
| } | |
| } | 
| <?php | |
| function firstLetterIsUpperCase($word){ | |
| if(ctype_upper(substr($word, 0, 1))){ | |
| return true; | |
| } | |
| return false; | |
| } | |
| #!/bin/bash | |
| ###################################################### | |
| ### README ########################################### | |
| ###################################################### | |
| ### | |
| ### One-line server install script for Ubuntu. | |
| ### Installs Nginx + PHP7.1 + MongoDB for PHP driver. | |
| ### | |
| ### Removes previous Apache, PHP, nginx installations. | 
Tenho disponível, 4h do meu lindo dia. Tenho interesse em projetos que utilizem/apliquem os itens abaixo.
| # xdebug | |
| RUN yes | pecl install xdebug \ | |
| && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.remote_autostart=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.remote_connect_back=off" >> /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.remote_handler=dbgp" >> /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.profiler_enable=0" >> /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.profiler_output_dir=/var/www/valordireto" >> /usr/local/etc/php/conf.d/xdebug.ini \ | |
| && echo "xdebug.remote_port=9000" >> /usr/local/etc/php/conf.d/xdebug.ini \ | 
| <?php | |
| date_default_timezone_set('America/Sao_Paulo'); | |
| setlocale(LC_TIME, 'pt_BR', 'portuguese'); | |
| require __DIR__ . '/vendor/autoload.php'; | |
| \Carbon\Carbon::setLocale('pt_BR.UTF8'); | |
| $date = \Carbon\Carbon::now(); | 
I hereby claim:
To claim this, I am signing this object:
| [color] | |
| ui = true | |
| [core] | |
| editor = nano | |
| excludesfile = ~/.gitignore | |
| [alias] | |
| aliases = config --get-regexp alias | |
| a = add | |
| br = branch | |
| ca = commit -v -a | 
| #ADDING | |
| ALTER TABLE table | |
| ADD created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER someFieldYouWant, | |
| ADD updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP AFTER created_at; | |
| #CHANGING | |
| /** | |
| I can't do it with ALTER COLUMN, if anyone knows how the better way to do it, just comment | |
| */ | |
| ALTER TABLE table |