├── .idea ├── .gitignore ├── Computer-Science-Study.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── header-iaurg.png └── resumos ├── README.md ├── akita-videos ├── aprendendo-sobre-computadores-com-mario-hardcore.md ├── arvores-o-comeco-de-tudo.md ├── covid-matou-minha-startup.md ├── discutindo-sobre-banco-de-dados.md ├── entendendo-git.md ├── guia-hardcore-introducao-a-computacao.md ├── hello-world-como-nunca-entendendo-c.md ├── introducao-a-videogames-e-emuladores.md ├── mm-m-melhor-livro-de-software.md ├── o-computador-de-turing-e-von-neumann.md ├── o-dilema-das-redes-e-como-voce-e-manipulado.md ├── o-guia-definitivo-de-aprendendo-a-aprender.md ├── o-que-vem-depois-covid-19.md ├── o-que-vem-depois-do-hello-world.md ├── qual-a-diferenca-entre-binarios-e-textos.md ├── rant-programacao-nao-e-facil.md ├── rant-realidade-software-livre.md ├── selo-de-seguranca-e-marketing.md └── so-precisamos-de-640-kb-de-memoria.md ├── cursos └── cs50 │ ├── all-challenges │ ├── final-project │ │ ├── LICENSE │ │ ├── README.md │ │ ├── global.css │ │ ├── images │ │ │ ├── cryfo128.png │ │ │ ├── cryfo16.png │ │ │ ├── cryfo32.png │ │ │ ├── cryfo48.png │ │ │ └── screenshot.png │ │ ├── manifest.json │ │ ├── options.css │ │ ├── options.html │ │ ├── options.js │ │ ├── popup.css │ │ ├── popup.html │ │ └── popup.js │ ├── labs │ │ ├── birthdays │ │ │ ├── application.py │ │ │ ├── birthdays.db │ │ │ ├── static │ │ │ │ └── styles.css │ │ │ └── templates │ │ │ │ └── index.html │ │ ├── ethics │ │ │ └── Facebook and Fake News.pdf │ │ ├── inheritance │ │ │ └── inheterance.c │ │ ├── songs │ │ │ ├── 1.sql │ │ │ ├── 2.sql │ │ │ ├── 3.sql │ │ │ ├── 4.sql │ │ │ ├── 5.sql │ │ │ ├── 6.sql │ │ │ ├── 7.sql │ │ │ └── 8.sql │ │ ├── trivia │ │ │ ├── index.html │ │ │ └── styles.css │ │ └── worldcup │ │ │ └── tournament.py │ └── problems │ │ ├── credit │ │ └── credit.c │ │ ├── dna │ │ └── dna.py │ │ ├── fiftyville │ │ ├── answers.txt │ │ └── log.sql │ │ ├── filter │ │ └── filter-less.c │ │ ├── finance │ │ ├── application.py │ │ ├── finance.db │ │ ├── helpers.py │ │ ├── requirements.txt │ │ ├── static │ │ │ ├── favicon.ico │ │ │ └── styles.css │ │ └── templates │ │ │ ├── apology.html │ │ │ ├── buy.html │ │ │ ├── history.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── login.html │ │ │ ├── quote.html │ │ │ ├── quoted.html │ │ │ ├── register.html │ │ │ └── sell.html │ │ ├── hello │ │ └── hello.c │ │ ├── homepage │ │ ├── assets │ │ │ └── video.mp4 │ │ ├── currency.html │ │ ├── exchanges.html │ │ ├── index.html │ │ ├── satoshi.html │ │ ├── scripts.js │ │ └── styles.css │ │ ├── mario │ │ └── mario-more.c │ │ ├── movies │ │ ├── 1.sql │ │ ├── 10.sql │ │ ├── 11.sql │ │ ├── 12.sql │ │ ├── 13.sql │ │ ├── 2.sql │ │ ├── 3.sql │ │ ├── 4.sql │ │ ├── 5.sql │ │ ├── 6.sql │ │ ├── 7.sql │ │ ├── 8.sql │ │ └── 9.sql │ │ ├── plurality │ │ └── plurality.c │ │ ├── readability │ │ └── readability.c │ │ ├── recover │ │ └── recover.c │ │ ├── runoff │ │ └── runoff.c │ │ ├── scratch │ │ └── Bitcoin-Scratcher.sb3 │ │ ├── sentimental │ │ ├── credit.py │ │ ├── hello.py │ │ ├── mario-more.py │ │ └── readability.py │ │ ├── speller │ │ └── speller.c │ │ └── substitution │ │ └── substitution.c │ ├── artificial-inteligence.md │ ├── final.md │ ├── lecture0.md │ ├── lecture1.md │ ├── lecture10.md │ ├── lecture2.md │ ├── lecture3.md │ ├── lecture4.md │ ├── lecture5.md │ ├── lecture6.md │ ├── lecture7.md │ ├── lecture8.md │ ├── lecture9.md │ └── security.md ├── livros ├── algoritmos-teoria-e-pratica │ └── resumo.md ├── clean-code │ └── resumo.md ├── getting-real │ ├── book │ │ └── Caindo-na-Real.pdf │ └── resumo-getting-real.md ├── programador-apaixonado │ ├── images │ │ ├── Schematic-representation-of-technology-adoption-curves-and-adopter-groups-with-defining.png │ │ ├── mapa-tecnologias.png │ │ ├── oferta_demanda.png │ │ └── trends-de-2019.jpg │ └── resumo-programador-apaixonado.md ├── the-mythical-man-month │ └── resumo.md ├── the-pragmatic-programmer │ └── resumo-the-pragmatic-programmer.md └── web-hacking-101 │ └── resumo.md └── posts ├── como-o-cerebro-aprende-pierluigi.md ├── good-code-checklist.md └── spectum-of-abstraction.md /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/Computer-Science-Study.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/.idea/Computer-Science-Study.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/README.md -------------------------------------------------------------------------------- /header-iaurg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/header-iaurg.png -------------------------------------------------------------------------------- /resumos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/README.md -------------------------------------------------------------------------------- /resumos/akita-videos/aprendendo-sobre-computadores-com-mario-hardcore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/aprendendo-sobre-computadores-com-mario-hardcore.md -------------------------------------------------------------------------------- /resumos/akita-videos/arvores-o-comeco-de-tudo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/arvores-o-comeco-de-tudo.md -------------------------------------------------------------------------------- /resumos/akita-videos/covid-matou-minha-startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/covid-matou-minha-startup.md -------------------------------------------------------------------------------- /resumos/akita-videos/discutindo-sobre-banco-de-dados.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/discutindo-sobre-banco-de-dados.md -------------------------------------------------------------------------------- /resumos/akita-videos/entendendo-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/entendendo-git.md -------------------------------------------------------------------------------- /resumos/akita-videos/guia-hardcore-introducao-a-computacao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/guia-hardcore-introducao-a-computacao.md -------------------------------------------------------------------------------- /resumos/akita-videos/hello-world-como-nunca-entendendo-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/hello-world-como-nunca-entendendo-c.md -------------------------------------------------------------------------------- /resumos/akita-videos/introducao-a-videogames-e-emuladores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/introducao-a-videogames-e-emuladores.md -------------------------------------------------------------------------------- /resumos/akita-videos/mm-m-melhor-livro-de-software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/mm-m-melhor-livro-de-software.md -------------------------------------------------------------------------------- /resumos/akita-videos/o-computador-de-turing-e-von-neumann.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/o-computador-de-turing-e-von-neumann.md -------------------------------------------------------------------------------- /resumos/akita-videos/o-dilema-das-redes-e-como-voce-e-manipulado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/o-dilema-das-redes-e-como-voce-e-manipulado.md -------------------------------------------------------------------------------- /resumos/akita-videos/o-guia-definitivo-de-aprendendo-a-aprender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/o-guia-definitivo-de-aprendendo-a-aprender.md -------------------------------------------------------------------------------- /resumos/akita-videos/o-que-vem-depois-covid-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/o-que-vem-depois-covid-19.md -------------------------------------------------------------------------------- /resumos/akita-videos/o-que-vem-depois-do-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/o-que-vem-depois-do-hello-world.md -------------------------------------------------------------------------------- /resumos/akita-videos/qual-a-diferenca-entre-binarios-e-textos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/qual-a-diferenca-entre-binarios-e-textos.md -------------------------------------------------------------------------------- /resumos/akita-videos/rant-programacao-nao-e-facil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/rant-programacao-nao-e-facil.md -------------------------------------------------------------------------------- /resumos/akita-videos/rant-realidade-software-livre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/rant-realidade-software-livre.md -------------------------------------------------------------------------------- /resumos/akita-videos/selo-de-seguranca-e-marketing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/selo-de-seguranca-e-marketing.md -------------------------------------------------------------------------------- /resumos/akita-videos/so-precisamos-de-640-kb-de-memoria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/akita-videos/so-precisamos-de-640-kb-de-memoria.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/LICENSE -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/README.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/global.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/images/cryfo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/images/cryfo128.png -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/images/cryfo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/images/cryfo16.png -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/images/cryfo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/images/cryfo32.png -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/images/cryfo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/images/cryfo48.png -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/images/screenshot.png -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/manifest.json -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/options.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/options.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/options.js -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/popup.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/popup.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/final-project/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/final-project/popup.js -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/birthdays/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/birthdays/application.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/birthdays/birthdays.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/birthdays/birthdays.db -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/birthdays/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/birthdays/static/styles.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/birthdays/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/birthdays/templates/index.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/ethics/Facebook and Fake News.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/ethics/Facebook and Fake News.pdf -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/inheritance/inheterance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/inheritance/inheterance.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/1.sql: -------------------------------------------------------------------------------- 1 | SELECT name FROM songs; -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/2.sql: -------------------------------------------------------------------------------- 1 | SELECT name FROM songs ORDER BY tempo ASC; -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/3.sql: -------------------------------------------------------------------------------- 1 | SELECT name FROM songs ORDER BY duration_ms DESC LIMIT 5; -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/songs/4.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/5.sql: -------------------------------------------------------------------------------- 1 | SELECT AVG(energy) FROM songs; -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/songs/6.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/songs/7.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/songs/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/songs/8.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/trivia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/trivia/index.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/trivia/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/trivia/styles.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/labs/worldcup/tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/labs/worldcup/tournament.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/credit/credit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/credit/credit.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/dna/dna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/dna/dna.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/fiftyville/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/fiftyville/answers.txt -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/fiftyville/log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/fiftyville/log.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/filter/filter-less.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/filter/filter-less.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/application.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/finance.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/finance.db -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/helpers.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/requirements.txt -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/static/favicon.ico -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/static/styles.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/apology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/apology.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/buy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/buy.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/history.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/index.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/layout.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/login.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/quote.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/quoted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/quoted.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/register.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/finance/templates/sell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/finance/templates/sell.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/hello/hello.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/assets/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/assets/video.mp4 -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/currency.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/exchanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/exchanges.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/index.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/satoshi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/satoshi.html -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/scripts.js -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/homepage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/homepage/styles.css -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/mario/mario-more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/mario/mario-more.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/1.sql: -------------------------------------------------------------------------------- 1 | SELECT title FROM movies WHERE year = 2008; -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/10.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/11.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/12.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/13.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/2.sql: -------------------------------------------------------------------------------- 1 | SELECT birth FROM people WHERE name = "Emma Stone"; -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/3.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/4.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/5.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/6.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/7.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/8.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/movies/9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/movies/9.sql -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/plurality/plurality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/plurality/plurality.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/readability/readability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/readability/readability.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/recover/recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/recover/recover.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/runoff/runoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/runoff/runoff.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/scratch/Bitcoin-Scratcher.sb3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/scratch/Bitcoin-Scratcher.sb3 -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/sentimental/credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/sentimental/credit.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/sentimental/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/sentimental/hello.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/sentimental/mario-more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/sentimental/mario-more.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/sentimental/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/sentimental/readability.py -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/speller/speller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/speller/speller.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/all-challenges/problems/substitution/substitution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/all-challenges/problems/substitution/substitution.c -------------------------------------------------------------------------------- /resumos/cursos/cs50/artificial-inteligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/artificial-inteligence.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/final.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture0.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture1.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture10.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture2.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture3.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture4.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture5.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture6.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture7.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture8.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/lecture9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/lecture9.md -------------------------------------------------------------------------------- /resumos/cursos/cs50/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/cursos/cs50/security.md -------------------------------------------------------------------------------- /resumos/livros/algoritmos-teoria-e-pratica/resumo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/algoritmos-teoria-e-pratica/resumo.md -------------------------------------------------------------------------------- /resumos/livros/clean-code/resumo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/clean-code/resumo.md -------------------------------------------------------------------------------- /resumos/livros/getting-real/book/Caindo-na-Real.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/getting-real/book/Caindo-na-Real.pdf -------------------------------------------------------------------------------- /resumos/livros/getting-real/resumo-getting-real.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/getting-real/resumo-getting-real.md -------------------------------------------------------------------------------- /resumos/livros/programador-apaixonado/images/Schematic-representation-of-technology-adoption-curves-and-adopter-groups-with-defining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/programador-apaixonado/images/Schematic-representation-of-technology-adoption-curves-and-adopter-groups-with-defining.png -------------------------------------------------------------------------------- /resumos/livros/programador-apaixonado/images/mapa-tecnologias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/programador-apaixonado/images/mapa-tecnologias.png -------------------------------------------------------------------------------- /resumos/livros/programador-apaixonado/images/oferta_demanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/programador-apaixonado/images/oferta_demanda.png -------------------------------------------------------------------------------- /resumos/livros/programador-apaixonado/images/trends-de-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/programador-apaixonado/images/trends-de-2019.jpg -------------------------------------------------------------------------------- /resumos/livros/programador-apaixonado/resumo-programador-apaixonado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/programador-apaixonado/resumo-programador-apaixonado.md -------------------------------------------------------------------------------- /resumos/livros/the-mythical-man-month/resumo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/the-mythical-man-month/resumo.md -------------------------------------------------------------------------------- /resumos/livros/the-pragmatic-programmer/resumo-the-pragmatic-programmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/the-pragmatic-programmer/resumo-the-pragmatic-programmer.md -------------------------------------------------------------------------------- /resumos/livros/web-hacking-101/resumo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/livros/web-hacking-101/resumo.md -------------------------------------------------------------------------------- /resumos/posts/como-o-cerebro-aprende-pierluigi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/posts/como-o-cerebro-aprende-pierluigi.md -------------------------------------------------------------------------------- /resumos/posts/good-code-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/posts/good-code-checklist.md -------------------------------------------------------------------------------- /resumos/posts/spectum-of-abstraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iaurg/Computer-Science-Study/HEAD/resumos/posts/spectum-of-abstraction.md --------------------------------------------------------------------------------