25 de abril de 2014, BanTec, São Paulo, Brasil
- Cloud computing
- PaaS - Platform as a Service
- Red Hat - "openSHIFT"
- "The Twelve-Factor App" - a metodology
-- MySQL Script generated by MySQL Workbench | |
-- 04/26/14 18:48:20 | |
-- Model: New Model Version: 1.0 | |
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; | |
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; | |
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; | |
-- ----------------------------------------------------- | |
-- Schema conselheiro_educacional | |
-- ----------------------------------------------------- |
Para se inscrever:
# Create ssh key [public/private] (e.g. heroku_apps and heroku_apps.pub) | |
ssh-keygen -t rsa | |
# Adds private key identities to the authentication agent | |
ssh-add ~/.ssh/heroku_apps | |
# "-l" - lists fingerprints of all identities currently represented by the agent. | |
ssh-add -l | |
heroku keys:add |
grep -n '69993' ALUNO.txt | head -n 10 | sed 's/ */\ /g' | sed -e 's/\s\+/\n/g' |
magnet:?xt=urn:btih:7c211897cb94c55bbe67432c1b9c613aae7abc09&dn=Corel+Draw+X7+%28x86+x64+bits%29&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&tr=udp%3A%2F%2Ftracker.istole.it%3A6969&tr=udp%3A%2F%2Ftracker.ccc.de%3A80&tr=udp%3A%2F%2Fopen.demonii.com%3A1337 | |
https://copy.com?r=1rAYFq |
Dia 06 de abril de 2014 (domingo) realizamos a confraternização que marcou o início oficial das atividades nas oficinas e cursos de violão, break dance, capoeira e apoio educacional para este ano.
O evento contou com a maioria dos membros da Iluminarte (diretoria, "oficineiros" e equipe consultora), comunidade, Programa Escola da Família, professor Edmauro e visitantes.
diskpart | |
list disk | |
select disk SEU_DISCO | |
create partition primary | |
active | |
format fs=ntfs quick | |
assign | |
exit | |
:: Copiar arquivos da ISO para o USB stick e executar: |
find . -name "*.extension" -type f -print0 | xargs -0 -n1 -I '{}' cp '{}' FOLDER/ |