Skip to content

Instantly share code, notes, and snippets.

View wouerner's full-sized avatar
💙
SouJunior

Wouerner Brandão wouerner

💙
SouJunior
View GitHub Profile
Alguns links para você :
1) o curso fastai (Deep Learning from TOP to BOTTOM) : http://course.fast.ai/
2) o primeiro video : http://course.fast.ai/lessons/lesson1.html
3) a página do grupo aberto de estudo do Deep Learning no forum Fastai : http://forums.fast.ai/t/brasilia-part-1-group/14149
4) se quiser rodar os jupyter notebooks do curso Fastai de graça (ou qualquer jupyter notebook), usem o Google Colab e o serviço Clouderizer. Como ? O passo-a-passo : https://medium.com/@prakash_31206/fastest-way-to-setup-fast-ai-course-notebooks-for-free-using-google-colab-gpu-and-clouderizer-c8a004e1d50d
./app.php app:test ../../../application/modules/proposta/controllers/ManterpropostaincentivofiscalController.php ../../../tests/application/modules/proposta/controllers/ Proposta_ManterpropostaincentivofiscalController ../../../application/modules/proposta/controllers/GenericController.php
SELECT `COLUMN_NAME`
FROM `INFORMATION_SCHEMA`.`COLUMNS`
WHERE `TABLE_SCHEMA`='yourdatabasename'
AND `TABLE_NAME`='yourtablename';
<html>
<?php
for($i = 0 ; $i < 10 ; $i++){
echo $i.'<br/>';
}
echo "Fim";
exit;
?>
</html>
{
"name": "My App",
"description": "My elevator pitch goes here",
"launch_path": "/",
"icons": {
"128": "/img/icon-128.png"
},
"developer": {
"name": "Your name or organization",
"url": "http://your-homepage-here.org"
@wouerner
wouerner / foreach_praticas.php
Last active December 25, 2015 07:19
praticas no foreach.
<?php
//pratica 01
foreach ( $pessoas as $p ){
echo $p;
}
//pratica 02
foreach ( $pessoas as $pessoa ){
@wouerner
wouerner / .vimrc
Last active December 19, 2015 02:18
My .vimrc - Wouerner.eti.br || Br-Coding.org
" be iMproved
set nocompatible
" colorscheme molokai
colorscheme solarized
set background=dark
set spell
set number
set encoding=utf-8
set guifont=Source\ Code\ Pro\ Regular\ 12
<?php
function reducer($total, $elt)
{
return $elt + $total;
}
$arr = array(1, 2, 3, 4, 5);
echo array_reduce($arr, 'reducer', 1);
?>
@wouerner
wouerner / CSS overflow Property.css
Last active December 18, 2015 12:18
CSS overflow Property
div
{
width:150px;
height:150px;
overflow:scroll;
overflow-x: hidden;
}