-
InfoQ BR
-
Fuja da escravidão antes que ela te alcance - Nesta palestra, Vinícius Teles nos fala a respeito da realidade de muitos trabalhadores que possuem vidas estáveis, porém repletas de frustrações advindas de suas rotinas e carreiras aparentemente seguras. Vinícius trata do empreendedorismo, com dicas para profissionais de tecnologia que buscam atingir não apenas a estabilidade financeira, mas também a plena satisfação profissional e pessoal.
-
Agile Brazil 2012
-
-
Dívida técnica: precisando de crédito? - Dívida técnica é inevitável. Nos projetos de software em que participei observo em média investidores que são ou extremamente conservadores (os perfeccionistas) ou irresponsavelmente agressivos (fãs da gambiarra). Nesta palestra, são apresentadas histórias de projetos reais, com orçamentos reais, para compartilhar técnicas e estrat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 3.3.10deb1 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: localhost | |
-- Generation Time: Jun 29, 2012 at 07:30 PM | |
-- Server version: 5.1.63 | |
-- PHP Version: 5.3.5-1ubuntu7.10 | |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<title></title> | |
<meta charset="utf-8"> | |
<body> | |
<section> | |
<header class="cabecalho"> | |
<div class="cabecalho-limite"> | |
<h1>Logo</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DF_Form_FranqueadoCadastroInicial extends EasyBib_Form { | |
public function init(){ | |
$this->setMethod('POST'); | |
$this->setName('form'); | |
$this->setAttrib('class', 'form-horizontal'); | |
/*demais campos... */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="busca_uf" class="selectBusca" id="busca_uf" > | |
<option value="">---</option> | |
<option value="AC" <?php | |
if ('AC' == $_SESSION['busca']['uf']) { | |
print ' selected '; | |
} | |
?>>AC</option> | |
<option value="AL" <?php | |
if ('AL' == $_SESSION['busca']['uf']) { | |
print ' selected '; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.google.com.br/search?client=ubuntu&channel=fs&q=1548+-+Cannot+load+from+mysql.proc.+The+table+is+probably+corrupted+mysql+5.1+functions&ie=utf-8&oe=utf-8&redir_esc=&ei=EkxtUeCvGa_w0QHxvYGYBQ | |
http://mattiasgeniar.be/2012/06/25/mysql-show-function-status-where-db-name-cannot-load-from-mysql-proc-the-table-is-probably-corrupted/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
$('#dialog').dialog({ | |
autoOpen: false, | |
resizable: false, | |
height:140, | |
modal: true, | |
buttons: { | |
"Sim": function(){ | |
document.corrigirvalorparcela.submit(); | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function rewrite_form_envio_cupula_dos_povos($wp_rewrite) { | |
$new_rules = array( | |
"cupula-dos-povos/form-envio" => 'index.php?meu_template=form_envio_cupula_dos_povos', | |
); | |
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules; | |
} | |
add_action('generate_rewrite_rules', 'rewrite_form_envio_cupula_dos_povos'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://zurb.com/playground/foundation-interchange | |
http://alexdunphy.github.io/refineslide/ |
OlderNewer