- Cursando técnico ou faculdade de computação;
- Bom raciocínio lógico
- Vontade de aprender sobre negócios aplicados a TI
- Java, C# ou PHP
- Javascript(básico)
| <?php echo $this->Form->input('Phone.number', array('name'=> 'data[Phone][User][]', 'label' => false, 'div' => false, 'type' => 'checkbox', 'value' => $key, 'hiddenField' => false)) ?> |
| <?php | |
| $arquivo = file('file.txt'); // arquivo em ISO-8859-1 | |
| foreach ($arquivo as $linha) { | |
| $dados_linha = explode(';', $linha); | |
| echo '<pre>' . print_r($dados_linha) . '</pre>'; | |
| } | |
| /** |
| SELECT p.*, | |
| pm1.meta_value AS lat, | |
| pm2.meta_value AS lgn | |
| FROM wp_posts p LEFT JOIN wp_postmeta pm1 ON ( | |
| pm1.post_id = p.ID AND | |
| pm1.meta_key = 'geo_latitude' | |
| ) LEFT JOIN wp_postmeta pm2 ON ( | |
| pm2.post_id = p.ID AND | |
| pm2.meta_key = 'geo_longitude' | |
| ) |
| class Forum extends DataMapper{ | |
| public $has_many = array( | |
| 'filter' => array( | |
| 'join_table' => 'filter_forums' | |
| ) | |
| ); | |
| } |
| SELECT * FROM partidas LEFT JOIN palpites ON partidas.id=palpites.id_partida WHERE palpites.id_user = 2 and partidas.id_cartela = 45 |
| <script type='text/javascript' src="js/scrollingCarousel.js"></script> | |
| <link rel="stylesheet" type="text/css" href="css/home.css" /> | |
| <div class="container"> | |
| <script type='text/javascript'> | |
| $(function() { | |
| /* CALCULA O COMPRIMENTO DO CARROSEL ANTES DO START */ | |
| var carousel = $('#carousel'); | |
| $('.carousel-demo').scrollingCarousel({ |
| <div class="row-fluid"> | |
| <div id="carousel-maior" class="carousel-demo" style="padding-left: 0px; padding-right: 0px; height: 65px; overflow: hidden; position: relative;"> | |
| <ul> | |
| <li class="contentBox thumbnail"><img src="http://placehold.it/370x370" alt="" /> | |
| <div class="caption"><!-- Hover content --> | |
| <div class="row-fluid"> | |
| <div class="inner-caption span7"> | |
| <h4 class="span12">Imperdível</h4> | |
| <p class="preco span4 offset4">De R$ 200,00 por <span class="desconto">89,00</span> <a class="span2" href="outlet_product_detail.php">+detalhes</a> <a class="btn btn-warning checkout" href="outlet_checkout.php">Comprar</a></p> | |
| </div> |
| /*@font-face { | |
| font-family: "Uni Sans Regular"; | |
| src: url('../fonts/UniSansRegular.otf'); | |
| font-weight: normal; | |
| font-style: normal; | |
| } | |
| @font-face { | |
| font-family: "Uni Sans Regular"; | |
| src: url('../fonts/UniSansRegular.eot'); | |
| src: local('☺'), |
| #include <Servo.h> | |
| Servo esc1; | |
| Servo esc2; | |
| Servo esc3; | |
| Servo esc4; | |
| int speedvalue; | |
| int arm = 1000; | |
| int steady = 300; |