A documentação do PUPHPet (Vagrant + Puppet + VirtualBox) está disponível e em inglês.
- instale o VirtualBox
- instale o Vagrant
A documentação do PUPHPet (Vagrant + Puppet + VirtualBox) está disponível e em inglês.
| 1. AutoFileName - Você vai utilizar uma imagem/arquivo e não sabe o nome dele e/ou o caminho é muito grande? Este plugin vai te ajudar quando você utilizar o ctrl/cmd + espaço te dizendo o nome das coisas dentro da pasta; | |
| 2. BracketHighlighter - Aplica um highlight no início e no fim de uma tag, e é bastante útil para você saber onde fecha e onde abre determinada tag. Só utilizando pra ver o quanto é útil; | |
| 3. CSSComb - Se você é ‘neurótico’ por organização extrema modefucker e queria que todas as propriedades no seu css estivessem ordenadas, este plugin vai ser o seu irmão. Com ele você pode determinar a ordem de suas declarações css; | |
| 4. DevDocs - Ótimo para estudos! Se você está codando e não se lembra ou tem alguma dúvida para que serve determinada tag seja ela de qual linguagem for, selecione a tag - botão direito nela - search DevDocs e irá abrir no navegador informações sobre a mesma; | |
| 4. Emmet - Provavelmente o mais conhecido de todos, utilizado principalmente no css mas com muita coisa boa a se util |
| <?php | |
| // Saved as TellAll.php | |
| class TellAll | |
| { | |
| private $_userAgent; | |
| public function __construct() | |
| { |
| // While you can edit this file, it's best to put your changes in | |
| // "User/Preferences.sublime-settings", which overrides the settings in here. | |
| // | |
| // Settings may also be placed in file type specific options files, for | |
| // example, in Packages/Python/Python.sublime-settings for python files. | |
| { | |
| // Sets the colors used within the text area | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
| // Note that the font_face and font_size are overriden in the platform |
#Introduction If you're a php developer on ubuntu, there comes the time where you have to install/reinstall your system. I did it already a few times and i decided to write down the steps for a typical web developer stack with php. This is for a developer machine and not for live environment!
I hope it's a help also for you!
#Installation stack
| /** | |
| * inicializa a navegação | |
| * | |
| * @return void | |
| * @author Elton Minetto | |
| * */ | |
| public function _initNavigation() { | |
| /* | |
| * navegacao | |
| */ |
Author: eitikimura Filename: GIT Updated:2011-10-16 21:10:32
Description: Git é um sistema de controle de versões distribuído, desenvolvido por Linus Torvalds e utilizado atualmente para o desenvolvimento do kernel do linux. Deck baseado em anotações pessoais e no Feliwiki: http://www.fml.eti.br/wiki/index.php/Git
sudo apt-get install php5-common php5-mysql php5-xmlrpc php5-cgi php5-curl php5-gd php5-cli php5-fpm php-apc php-pear php5-dev php5-xdebug php5-imap php5-mcrypt php5-sqlite php5 php5-xsl php5-intl
sudo pear channel-update PEAR
sudo pear upgrade PEAR
sudo apt-get install memcached
sudo apt-get install php5-memcache
| jQuery(document).ready(function() { | |
| jQuery('.action-remover').click(function(event) { | |
| if( !confirm('Deseja realmente excluir a foto?') ) | |
| { event.preventDefault(); } | |
| }); | |
| }); |