Dicas JQuery

// Instantaneously hide all divs$( “div” ).hide();// Instantaneously show all divs that have the hidden style class$( “div.hidden” ).show(); O que está acontecendo aqui: a propriedade de exibição CSS é …

Continuar lendo

Scala @ anotação obsoleta

Quando no Scala você deseja descontinuar um método, use o @deprecated( description: String, since_version: String ) tag, exemplo: @deprecated( “use getFoo”, “1.5” ) def getFuu = {…} Outra sugestão: quando …

Continuar lendo

OSX Setup Nginx + MySQL + PHP + Node

Nginx + MySQL via @Reinaldo brew install nginx// auto start on bootln -sfv /usr/local/opt/nginx/*.plist ~/Library/LaunchAgentsbrew install mysqlln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgentsbrew install php55brew install php55-mycryptbrew install php55-memcachebrew install php55-memcachedbrew install php55-phalconbrew …

Continuar lendo