├── _config.yml ├── .travis.yml ├── free-podcasts-screencasts-es.md ├── free-programming-books-bl.md ├── free-programming-books-en.md ├── free-podcasts-screencasts-cs.md ├── .editorconfig ├── free-podcasts-screencasts-se.md ├── free-programming-interactive-tutorials-ru.md ├── free-courses-bg.md ├── free-programming-books-nl.md ├── LICENSE ├── free-programming-books-sk.md ├── .github └── PULL_REQUEST_TEMPLATE.md ├── free-programming-books-mm.md ├── free-courses-de.md ├── free-programming-books-se.md ├── free-courses-fi.md ├── free-programming-books-ro.md ├── free-programming-books-az.md ├── free-programming-books-bg.md ├── free-programming-books-fi.md ├── free-programming-books-pt_PT.md ├── HOWTO.md ├── free-programming-books-gr.md ├── free-programming-books-ua.md ├── free-programming-books-fa_IR.md ├── free-programming-books-id.md ├── free-courses-ru.md ├── CODE_OF_CONDUCT.md ├── free-programming-books-ar.md ├── free-programming-playgrounds.md ├── free-podcasts-screencasts-ru.md ├── problem-sets-competitive-programming.md ├── free-courses-pt_BR.md ├── free-programming-books-ko.md ├── free-podcasts-screencasts-pt_BR.md ├── free-programming-books-tr.md ├── free-courses-pl.md ├── README.md ├── free-programming-books-cs.md ├── CONTRIBUTING-zh.md ├── free-programming-books-hu.md ├── free-programming-interactive-tutorials-en.md ├── free-programming-books-pl.md ├── CONTRIBUTING.md ├── free-courses-it.md ├── free-programming-books-de.md ├── free-courses-vi.md ├── free-programming-books-fr.md ├── free-programming-books-it.md ├── free-programming-books-pt_BR.md ├── free-podcasts-screencasts-en.md ├── free-courses-es.md └── free-programming-books-es.md /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal 2 | plugins: 3 | - jemoji 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | node_js: 4 | - 6 5 | before_script: 6 | - npm install -g free-programming-books-lint 7 | script: fpb-lint . 8 | -------------------------------------------------------------------------------- /free-podcasts-screencasts-es.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Frontend](#frontend) 4 | 5 | 6 | ### Frontend 7 | 8 | * [WeCodeSign Podcast](http://wecodesignpodcast.com) (podcast) 9 | -------------------------------------------------------------------------------- /free-programming-books-bl.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C](#c) 4 | 5 | 6 | ### C 7 | 8 | * [Computer Programming](http://cpbook.subeen.com/p/blog-page.html) - Tamim Shahriar Subeen 9 | 10 | -------------------------------------------------------------------------------- /free-programming-books-en.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [All](#all) 4 | 5 | 6 | ### All 7 | 8 | * [English](/free-programming-books.md) (The list of books in English is here for historical reasons.) 9 | -------------------------------------------------------------------------------- /free-podcasts-screencasts-cs.md: -------------------------------------------------------------------------------- 1 | ### Podcasty 2 | 3 | * [Brus kódu](http://bruskodu.cz) - pro frontend vývojáře 4 | * [CZpodcast](https://soundcloud.com/czpodcast-1) 5 | * [DevMinutes](http://devminutes.cz) 6 | * [Kafemlejnek.TV](https://kafemlejnek.tv) 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /free-podcasts-screencasts-se.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Language Agnostic](#language-agnostic) 4 | 5 | 6 | ### Language Agnostic 7 | 8 | * [Kodsnack](http://kodsnack.se) (podcast) 9 | * [Still in beta](http://stillinbeta.se) (podcast) 10 | * [Under utveckling](https://underutveckling.libsyn.com) (podcast) 11 | * [Väg 74](https://www.agical.se/pod) (podcast) 12 | -------------------------------------------------------------------------------- /free-programming-interactive-tutorials-ru.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Git](#git) 4 | * [Веб-разработка](#Веб-разработка) 5 | 6 | 7 | ### Git 8 | 9 | * [Интерактивное обучение работе с git](https://githowto.com/ru) 10 | 11 | 12 | ### Веб-разработка 13 | 14 | * [Open source воркшопы](https://nodeschool.io/ru) 15 | * [Учитесь веб-разработке бесплатно!](http://codenamecrud.ru) 16 | -------------------------------------------------------------------------------- /free-courses-bg.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Android](#android) 4 | * [PHP](#php) 5 | 6 | 7 | ### Android 8 | 9 | * [Въведение в Андроид](https://www.youtube.com/playlist?list=PLjsqymUqgpSTXtlngZCXRHEp8-FmDHHfL) - Иван Ванков 10 | 11 | 12 | ### PHP 13 | 14 | * [Обектно ориентирано програмиране с PHP](https://www.youtube.com/playlist?list=PL1zMmEDXa_Z8uHtKAl-zSrBFDRNq8JDFG) - Иван Ванков 15 | -------------------------------------------------------------------------------- /free-programming-books-nl.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Python](#python) 4 | * [Scratch](#scratch) 5 | 6 | 7 | ### Python 8 | 9 | * [De Programmeursleerling: Leren coderen met Python 3](http://www.spronck.net/pythonbook/dutchindex.xhtml) - Pieter Spronck (PDF) (3.x) 10 | 11 | 12 | ### Scratch 13 | 14 | * [Creatief Computergebruik](http://scratched.gse.harvard.edu/resources/creatief-computergebruik) 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This work, "free-programming-books", is licensed under the 2 | Creative Commons Attribution 4.0 International License. To view a copy of 3 | this license, visit https://creativecommons.org/licenses/by/4.0/ or send 4 | a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. 5 | 6 | It is attributed to Victor Felder and the Free Ebook Foundation. 7 | https://github.com/EbookFoundation/free-programming-books 8 | -------------------------------------------------------------------------------- /free-programming-books-sk.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Language Agnostic](#language-agnostic) 4 | * [Právo](#pravo) 5 | * [Python](#python) 6 | * [Django](#django) 7 | 8 | 9 | ### Language Agnostic 10 | 11 | #### Právo 12 | 13 | * [Zodpovednosť na internete](https://knihy.nic.cz) - Zodpovednosť na internete (PDF) 14 | 15 | 16 | ### Python 17 | 18 | #### Django 19 | 20 | * [Príručka k Django Girls](https://tutorial.djangogirls.org/sk/) (1.11) (HTML) (:construction: *in process*) 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## What does this PR do? 2 | Add Resource(s) | Remove Resource(s) | Add info | Improve Repo 3 | 4 | ## For resources 5 | ### Description 6 | 7 | ### Why is this valuable (or not) 8 | 9 | ### How do we know it's really free? 10 | 11 | ### For book lists, is it a book? 12 | 13 | ### Checklist: 14 | - [ ] Not a duplicate 15 | - [ ] Included author(s) if appropriate 16 | - [ ] Lists are in alphabetical order 17 | - [ ] Needed indications added (PDF, access notes, under construction) 18 | -------------------------------------------------------------------------------- /free-programming-books-mm.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Linux](#linux) 4 | * [Meta Lists](#meta-lists) 5 | * [Web Development](#web-development) 6 | 7 | 8 | ### Meta-Lists 9 | 10 | * [Saturngod's Books](http://books.saturngod.net) 11 | 12 | 13 | ### Linux 14 | 15 | * [Ubuntu Linux for You](http://eimaung.com/ubuntu-for-you) - Ei Maung 16 | 17 | 18 | ### Web Development 19 | 20 | * [Professional Web Developer](http://eimaung.com/professional-web-developer) - Ei Maung 21 | * [Rockstar Developer](http://eimaung.com/rockstar-developer) - Ei Maung 22 | -------------------------------------------------------------------------------- /free-courses-de.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Python](#python) 4 | 5 | 6 | ### Python 7 | 8 | * [Programmieren lernen mit Python](https://www.youtube.com/playlist?list=PLL1BYAeNY0gzHheN7kCLEhPDegdHrAyDh) 9 | * [Programmieren Lernen: Python Tutorial](https://www.youtube.com/playlist?list=PL_tdPUem3eE_k40i65IdRPWrAZxoHcN4o) 10 | * [Python-Kurs (Python 2)](https://www.python-kurs.eu/kurs.php) 11 | * [Python-Kurs (Python 3)](https://www.python-kurs.eu/python3_kurs.php) 12 | * [Python Tutorials Deutsch](https://www.youtube.com/playlist?list=PLNmsVeXQZj7q0ao69AIogD94oBgp3E9Zs) 13 | -------------------------------------------------------------------------------- /free-programming-books-se.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C](#c) 4 | * [C++](#c-1) 5 | * [MATLAB](#matlab) 6 | * [PHP](#php) 7 | 8 | 9 | ### C 10 | 11 | * [C-programmering](https://sv.wikibooks.org/wiki/C-programmering) - Wikibooks 12 | 13 | 14 | ### C++ 15 | 16 | * [Programmera spel i C++ för nybörjare](https://sv.wikibooks.org/wiki/Programmera_spel_i_C%2B%2B_f%C3%B6r_nyb%C3%B6rjare) - Wikibooks 17 | 18 | 19 | ### MATLAB 20 | 21 | * [Introduktion till MATLAB](https://www.liber.se/plus/E470523401.pdf) (PDF) 22 | 23 | 24 | ### PHP 25 | 26 | * [Programmera i PHP](https://sv.wikibooks.org/wiki/Programmera_i_PHP) - Wikibooks 27 | -------------------------------------------------------------------------------- /free-courses-fi.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C#](#C#) 4 | * [Other](#other) 5 | * [Python](#python) 6 | 7 | 8 | ### C# 9 | 10 | * [Jyväskylän yliopiston C#-kieli ohjelmointikurssi](https://tim.jyu.fi/view/kurssit/tie/ohj1/moniste/Ohjelmointi-1) - Ilmainen verkkokurssi 11 | 12 | 13 | ### Other 14 | 15 | * [Koodaustunti](http://koodaustunti.fi/miten-aloitan-koodaamaan/) - Opi koodaamaan verkossa 16 | * [Mooc](https://mooc.fi) - Laadukkaita, avoimia ja ilmaisia verkkokursseja kaikille 17 | 18 | 19 | ### Python 20 | 21 | * [Helsingin yliopiston Python-ohjelmointikurssi](https://linkki.github.io/python2017/) - Ilmainen verkkokurssi 22 | -------------------------------------------------------------------------------- /free-programming-books-ro.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Ajax](#ajax) 4 | * [HTML](#html) 5 | * [MySQL](#mysql) 6 | * [PHP](#php) 7 | * [Scratch](#scratch) 8 | 9 | 10 | ### Ajax 11 | 12 | * [Ajax](http://etutoriale.ro/articles/1483/1/Tutorial-Ajax/) 13 | 14 | 15 | ### HTML 16 | 17 | * [HTML](http://tutorialehtml.com/ro/introducere-in-html/) 18 | 19 | 20 | ### MySQL 21 | 22 | * [MySQL](http://profs.info.uaic.ro/~busaco/teach/courses/net/docs/mysql-ro.pdf) (PDF) 23 | 24 | 25 | ### PHP 26 | 27 | * [PHP](http://php.punctsivirgula.ro) 28 | 29 | 30 | ### Scratch 31 | 32 | * [Informatica Creativa](http://scratched.gse.harvard.edu/resources/informatica-creativa-0) 33 | -------------------------------------------------------------------------------- /free-programming-books-az.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C](#c) 4 | * [CSS](#css) 5 | * [HTML](#html) 6 | * [JavaScript](#javascript) 7 | * [Linux](#Linux) 8 | * [PHP](#php) 9 | 10 | 11 | ### C 12 | 13 | * [C Proqramlaşdırma Dili](http://ilkaddimlar.com/ders/c-proqramlasdirma-dili) 14 | 15 | 16 | ### CSS 17 | 18 | * [CSS](http://ilkaddimlar.com/ders/css) 19 | 20 | 21 | ### HTML 22 | 23 | * [HTML](http://ilkaddimlar.com/ders/html) 24 | 25 | 26 | ### JavaScript 27 | 28 | * [JavaScript](http://ilkaddimlar.com/ders/javascript) 29 | 30 | 31 | ### Linux 32 | 33 | * [Linux](http://ilkaddimlar.com/ders/linux) 34 | 35 | 36 | ### PHP 37 | 38 | * [PHP](http://ilkaddimlar.com/ders/php) 39 | -------------------------------------------------------------------------------- /free-programming-books-bg.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C](#c) 4 | * [C#](#c-sharp) 5 | * [Java](#java) 6 | * [LaTeX](#latex) 7 | 8 | 9 | ### C 10 | 11 | * [Програмиране = ++ Алгоритми](http://www.programirane.org/2013/02/free-download-algo-book-nakov-dobrikov/) - Преслав Наков и Панайот Добриков 12 | 13 | 14 | ### C Sharp 15 | 16 | * [Въведение в програмирането със С#](http://www.introprogramming.info/wp-content/uploads/2011/07/Intro-CSharp-Book-1.00.pdf) - Светлин Наков, Веселин Колев и колектив (PDF) 17 | * [Програмиране за .NET Framework](http://www.devbg.org/dotnetbook/) - Светлин Наков и колектив 18 | 19 | 20 | ### Java 21 | 22 | * [Въведение в програмирането с Java](http://www.introprogramming.info/intro-java-book/read-online/) - Светлин Наков 23 | * [Интернет програмиране с Java](http://www.nakov.com/books/inetjava/index.html) - Светлин Наков 24 | 25 | 26 | ### LaTeX 27 | 28 | * [Кратко въведение в LaTeX2ε](http://www.ctan.org/tex-archive/info/lshort/bulgarian) - Стефка Караколева 29 | -------------------------------------------------------------------------------- /free-programming-books-fi.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C](#c) 4 | * [C++](#c-1) 5 | * [JavaScript](#javascript) 6 | * [PHP](#php) 7 | * [Python](#python) 8 | * [Ruby](#ruby) 9 | 10 | 11 | ### C 12 | 13 | * [C](https://fi.wikibooks.org/wiki/C) - Wikikirjasto 14 | * [C-ohjelmointi](http://www.ohjelmointiputka.net/oppaat/opas.php?tunnus=c_esittaja) 15 | 16 | 17 | ### C++ 18 | 19 | * [C++](https://fi.wikibooks.org/wiki/C%2B%2B) - Wikikirjasto 20 | 21 | 22 | ### JavaScript 23 | 24 | * [JavaScript](https://fi.wikibooks.org/wiki/JavaScript) - Wikikirjasto 25 | 26 | 27 | ### PHP 28 | 29 | * [PHP](https://fi.wikibooks.org/wiki/PHP) - Wikikirjasto 30 | * [PHP-ohjelmointi](http://www.ohjelmointiputka.net/oppaat/opas.php?tunnus=php_01) 31 | 32 | 33 | ### Python 34 | 35 | * [Python 2](https://fi.wikibooks.org/wiki/Python_2) - Wikikirjasto 36 | * [Python 3](https://fi.wikibooks.org/wiki/Python_3) - Wikikirjasto 37 | * [Python-ohjelmointi](http://www.ohjelmointiputka.net/oppaat/opas.php?tunnus=python3_01) 38 | 39 | 40 | ### Ruby 41 | 42 | * [Ruby](https://fi.wikibooks.org/wiki/Ruby) - Wikikirjasto 43 | -------------------------------------------------------------------------------- /free-programming-books-pt_PT.md: -------------------------------------------------------------------------------- 1 | ### Indice 2 | 3 | * [C/C++](#cc) 4 | * [CSS](#css) 5 | * [Haskell](#haskell) 6 | * [LaTeX](#latex) 7 | * [Prolog](#prolog) 8 | 9 | 10 | ### C/C++ 11 | 12 | * [Apontamentos de Programação em C/C++](http://www.dei.isep.ipp.pt/~pbsousa/aulas/ano_0/2006_07/c/Sebenta-cpp-03-2006.pdf) - Paulo Baltarejo e Jorge Santos (PDF) 13 | * [Aprenda a Programar - Uma Breve Introdução (2015)](https://henriquedias.com/downloads/aprenda_a_programar.pdf) - Henrique Dias (PDF) 14 | 15 | 16 | ### CSS 17 | 18 | * [Aprenda o layout de CSS](http://pt-pt.learnlayout.com) 19 | 20 | 21 | ### Haskell 22 | 23 | * [Programação Funcional CC](http://www4.di.uminho.pt/~mjf/pub/PF-Haskell.pdf) - Maria João Frade (PDF) 24 | 25 | 26 | ### LaTeX 27 | 28 | * [Uma não tão pequena introdução ao LaTeX](http://alfarrabio.di.uminho.pt/~albie/lshort/pt-lshort.pdf) - Tradução de Alberto Simões (PDF) 29 | * [Uma não tão pequena introdução ao LATEX 2ε](http://www.ctan.org/tex-archive/info/lshort/portuguese) 30 | 31 | 32 | ### Prolog 33 | 34 | * [Lógica Computacional (com Prolog)](http://www4.di.uminho.pt/~mjf/pub/LC-Prolog.pdf) - Maria João Frade (PDF) 35 | -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- 1 | Welcome to Free-Programming-Books! We welcome new contributors; even those making their very first pull request on Github. If you're one of those, here are some resources that might help: 2 | 3 | * [About Pull Requests](https://help.github.com/articles/about-pull-requests/) 4 | * [Github Hello World](https://guides.github.com/activities/hello-world/) 5 | * [Youtube - Github Tutorial For Beginners](https://www.youtube.com/watch?v=0fKg7e37bQE) 6 | * [Youtube - How To Fork A GitHub Repo and Submit A Pull Request](https://www.youtube.com/watch?v=G1I3HF4YWEw) 7 | 8 | 9 | Don't hesitate to ask questions; every contributor started with a first PR. You could be our thousandth! 10 | 11 | Even if you're an experienced open source contributor, there are things that might trip you up. Once you've submitted your PR, Travis-CI will run a linter, often finding little issues with spacing or alphabetization. If you get a green button, everything is ready for review, but if not, click on the travis link to find out what the linter didn't like. Fix the problem and add a commit to your PR. 12 | 13 | Finally, if you're not sure that the resource you want to add is appropriate for Free-Programming-Books, read through the guidelines in [CONTRIBUTING](/CONTRIBUTING.md). 14 | -------------------------------------------------------------------------------- /free-programming-books-gr.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [C++](#c++) 4 | * [Java](#java) 5 | * [Python](#python) 6 | * [Scala](#scala) 7 | * [SQL](#sql) 8 | 9 | 10 | ### C++ 11 | 12 | * [Εισαγωγή στη C++](http://www.ebooks4greeks.gr/2011.Download_free-ebooks/Pliroforikis/glossa_programmatismoy_C++__eBooks4Greeks.gr.pdf) (PDF) 13 | 14 | 15 | ### Java 16 | 17 | * [Εισαγωγή στη Java](http://www.ebooks4greeks.gr/wp-content/uploads/2013/03/Java-free-book.pdf) (PDF) 18 | * [Εισαγωγή στη γλώσσα προγραμματισμού JAVA](http://www.ebooks4greeks.gr/dowloads/Pliroforiki/Glosses.program./Java__Downloaded_from_eBooks4Greeks.gr.pdf) (PDF) 19 | * [Ηλεκτρονικό εγχειρίδιο της JAVA](http://www.ebooks4greeks.gr/wp-content/uploads/2013/04/java-2012-eBooks4Greeks.gr_.pdf) (PDF) 20 | * [Σημειώσεις Java](http://www.ebooks4greeks.gr/wp-content/uploads/2013/03/shmeiwseis-Java-eBooks4Greeks.gr_.pdf) (PDF) 21 | 22 | 23 | ### Python 24 | 25 | * [Ένα byte της Python](https://archive.org/details/AByteOfPythonEl) 26 | 27 | 28 | ### Scala 29 | 30 | * [Creative Scala](https://github.com/mrdimosthenis/creative-scala) (EPUB, HTML, PDF) 31 | 32 | 33 | ### SQL 34 | 35 | * [Συστήματα Βάσεων Δεδομένων - Θεωρία και πρακτική εφαρμογή](http://studentguru.gr/cfs-file/__key/telligent-evolution-components-attachments/13-1200-00-00-00-13-46-27/vaseis_5F00_dedomenwn.pdf) (PDF) 36 | -------------------------------------------------------------------------------- /free-programming-books-ua.md: -------------------------------------------------------------------------------- 1 | ### ClojureScript 2 | 3 | * [Розплутаний ClojureScript](https://lambdabooks.github.io/clojurescript-unraveled) — Роман Лютіков (LambdaBooks) 4 | 5 | 6 | ### Index 7 | 8 | * [Haskell](#haskell) 9 | * [HTML / CSS](#html--css) 10 | * [Bootstrap](#bootstrap) 11 | * [Java](#java) 12 | * [Language Agnostic](#language-agnostic) 13 | * [Python](#python) 14 | * [Django](#django) 15 | * [Ruby](#ruby) 16 | 17 | 18 | ### Haskell 19 | 20 | * [Вивчить собі Хаскела на велике щастя!](http://haskell.trygub.com) - Міран Ліповача 21 | 22 | 23 | ### HTML / CSS 24 | 25 | #### Bootstrap 26 | 27 | * [Ознайомлення Bootstrap 3.3.2](http://twbs.docs.org.ua) 28 | 29 | 30 | ### Java 31 | 32 | * [Програмування мовою Java для дітей, батьків, дідусів та бабусь](http://myflex.org/books/java4kids/java4kids.htm) - Яків Файн 33 | 34 | 35 | ### JavaScript 36 | 37 | * [Розуміння ECMAScript 6](http://understandinges6.denysdovhan.com) — Денис Довгань (LambdaBooks) 38 | 39 | 40 | ### Language Agnostic 41 | 42 | * [Дизайн патерни - просто, як двері](http://designpatterns.andriybuday.com) - А. Будай 43 | 44 | 45 | ### Python 46 | 47 | * [Пориньте у Python 3](https://uk.wikibooks.org/wiki/Пориньте_у_Python_3) - Марк Пілігрим 48 | 49 | 50 | #### Django 51 | 52 | * [Навчальний посібник Django Girls](https://tutorial.djangogirls.org/uk/) (1.11) (HTML) 53 | 54 | 55 | ### Ruby 56 | 57 | * [Маленька книга про Ruby](https://lambdabooks.github.io/thelittlebookofruby) — Сергій Гіба (LambdaBooks) 58 | -------------------------------------------------------------------------------- /free-programming-books-fa_IR.md: -------------------------------------------------------------------------------- 1 | ### فهرست 2 | 3 | * [C#](#c-sharp) 4 | * [CSS](#css) 5 | * [LaTeX](#latex) 6 | * [PHP](#php) 7 | * [Python](#python) 8 | * [R](#r) 9 | * [رایانش ابری](#%D8%B1%D8%A7%DB%8C%D8%A7%D9%86%D8%B4-%D8%A7%D8%A8%D8%B1%DB%8C) 10 | * [گنو/لینوکس](#%DA%AF%D9%86%D9%88%D9%84%DB%8C%D9%86%D9%88%DA%A9%D8%B3) 11 | * [آرچ لینوکس](#%D8%A2%D8%B1%DA%86-%D9%84%DB%8C%D9%86%D9%88%DA%A9%D8%B3) 12 | * [اوبونتو](#%D8%A7%D9%88%D8%A8%D9%88%D9%86%D8%AA%D9%88) 13 | * [مهندسی نرم‌افزار](#%D9%85%D9%87%D9%86%D8%AF%D8%B3%DB%8C-%D9%86%D8%B1%D9%85%E2%80%8C%D8%A7%D9%81%D8%B2%D8%A7%D8%B1) 14 | 15 | 16 | ### C Sharp 17 | 18 | * [توسعه چابک در C#](http://agiledevelopment.ir/ebook/) 19 | 20 | 21 | ### CSS 22 | 23 | * [یادگیری پیکربندی با CSS](http://fa.learnlayout.com) 24 | 25 | 26 | ### LaTeX 27 | 28 | * [مقدمه ای نه چندان کوتاه بر LaTeX](http://www.ctan.org/tex-archive/info/lshort/persian) 29 | 30 | 31 | ### Python 32 | 33 | * [کتاب آزاد آموزش پایتون](http://python.coderz.ir) 34 | 35 | 36 | ### R 37 | 38 | * [تحلیل شبکه‌های اجتماعی در R](http://cran.r-project.org/doc/contrib/Raeesi-SNA_in_R_in_Farsi.pdf) (PDF) 39 | * [راهنمای زبان R](http://cran.r-project.org/doc/contrib/Mousavi-R-lang_in_Farsi.pdf) (PDF) 40 | * [موضعات ویژه در R](http://cran.r-project.org/doc/contrib/Mousavi-R_topics_in_Farsi.pdf) (PDF) 41 | 42 | 43 | ### رایانش ابری 44 | 45 | * [رایانش ابری](http://docs.occc.ir/books/Main%20Book-20110110_2.pdf) (PDF) 46 | 47 | 48 | ### گنو/لینوکس 49 | 50 | #### آرچ لینوکس 51 | 52 | * [آرچ بوک](http://linuxreview.ir/archbook/ArchBook-2012-1.pdf) (PDF) 53 | 54 | 55 | #### اوبونتو 56 | 57 | * [اوبونتو برای تازه واردها](http://ubuntu-book.org) 58 | 59 | 60 | ### مهندسی نرم‌افزار 61 | 62 | * [الگوهای طراحی در برنامه‌نویسی شیء‌گرا](https://github.com/khajavi/Practical-Design-Patterns) 63 | -------------------------------------------------------------------------------- /free-programming-books-id.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Android](#android) 4 | * [Emacs](#emacs) 5 | * [Git](#git) 6 | * [Go](#go) 7 | * [HTML & CSS](#html-css) 8 | * [JavaScript](#javascript) 9 | * [PHP](#php) 10 | * [Python](#python) 11 | 12 | 13 | ### Android 14 | 15 | * [Tutorial Membuat Aplikasi Galeri Foto Android](https://www.smashwords.com/books/view/533096) 16 | 17 | 18 | ### Emacs 19 | 20 | * [Dokumentasi Emacs Bahasa Indonesia](https://github.com/kholidfu/emacs_doc) 21 | 22 | 23 | ### Git 24 | 25 | * [Kontrol Versi dengan Git](https://leanpub.com/kontrol-versi-git) 26 | * [Pro Git 1st Edition](https://git-scm.com/book/id/v1) 27 | 28 | 29 | ### Go 30 | 31 | * [Dasar Pemrograman Golang](https://www.gitbook.com/book/novalagung/dasarpemrogramangolang) 32 | 33 | 34 | ### HTML CSS 35 | 36 | * [Belajar HTML dan CSS](http://www.ariona.net/ebook-belajar-html-dan-css/) 37 | 38 | 39 | ### JavaScript 40 | 41 | * [Mengenal JavaScript](http://masputih.com/2013/01/ebook-gratis-mengenal-javascript) 42 | * [Otomatisasi dengan gulp.js](https://kristories.gitbooks.io/otomatisasi-dengan-gulp-js/content/) 43 | 44 | 45 | ### Node.js 46 | 47 | * [Belajar Node.js](http://idjs.github.io/belajar-nodejs/) 48 | 49 | 50 | ### NoSQL 51 | 52 | * [MongoDB Untuk Indonesia](https://kristories.gitbooks.io/pengantar-mongodb/content/) 53 | 54 | 55 | ### PHP 56 | 57 | * [Pemrograman Web dengan PHP dan MySQL](http://achmatim.net/2009/04/15/buku-gratis-pemrograman-web-dengan-php-dan-mysql/) 58 | * [Tutorial Ebook PHP](http://www.ilmuwebsite.com/ebook-php-free-download) 59 | 60 | 61 | ### Python 62 | 63 | * [Belajar Python](http://www.belajarpython.com) 64 | * [Database PostgreSQL, Pemrograman Python, dan SMS Gateway](http://rab.co.id/files/python/bukupython2.pdf.gz) - (PDF) 65 | * [Workshop Python 101](http://sakti.github.io/python101/) 66 | -------------------------------------------------------------------------------- /free-courses-ru.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Clojure](#clojure) 4 | * [Java](#java) 5 | * [PHP](#php) 6 | * [PostgreSQL](#postgresql) 7 | * [Python](#python) 8 | * [React](#react) 9 | 10 | 11 | ### Уровни 12 | 13 | BEG - новичок. Основы. 14 | INT - средний. Расширенные возможности. 15 | ADV - продвинутый. Тонкости. 16 | 17 | 18 | ### Clojure 19 | 20 | * [Курс Clojure](https://clojurecourse.by) (BEG) 21 | 22 | 23 | ### Java 24 | 25 | * [Java. Путь от ученика до эксперта.](http://www.job4j.ru/courses/java_way_from_student_to_master.html) - Пётр Арсентьев (INT) 26 | * [Вводный курс. Java в аналогиях.](http://www.job4j.ru/courses/java_beginner.html) - Пётр Арсентьев (BEG) 27 | * [Курс тест по Java](https://github.com/peterarsentev/course_test) - Пётр Арсентьев (BEG) 28 | 29 | 30 | ### PHP 31 | 32 | * [Основы программирования на PHP](https://code-basics.ru/languages/php) (BEG) (:construction: *in process*) 33 | 34 | 35 | ### PostgreSQL 36 | 37 | * [DBA1. Администрирование PostgreSQL](https://postgrespro.ru/education/courses/DBA1) (BEG) 38 | * [DBA2. Администрирование PostgreSQL. Расширенный курс](https://postgrespro.ru/education/courses/DBA2) (INT) 39 | * [DEV1. Разработка серверной части приложений PostgreSQL](https://postgrespro.ru/education/courses/DEV1) (ADV) 40 | * [Hacking PostgreSQL](https://postgrespro.ru/education/courses/hacking) (INT) 41 | 42 | 43 | ### Python 44 | 45 | * [Python: быстрый старт](http://dfedorov.spb.ru/python3) - Дмитрий Фёдоров (BEG) 46 | * [Python: основы и применение](https://stepik.org/course/512) - Stepik (INT) 47 | * [Основы программирования на Python](https://www.coursera.org/learn/python-osnovy-programmirovaniya) - Coursera (BEG) 48 | * [Программирование на Python](https://stepik.org/course/67) - Stepik (BEG) 49 | 50 | 51 | ### React 52 | 53 | * [React.js курс для начинающих](https://www.gitbook.com/book/maxfarseer/react-course-ru/details) (BEG) 54 | * [Роутинг в react-приложениях](https://www.gitbook.com/book/maxfarseer/react-router-course-ru/details) (INT) 55 | * [Туториал по Redux](https://www.gitbook.com/book/maxfarseer/redux-course-ru/details) (INT) 56 | 57 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | As contributors and maintainers of this project, and in the interest of 4 | fostering an open and welcoming community, we pledge to respect all people who 5 | contribute through reporting issues, posting feature requests, updating 6 | documentation, submitting pull requests or patches, and other activities. 7 | 8 | We are committed to making participation in this project a harassment-free 9 | experience for everyone, regardless of the level of experience, gender, gender 10 | identity and expression, sexual orientation, disability, personal appearance, 11 | body size, race, ethnicity, age, religion, or nationality. 12 | 13 | Examples of unacceptable behavior by participants include: 14 | 15 | * The use of sexualized language or imagery 16 | * Personal attacks 17 | * Trolling or insulting/derogatory comments 18 | * Public or private harassment 19 | * Publishing other's private information, such as physical or electronic 20 | addresses, without explicit permission 21 | * Other unethical or unprofessional conduct 22 | 23 | Project maintainers have the right and responsibility to remove, edit, or 24 | reject comments, commits, code, wiki edits, issues, and other contributions 25 | that are not aligned to this Code of Conduct, or to ban temporarily or 26 | permanently any contributor for other behaviors that they deem inappropriate, 27 | threatening, offensive, or harmful. 28 | 29 | By adopting this Code of Conduct, project maintainers commit themselves to 30 | fairly and consistently applying these principles to every aspect of managing 31 | this project. Project maintainers who do not follow or enforce the Code of 32 | Conduct may be permanently removed from the project team. 33 | 34 | This code of conduct applies both within project spaces and in public spaces 35 | when an individual is representing the project or its community. 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 38 | reported by contacting a project maintainer at victorfelder at gmail.com. All 39 | complaints will be reviewed and investigated and will result in a response that 40 | is deemed necessary and appropriate to the circumstances. Maintainers are 41 | obligated to maintain confidentiality with regard to the reporter of an 42 | incident. 43 | 44 | 45 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 46 | version 1.3.0, available at 47 | [http://contributor-covenant.org/version/1/3/0/][version] 48 | 49 | [homepage]: http://contributor-covenant.org 50 | [version]: http://contributor-covenant.org/version/1/3/0/ 51 | -------------------------------------------------------------------------------- /free-programming-books-ar.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Arduino](#arduino) 4 | * [GIT](#git) 5 | * [Introduction to programming in Arabic](#introduction) 6 | * [Linux](#linux) 7 | * [Open source software](#oss) 8 | * [Operating system](#os) 9 | * [PHP](#php) 10 | * [Programming in Scratch](#scratch) 11 | * [Raspberry Pi](#raspberry-pi) 12 | * [RUBY](#ruby) 13 | * [SECURITY](#security) 14 | * [SEO](#seo) 15 | * [UI/UX](#ui-ux) 16 | 17 | 18 | ### Arduino 19 | 20 | * [أردوينو السهل](http://librebooks.org/simply-arduino/) 21 | * [كتاب احترف الأردوينو](http://www.ev-center.com/uploads/2/1/2/6/21261678/arduino.pdf) (PDF) 22 | 23 | 24 | ### Introduction to programming in Arabic 25 | 26 | * [مختصر دليل لغات البرمجة ](https://alyassen.github.io/Brief-guide-to-programming-languages-v1.2.4.pdf) (PDF) 27 | 28 | 29 | ### Linux 30 | 31 | * [أوبنتو السهل](http://librebooks.org/simply-ubuntu/) 32 | * [الإدارة المتقدمة لجنو/لينكس ](http://librebooks.org/gnu-linux-advanced-administration/) 33 | * [دفتر مدير دبيان](http://librebooks.org/debian-handbook-arabic/) 34 | * [دليل إدارة خواديم أوبنتو ](http://librebooks.org/ubuntu-server-guide-arabic/) 35 | 36 | 37 | ### open source software 38 | 39 | * [الأبعاد الاستراتيجية للبرمجيات الحرة مفتوحة المصدر](http://librebooks.org/strategic-dimensions-of-free-and-open-source-software/) 40 | * [الحريات الرقمية - المفاهيم الرئيسية](http://librebooks.org/digital-freedoms-main-concepts/) 41 | * [المصادر المفتوحة خيارات بلا حدود](http://librebooks.org/opensource-ultimate-options/) 42 | * [تعرف على البرمجيات الحرة](http://librebooks.org/know-free-software/) 43 | * [دليل البرمجيات الحرة مفتوحة](http://librebooks.org/free-opensource-guide/) 44 | * [نبذة عن رخص البرمجيات الحرة](http://librebooks.org/bref-about-foss-licenses/) 45 | 46 | 47 | ### Operating Systems 48 | 49 | * [المقدمة في تحليل وتصميم أنظمة](http://librebooks.org/intro-to-os-analysis-and-design/) 50 | 51 | 52 | ### php 53 | 54 | * [تعلم البرمجة بلغة PHP](http://librebooks.org/learn-programming-with-php/) 55 | 56 | 57 | ### Programming in Scratch 58 | 59 | * [كتاب احترف سكراتش](http://www.ev-center.com/uploads/2/1/2/6/21261678/scratch.pdf) (PDF) 60 | 61 | 62 | ### raspberry-pi 63 | 64 | * [راسبيري باي السهل](http://librebooks.org/simply-raspberry-pi/) 65 | 66 | 67 | ### ruby 68 | 69 | * [مقدمة في روبي](http://librebooks.org/intro-to-ruby/) 70 | 71 | 72 | ### Security 73 | 74 | * [تأمين الشبكات اللاسلكية للمستخدم المنزلي](http://librebooks.org/secure-wireless-networks-for-home-users/) 75 | * [تقنيات الاختراق المادي](http://librebooks.org/physical-hacking-techniques/) 76 | * [عُدَّة الأمان الرقمي](http://librebooks.org/security-in-a-box/) 77 | 78 | 79 | ### seo 80 | 81 | * [تحسين محركات البحث SEO - دليل المبتدئين](http://librebooks.org/search-engine-optimization-seo-starter-guide-ar/) 82 | 83 | 84 | ### UI/UX 85 | 86 | * [مدخل إلى تجربة المستخدم](https://sourceforge.net/projects/omlx/files/open%20books/1.0/Intro-to-UX-Arabic-v1.0.pdf/download) (PDF) 87 | -------------------------------------------------------------------------------- /free-programming-playgrounds.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Angular](#angular) 4 | * [ClojureScript](#clojurescript) 5 | * [Crystal](#crystal) 6 | * [CSS](#css) 7 | * [Elm](#elm) 8 | * [FlexBox](#flexbox) 9 | * [Go](#go) 10 | * [Haskell](#haskell) 11 | * [JavaScript](#javascript) 12 | * [Kotlin](#kotlin) 13 | * [.Net](#dotnet) 14 | * [Node.js](#nodejs) 15 | * [OCaml](#ocaml) 16 | * [Perl](#perl) 17 | * [PHP](#php) 18 | * [Python](#python) 19 | * [R](#r) 20 | * [Ruby](#ruby) 21 | * [Rust](#rust) 22 | * [Scala](#scala) 23 | * [SQL](#sql) 24 | * [Swift](#swift) 25 | * [TypeScript](#typescript) 26 | 27 | 28 | ### Angular 29 | 30 | * [Plunker](http://plnkr.co) 31 | 32 | 33 | ### ClojureScript 34 | 35 | * [Web REPL](http://clojurescript.net) 36 | 37 | 38 | ### Crystal 39 | 40 | * [Compile & run code in Crystal](https://play.crystal-lang.org/#/cr) 41 | 42 | 43 | ### CSS 44 | 45 | * [CodePen](https://codepen.io) 46 | * [CSSdeck](http://cssdeck.com) 47 | * [CSSdesk](http://cssdesk.com) 48 | * [Dabblet](http://dabblet.com) 49 | 50 | 51 | ### Elm 52 | 53 | * [Ellie](https://ellie-app.com) 54 | 55 | 56 | ### FlexBox 57 | 58 | * [Echoplex](http://the-echoplex.net/flexyboxes/) 59 | 60 | 61 | ### Go 62 | 63 | * [Go Playground](https://play.golang.org) 64 | 65 | 66 | ### Haskell 67 | 68 | * [Try Haskell](https://www.tryhaskell.org) 69 | 70 | 71 | ### JavaScript 72 | 73 | * [CodePen](https://codepen.io) 74 | * [CodeSandbox.io](https://codesandbox.io) (_React_) 75 | * [JSBin](http://jsbin.com) 76 | * [JSFiddle](http://jsfiddle.net) 77 | * [Plunker](http://plnkr.co) 78 | * [Sololearn](https://code.sololearn.com/#html) 79 | 80 | 81 | ### Kotlin 82 | 83 | * [Kotlin](https://try.kotlinlang.org) 84 | 85 | 86 | ### .NET 87 | 88 | * [.NET Fiddle](https://dotnetfiddle.net) 89 | 90 | 91 | ### NodeJS 92 | 93 | * [Ideone](http://ideone.com) 94 | 95 | 96 | ### OCaml 97 | 98 | * [Try OCaml](https://try.ocamlpro.com) 99 | 100 | 101 | ### Perl 102 | 103 | * [Perl](http://tryperl.pl) 104 | 105 | 106 | ### PHP 107 | 108 | * [Codepad](http://codepad.org) 109 | * [PHPFiddle](http://phpfiddle.org) 110 | * [PHPTester](http://phptester.net) 111 | 112 | 113 | ### Python 114 | 115 | * [Codepad](http://codepad.org) 116 | * [Pyfiddle](https://pyfiddle.io) 117 | 118 | 119 | ### R 120 | 121 | * [R-Fiddle](http://www.r-fiddle.org) 122 | 123 | 124 | ### Ruby 125 | 126 | * [Codepad](http://codepad.org) 127 | 128 | 129 | ### Rust 130 | 131 | * [Rust Playground](http://play.integer32.com) 132 | 133 | 134 | ### Scala 135 | 136 | * [ScalaFiddle.io](https://scalafiddle.io) 137 | * [ScalaFiddle.net](http://scalafiddle.net) 138 | * [Scastie](https://scastie.scala-lang.org) 139 | 140 | 141 | ### SQL 142 | 143 | * [Extends Class](https://extendsclass.com/sqlite-browser.html) 144 | * [SQLFiddle](http://sqlfiddle.com) 145 | 146 | 147 | ### Swift 148 | 149 | * [Online Swift Playground](http://online.swiftplayground.run) 150 | 151 | 152 | ### TypeScript 153 | 154 | * [Playground](https://www.typescriptlang.org/play/index.html) 155 | -------------------------------------------------------------------------------- /free-podcasts-screencasts-ru.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Android](#android) 4 | * [Golang](#golang) 5 | * [Gulp](#gulp) 6 | * [Haskell](#haskell) 7 | * [Javascript](#javascript) 8 | * [Node.js](#nodejs) 9 | * [PHP](#php) 10 | * [QA](#qa) 11 | * [React.js](#reactjs) 12 | * [Ruby](#ruby) 13 | * [Webpack](#webpack) 14 | * [Информационные технологии и безопасность](#Информационные-технологии-и-безопасность) 15 | * [Новости и Разработка ПО](#Новости-и-Разработка-ПО) 16 | 17 | 18 | ### Android 19 | 20 | * [Android Dev](http://apptractor.ru/AndroidDev) (Podcast) 21 | 22 | 23 | ### Golang 24 | 25 | * [GolangShow](https://golangshow.com) (Podcast) 26 | 27 | 28 | ### Gulp 29 | 30 | * [Скринкаст по Gulp](http://learn.javascript.ru/screencast/gulp) - Илья Кантор (Screencast) 31 | 32 | 33 | ### Haskell 34 | 35 | * [Бананы и Линзы](https://bananasandlenses.net) 36 | 37 | 38 | ### Javascript 39 | 40 | * [Devschacht](https://soundcloud.com/devschacht) (Podcast) 41 | * [Frontflip](http://frontflip.me) (Podcast) 42 | * [Javascript для начинающих](http://www.magisters.org/education/course/js-for-beginners) (Screencast) 43 | * [RadioJS](http://radiojs.ru) (Podcast) 44 | * [Webstandards](https://soundcloud.com/web-standards) (Podcast) 45 | 46 | 47 | ### Node.js 48 | 49 | * [Скринкаст Node.JS](https://learn.javascript.ru/screencast/nodejs) - Илья Кантор (Screencast) 50 | 51 | 52 | ### PHP 53 | 54 | * [Пятиминутка PHP](http://5minphp.ru) (Podcast) 55 | 56 | 57 | ### QA 58 | 59 | * [QAGuild](http://automation-remarks.com/podcast) (Podcast) 60 | * [Подкаст тестировщиков](http://radio-qa.com) (Podcast) 61 | 62 | 63 | ### React.js 64 | 65 | * [Основы React.js](http://learn.javascript.ru/screencast/react) - Роман Якобчук (Screencast) 66 | * [Пятиминутка React](http://5minreact.ru) (Podcast) 67 | 68 | 69 | ### Ruby 70 | 71 | * [RubyNoName Podcast](http://rubynoname.ru) (Podcast) 72 | * [RubySchool (Ruby, Rails)](http://rubyschool.us) - Роман Пушкин (Screencast) 73 | * [RWPod Podcast](http://rwpod.com) (Podcast) 74 | 75 | 76 | ### Scala 77 | 78 | * [Русскоязычный подкаст о Scala](https://scalalaz.ru) (Podcast) 79 | 80 | 81 | ### Webpack 82 | 83 | * [Скринкаст Webpack](https://learn.javascript.ru/screencast/webpack) - Илья Кантор (Screencast) 84 | 85 | 86 | ### Информационные технологии и безопасность 87 | 88 | * [LinkMeUp](http://linkmeup.ru) (Podcast) 89 | * [Noise Security Bit](https://noisebit.podster.fm) (Podcast) 90 | * [uWebDesign](https://uwebdesign.ru) (Podcast) 91 | * [Квант безопасности](https://soundcloud.com/nikita-remezov) (Podcast) 92 | 93 | 94 | ### Новости и Разработка ПО 95 | 96 | * [CTOcast](http://ctocast.com) (Podcast) 97 | * [DevZen Podcast](https://devzen.ru) (Podcast) 98 | * [Software Development podCAST](https://sdcast.ksdaemon.ru) (Podcast) 99 | * [The Art Of Programming](https://theartofprogramming.podbean.com) (Podcast) 100 | * [Две Столицы - Уютный подкаст IT панков](http://www.2capitals.space) (Podcast) 101 | * [Как делают игры](https://kdicast.com) (Podcast) 102 | * [Радио-Т](https://radio-t.com) (Podcast) 103 | * [Разбор полётов](http://razbor-poletov.com) (Podcast) 104 | * [Развлекательный IT подкаст](http://radioma.org) (Podcast) 105 | * [Слава + Паша](https://it.asm0dey.ru) (Podcast) 106 | 107 | -------------------------------------------------------------------------------- /problem-sets-competitive-programming.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Competitive Programming](#competitive-programming) 4 | * [Data science](#data-science) 5 | * [Problem Sets](#problem-sets) 6 | 7 | 8 | ### Competitive Programming 9 | 10 | * [4Clojure](http://www.4clojure.com) 11 | * [A2 Online Judge](https://a2oj.com) 12 | * [Caribbean Online Judge](http://coj.uci.cu) 13 | * [Codeabbey](http://www.codeabbey.com) 14 | * [Codechef](https://www.codechef.com/contests) 15 | * [Codecombat](https://codecombat.com) 16 | * [Codeeval](https://www.codeeval.com) 17 | * [CodeFights](https://codefights.com) 18 | * [Codeforces](http://codeforces.com/contests) 19 | * [Coderbyte](https://coderbyte.com) 20 | * [Codewars](http://www.codewars.com) 21 | * [Codingame](https://www.codingame.com/start) 22 | * [Facebook Hackercup](https://www.facebook.com/hackercup) 23 | * [HackerEarth](https://www.hackerearth.com) 24 | * [Hackerrank](https://www.hackerrank.com) 25 | * [Internet Problem Solving Contest](http://ipsc.ksp.sk) 26 | * [Just another Golf Coding](http://jagc.org) 27 | * [Kattis](https://open.kattis.com) 28 | * [LeetCode](https://leetcode.com) 29 | * [Microcorruption](https://microcorruption.com/login) 30 | * [Sphere Online Judge](http://www.spoj.com/contests) 31 | * [Topcoder](https://www.topcoder.com) 32 | 33 | 34 | ### Data science 35 | 36 | * [Kaggle](https://www.kaggle.com) 37 | 38 | 39 | ### Problem Sets 40 | 41 | * [500 Data structures and algorithms interview questions and their solutions in C++](https://techiedelight.quora.com/500-Data-structures-and-algorithms-interview-questions-and-their-solutions-in-C%2B%2B) 42 | * [A2 Online Judge](https://a2oj.com/ps) 43 | * [Advent Of Code](http://adventofcode.com) 44 | * [Anarchy Golf](http://golf.shinh.org) 45 | * [CareerCup](http://www.careercup.com) 46 | * [CheckIO](http://www.checkio.org) 47 | * [Codeforces](http://codeforces.com/problemset) 48 | * [Codility](https://codility.com/programmers/) 49 | * [Coding Bat](http://codingbat.com/java) 50 | * [Exercism](http://exercism.io) 51 | * [Geeks For Geeks](http://www.geeksforgeeks.org) 52 | * [Google Code Jam - Practise](https://code.google.com/codejam/contests.html) 53 | * [Hacker.org](http://www.hacker.org) 54 | * [HackerEarth](https://www.hackerearth.com) 55 | * [HDU Online Judge](http://acm.hdu.edu.cn) 56 | * [Interactive Coding Challenge](https://github.com/donnemartin/interactive-coding-challenges) 57 | * [InterviewBit](https://www.interviewbit.com) 58 | * [Kattis](https://open.kattis.com) 59 | * [Leetcode](https://leetcode.com) 60 | * [Mathproblem of the Month - Bilkent University](http://www.fen.bilkent.edu.tr/~cvmath/prob-month.html) 61 | * [PEG Judge](http://wcipeg.com) 62 | * [PKU Online Judge](http://poj.org) 63 | * [Ponder This!](https://www.research.ibm.com/haifa/ponderthis/index.shtml) 64 | * [ProblemBook.NET](https://github.com/AndreyAkinshin/ProblemBook.NET) 65 | * [Project Euler](https://projecteuler.net) 66 | * [Python Practice Projects](http://pythonpracticeprojects.com) 67 | * [Rosalind](http://rosalind.info/problems/locations/) 68 | * [Sphere Online Judge](http://www.spoj.com/problems/classical) 69 | * [TalentBuddy](http://www.talentbuddy.co/blog/) 70 | * [Timus Online Judge](http://acm.timus.ru) 71 | * [URI Online Judge](https://www.urionlinejudge.com.br/judge/login) 72 | * [UVa Online Judge](https://uva.onlinejudge.org/index.php?Itemid=8&option=com_onlinejudge) 73 | -------------------------------------------------------------------------------- /free-courses-pt_BR.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Android](#android) 4 | * [Dart](#dart) 5 | * [Git](#git) 6 | * [Go](#go) 7 | * [Haskell](#haskell) 8 | * [HTML](#html) 9 | * [Java](#java) 10 | * [Kotlin](#kotlin) 11 | * [PHP](#php) 12 | * [Python](#python) 13 | * [Ruby](#ruby) 14 | * [Swift](#swift) 15 | 16 | 17 | ### Android 18 | 19 | * [Desenvolvedor Android Iniciante](https://www.udemy.com/desenvolvedor-android-iniciante/) - Gabriel Ferrari, Adriano Sacardo (Udemy) 20 | 21 | 22 | ### Dart 23 | 24 | * [Curso de Dart Lang](https://www.udemy.com/curso-de-dart-lang-completo/) - Sthefane Soares (Udemy) 25 | 26 | 27 | ### Git 28 | 29 | * [Git e Github para iniciantes](https://www.udemy.com/git-e-github-para-iniciantes/) - Willian Justen de Vasconcellos (Udemy) 30 | * [Git para iniciantes](https://www.udemy.com/git-para-iniciantes/) - Ricardo Netto (Udemy) 31 | 32 | 33 | ### Go 34 | 35 | * [Curso de Introdução a Linguagem Go (Golang)](https://www.youtube.com/playlist?list=PLXFk6ROPeWoAvLMyJ_PPfu8oF0-N_NgEI) - EuProgramador (YouTube) 36 | 37 | 38 | ### Haskell 39 | 40 | * [Curso Haskell para Iniciantes](https://www.udemy.com/curso-haskell/) - Marcos Castro (Udemy) 41 | 42 | 43 | ### HTML 44 | 45 | * [HTML5 para quem não sabe nada de HTML5](https://www.udemy.com/aprendahtml/) - Paulo Andrade (Udemy) 46 | * [Introdução à Linguagem HTML](https://www.udemy.com/introducao-a-linguagem-html/) - Diego Mariano (Udemy) 47 | 48 | 49 | ### Java 50 | 51 | * [Desenvolvedor Funcional com Java 8](https://www.udemy.com/desenvolvedor-funcional-com-java-8/) - Fernando Franzini (Udemy) 52 | * [Introdução ao Java e Orientação a objetos](https://www.udemy.com/introducao-ao-java-e-orientacao-a-objetos/) - Helder Guimaraes Aragao (Udemy) 53 | 54 | 55 | ### Kotlin 56 | 57 | * [Desenvolvedor Kotlin Iniciante](https://www.udemy.com/desenvolvedor-kotlin-iniciante/) - Gabriel Ferrari, Adriano Sacardo (Udemy) 58 | 59 | 60 | ### PHP 61 | 62 | * [Introdução à Criação de Sites Dinâmicos com PHP](https://www.udemy.com/criacao-de-paginas-de-internet-dinamicas-com-php-basico/) - Diego Mariano (Udemy) 63 | * [PHP 7 do Básico ao Intermediário](https://www.udemy.com/php-do-basico-ao-intermediario/) - Gunnar Correa (Udemy) 64 | * [PHP para quem entende PHP](https://www.udemy.com/php-para-quem-entende-php/) - Alexandre Cardoso (Udemy) 65 | 66 | 67 | ### Python 68 | 69 | * [Django 2.0 - Aprendendo os conceitos fundamentais](https://www.udemy.com/django-20-aprendendo-os-conceitos-fundamentais/) - Gregory Pacheco (Udemy) 70 | * [Introdução à linguagem Python](https://www.udemy.com/intro_python/) - Diego Mariano (Udemy) 71 | * [Python 3 na Prática](https://www.udemy.com/python-3-na-pratica/) - João Batista (Udemy) 72 | * [Python 3 na Web com Django (Básico e Intermediário)](https://www.udemy.com/python-3-na-web-com-django-basico-intermediario/) - Gileno Alves Santa Cruz Filho (Udemy) 73 | * [Python para Iniciantes](https://www.udemy.com/python-para-iniciantes/) - Tiago Miguel (Udemy) 74 | 75 | 76 | ### Ruby 77 | 78 | * [Curso de Ruby on Rails para Iniciantes](https://www.youtube.com/playlist?list=PLe3LRfCs4go-mkvHRMSXEOG-HDbzesyaP) - Jackson Pires (YouTube) 79 | * [Ruby on Rails 5 na Prática](https://www.udemy.com/ruby-on-rails-5-na-pratica/) - Bruno Paulino (Udemy) 80 | * [Ruby Para Iniciantes](https://www.udemy.com/ruby-para-iniciantes/) - Bruno Paulino (Udemy) 81 | 82 | 83 | ### Swift 84 | 85 | * [Aprendendo Swift do Iniciante ao Avançado. (Mac e Windows)](https://www.udemy.com/aprendendoswift3/) - Lucas Alencar (Udemy) 86 | -------------------------------------------------------------------------------- /free-programming-books-ko.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Amazon Web Service](#amazon-web-service) 4 | * [Assembly Language](#assembly-language) 5 | * [Docker](#docker) 6 | * [GIT](#git) 7 | * [Go](#go) 8 | * [HTML5](#html5) 9 | * [JavaScript](#javascript) 10 | * [Node.js](#nodejs) 11 | * [LaTeX](#latex) 12 | * [Linux](#linux) 13 | * [Perl](#perl) 14 | * [PHP](#php) 15 | * [Laravel](#laravel) 16 | * [Python](#python) 17 | * [Django](#django) 18 | * [Flask](#flask) 19 | * [R](#r) 20 | * [Ruby](#ruby) 21 | * [Scratch](#scratch) 22 | * [Swift](#swift) 23 | 24 | 25 | ### Amazon Web Service 26 | 27 | * [아마존 웹 서비스를 다루는 기술](http://www.pyrasis.com/private/2014/09/30/publish-the-art-of-amazon-web-services-book) 28 | 29 | 30 | ### Assembly Language 31 | 32 | * [PC Assembly Language](http://drpaulcarter.com/pcasm/) - Paul A. Carter 33 | 34 | 35 | ### Docker 36 | 37 | * [가장 빨리 만나는 Docker](http://www.pyrasis.com/private/2014/11/30/publish-docker-for-the-really-impatient-book) 38 | 39 | 40 | ### GIT 41 | 42 | * [Git - 간편 안내서](http://rogerdudler.github.io/git-guide/index.ko.html) 43 | * [Pro Git 한글 번역](http://git-scm.com/book/ko/) 44 | * [깃허브 치트 시트](https://github.com/tiimgreen/github-cheat-sheet/blob/master/README.ko.md) 45 | 46 | 47 | ### Go 48 | 49 | * [AN INTRODUCTION TO PROGRAMMING IN GO 한글 번역](http://www.codingnuri.com/golang-book/index.html) 50 | * [Go Tour 한글 번역](http://go-tour-kr.appspot.com) 51 | * [Go 언어 웹 프로그래밍 철저 입문](https://thebook.io/006806/) 52 | * [가장 빨리 만나는 Go 언어](http://www.pyrasis.com/private/2015/06/01/publish-go-for-the-really-impatient-book) 53 | 54 | 55 | ### HTML5 56 | 57 | * [HTML5, CSS and Javascript](http://fromyou.tistory.com/581) 58 | 59 | 60 | ### JavaScript 61 | 62 | * [JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/ko) 63 | * Meteor 64 | * [Discover Meteor](http://kr.discovermeteor.com) 65 | 66 | 67 | #### Node.js 68 | 69 | * [Node.js API 한글 번역 by outsideris](http://nodejs.sideeffect.kr/docs/) 70 | 71 | 72 | ### LaTeX 73 | 74 | * [The Not So short Introduction to LaTeX 2ε](http://www.ctan.org/tex-archive/info/lshort/korean) 75 | 76 | 77 | ### Linux 78 | 79 | * [리눅스 서버를 다루는 기술](https://thebook.io/006718/) 80 | 81 | 82 | ### Perl 83 | 84 | * [2시간 반만에 펄 익히기](http://qntm.org/files/perl/perl_kr.html) 85 | * [Perl 객체지향프로그래밍(OOP)](https://github.com/aero/perl_docs/blob/master/hatena_perl_oop.md) : Hatena-TextBook의 oop-for-perl 문서 한역 by aero 86 | * [Seoul.pm 펄 크리스마스 달력 #2014 | Seoul.pm Perl Advent Calendar 2014](http://advent.perl.kr/2014/) 87 | 88 | 89 | ### PHP 90 | 91 | * [PHP5 의 주요 기능](https://www.lesstif.com/pages/viewpage.action?pageId=24445740) 92 | 93 | 94 | #### Laravel 95 | 96 | * [라라벨 (Laravel) 5 입문 및 실전 강좌](http://l5.appkr.kr) 97 | * [쉽게 배우는 라라벨 5 프로그래밍](https://www.lesstif.com/display/laravelprog) 98 | 99 | 100 | ### Python 101 | 102 | * [A Byte of Python 한글 번역 by Jeongbin Park](http://byteofpython-korean.sourceforge.net/byte_of_python.pdf) (PDF) 103 | * [모두의 파이썬: 20일 만에 배우는 프로그래밍 기초](https://thebook.io/006855/) 104 | * [왕초보를 위한 Python 2.7](https://wikidocs.net/book/2) 105 | * [점프 투 파이썬 - Python 3](https://wikidocs.net/book/1) 106 | 107 | 108 | #### Django 109 | 110 | * [장고걸스 튜토리얼 (Django Girls Tutorial)](https://tutorial.djangogirls.org/ko/) (1.11) (HTML) (:construction: *in process*) 111 | 112 | 113 | #### Flask 114 | 115 | * [Flask의 세계에 오신것을 환영합니다.](http://flask-docs-kr.readthedocs.io/ko/latest/) (HTML) 116 | 117 | 118 | ### R 119 | 120 | * [R을 이용한 데이터 처리 & 분석 실무](http://r4pda.co.kr) - 서민구 (HTML, PDF - 이전 버젼) 121 | * [The R Manuals (translated in Korean)](http://www.openstatistics.net) 122 | 123 | 124 | ### Ruby 125 | 126 | * [루비 스타일 가이드](https://github.com/dalzony/ruby-style-guide/blob/master/README-koKR.md) 127 | 128 | 129 | ### Scratch 130 | 131 | * [창의컴퓨팅(Creative Computing) 가이드북](http://digital.kyobobook.co.kr/digital/ebook/ebookDetail.ink?barcode=480150000247P) 132 | 133 | 134 | ### Swift 135 | 136 | * [Swift 언어 개발문서](http://swift.leantra.kr) - 이전 버젼 137 | -------------------------------------------------------------------------------- /free-podcasts-screencasts-pt_BR.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Algoritmos](#algoritmos) 4 | * [Angular](#angular) 5 | * [Databases](#databases) 6 | * [DataScience](#datascience) 7 | * [HTML / CSS](#html--css) 8 | * [iOS](#ios) 9 | * [Java](#java) 10 | * [Language Agnostic](#language-agnostic) 11 | * [PHP](#php) 12 | * [Python](#python) 13 | * [TypeScript](#typescript) 14 | * [Vue.js](#vuejs) 15 | 16 | 17 | ### Algoritmos 18 | 19 | * [Curso em Vídeo - Curso de Lógica de Programação](https://www.youtube.com/playlist?list=PLHz_AreHm4dmSj0MHol_aoNYCSGFqvfXV) (screencast) 20 | 21 | 22 | ### Angular 23 | 24 | * [Loiane - Angular 4](https://www.youtube.com/watch?v=tPOMG0D57S0&list=PLGxZ4Rq3BOBoSRcKWEdQACbUCNWLczg2G) (screencast) 25 | 26 | 27 | ### Databases 28 | 29 | * [Curso em Vídeo - Banco de Dados MySQL](https://www.youtube.com/playlist?list=PLHz_AreHm4dkBs-795Dsgvau_ekxg8g1r) (screencast) 30 | * [DatabaseCast](http://databasecast.com.br) (podcast) 31 | 32 | 33 | ### DataScience 34 | 35 | * [Pizza de Dados](https://pizzadedados.com) (podcast) 36 | 37 | 38 | ### HTML / CSS 39 | 40 | * [Curso em Vídeo - HTML5, CSS3 e JavaScript](https://www.youtube.com/playlist?list=PLHz_AreHm4dlAnJ_jJtV29RFxnPHDuk9o) (screencast) 41 | 42 | 43 | ### iOS 44 | 45 | * [CocoaHeads](http://www.cocoaheads.com.br/podcasts) (podcast) 46 | 47 | 48 | ### Java 49 | 50 | * [Curso em Vídeo - Java Iniciante](https://www.youtube.com/playlist?list=PLHz_AreHm4dkI2ZdjTwZA4mPMxWTfNSpR) (screencast) 51 | * [Curso em Vídeo - Java Orientado a Objetos](https://www.youtube.com/playlist?list=PLHz_AreHm4dkqe2aR0tQK74m8SFe-aGsY) (screencast) 52 | * [Loiane - Java Básico](https://www.youtube.com/watch?v=LnORjqZUMIQ&list=PLGxZ4Rq3BOBq0KXHsp5J3PxyFaBIXVs3r) (screencast) 53 | * [Loiane - Java Intermediario](https://www.youtube.com/watch?v=EdEKx24xHGc&list=PLGxZ4Rq3BOBoqYyFWOV_YbfBW80YGAGEI) (screencast) 54 | * [Maratona Java - O maior curso Java em português](https://www.youtube.com/playlist?list=PL62G310vn6nHrMr1tFLNOYP_c73m6nAzL) (screencast) 55 | * [Maratona JSF - O maior curso JSF do Brasil](https://www.youtube.com/playlist?list=PL62G310vn6nHSNpACkELWiPlM8J8z8t5J) (screencast) 56 | * [Spring Boot essentials: O essencial do Spring Boot](https://www.youtube.com/playlist?list=PL62G310vn6nF3gssjqfCKLpTK2sZJ_a_1) (screencast) 57 | 58 | 59 | ### Language Agnostic 60 | 61 | * [Castálio Podcast](http://castalio.info) (podcast) 62 | * [DevNaEstrada](http://devnaestrada.com.br) (podcast) 63 | * [Grok Podcast](http://www.grokpodcast.com) (podcast) 64 | * [Hipsters Ponto Tech](http://hipsters.tech) (podcast) 65 | * [Lambda3](https://blog.lambda3.com.br/category/podcast) (podcast) 66 | * [NerdTech (Jovem Nerd)](https://jovemnerd.com.br/playlist/nerdtech) (podcast) 67 | * [PODebug](http://www.podebug.com) (podcast) 68 | * [PodProgramar](https://mundopodcast.com.br/podprogramar) (podcast) 69 | * [Screencast DevMedia - Lazy Load](https://www.youtube.com/playlist?list=PLi75dzoFwEbo89TG5IaD4ODYPeJK9uxA5) (screencast) 70 | * [Screencasts - Andre Baltieri](https://www.youtube.com/playlist?list=PLTMuY7ptzFISwigIWpZQtp6b0TuEEvqLC) (screencast) 71 | 72 | 73 | ### PHP 74 | 75 | * [Curso em Vídeo - PHP Iniciante](https://www.youtube.com/watch?v=F7KzJ7e6EAc&list=PLHz_AreHm4dm4beCCCmW4xwpmLf6EHY9k) (screencast) 76 | * [Curso em Vídeo - PHP Orientado a Objetos](https://www.youtube.com/watch?v=KlIL63MeyMY&list=PLHz_AreHm4dmGuLII3tsvryMMD7VgcT7x) (screencast) 77 | 78 | 79 | ### Python 80 | 81 | * [Curso em Vídeo - Python Mundo 1](https://www.youtube.com/watch?v=S9uPNppGsGo&list=PLHz_AreHm4dlKP6QQCekuIPky1CiwmdI6) (screencast) 82 | * [Curso em Vídeo - Python Mundo 2](https://www.youtube.com/watch?v=nJkVHusJp6E&list=PLHz_AreHm4dk_nZHmxxf_J0WRAqy5Czye) (screencast) 83 | * [Curso em Vídeo - Python Mundo 3](https://www.youtube.com/watch?v=0LB3FSfjvao&list=PLHz_AreHm4dksnH2jVTIVNviIMBVYyFnH) (screencast) 84 | 85 | 86 | ### TypeScript 87 | 88 | * [TypeScript - Aprendendo Junto](https://www.youtube.com/playlist?list=PL62G310vn6nGg5OzjxE8FbYDzCs_UqrUs) (screencast) 89 | 90 | 91 | #### Vue.js 92 | 93 | * [Série de vídeos sobre Vue.js](https://vimeo.com/channels/1115590/videos/) - Origem: Vedovelli (screencast) 94 | 95 | 96 | -------------------------------------------------------------------------------- /free-programming-books-tr.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Android](#android) 4 | * [AspectJ](#aspectj) 5 | * [C](#c) 6 | * [CSS](#css) 7 | * [D](#d) 8 | * [Dart](#dart) 9 | * [Fortran](#fortran) 10 | * [Git](#git) 11 | * [Go](#go) 12 | * [Html](#html) 13 | * [iOS](#ios) 14 | * [JavaScript](#javascript) 15 | * [LaTeX](#latex) 16 | * [Linux](#linux) 17 | * [Matlab](#matlab) 18 | * [.NET Framework](#net-framework) 19 | * [PHP](#php) 20 | * [Python](#python) 21 | * [Django](#django) 22 | * [R](#r) 23 | * [Ruby](#ruby) 24 | * [Rust](#rust) 25 | 26 | 27 | ### Android 28 | 29 | * [Android Geleceği Yazanlar](https://gelecegiyazanlar.turkcell.com.tr/konu/android) 30 | 31 | 32 | ### AspectJ 33 | 34 | * [AspectJ Kitabı](http://kodcu.com/aspectj-ebook/) 35 | 36 | 37 | ### C 38 | 39 | * [C Programlama Diline Giriş](http://www1.gantep.edu.tr/~bingul/c/index.php) 40 | * [Programlamaya Giriş Ders Notları, H. Turgut Uyar](http://web.itu.edu.tr/uyar/programlama/) 41 | * [Sistem Programlama ve İleri C Uygulamaları Kurs Notları - Uyarlama 1](http://www.kaanaslan.com/resource/course_note/download_file.php?file_id=16) 42 | 43 | 44 | ### CSS 45 | 46 | * [CSS Dersleri](http://fatihhayrioglu.com/css-dersleri/) 47 | 48 | 49 | ### D 50 | 51 | * [D Programlama Dili](http://ddili.org/ders/d/D_Programlama_Dili.pdf) (PDF) 52 | 53 | 54 | ### Dart 55 | 56 | * [Dart - Merhaba Dünya](http://dartogreniyorum.blogspot.com.tr/2013/03/yeniden-dart.html?view=sidebar) 57 | 58 | 59 | ### Fortran 60 | 61 | * [Fortran Programlama Dili](http://www1.gantep.edu.tr/~bingul/f95/index.php) 62 | 63 | 64 | ### Git 65 | 66 | * [git - basit rehber](http://rogerdudler.github.io/git-guide/index.tr.html) 67 | * [Git 101](https://www.gitbook.com/book/aliozgur/git101/details) by [Ali Özgür](https://github.com/aliozgur) 68 | 69 | 70 | ### Go 71 | 72 | * [Go Turu](https://go-tour-turkish.appspot.com/welcome/1) 73 | 74 | 75 | ### Html 76 | 77 | * [Html'e Giriş](http://www.htmldersleri.org) 78 | * [Html'e Yolculuk](https://github.com/paufsc/journey-to-html) 79 | 80 | 81 | ### iOS 82 | 83 | * [iOS Geleceği Yazanlar](https://gelecegiyazanlar.turkcell.com.tr/konu/ios) 84 | 85 | 86 | ### JavaScript 87 | 88 | * [JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/tr) 89 | 90 | 91 | ### LaTeX 92 | 93 | * [İnce bir LaTeX2ε Elkitabı](http://www.ctan.org/tex-archive/info/lshort/turkish) 94 | 95 | 96 | ### Linux 97 | 98 | * [GNU Bash Başvuru Kılavuzu](http://belgeler.org/bashref/bashref.html) 99 | * [Linux Belgeleri](http://belgeler.org/howto/howtos.html) 100 | * [Linux Sistem Yöneticisinin Kılavuzu](http://belgeler.org/sag/sag.html) 101 | * [UNIX/Linux Sistem Programlama Kurs Notları](http://www.kaanaslan.com/resource/course_note/course_note.php) 102 | 103 | 104 | ### Matlab 105 | 106 | * [Matlab Programlamaya Giris](http://ismailari.com/blog/matlab-programlamaya-giris/) 107 | 108 | 109 | ### .NET Framework 110 | 111 | * [ASP.NET Core El Kitabı](https://sahin.gitbook.io/asp-net-core-el-kitab) 112 | 113 | 114 | ### PHP 115 | 116 | * [PHP - Laravel 4 Türkçe Dokumantasyon](https://leanpub.com/laravel4-tr) 117 | 118 | 119 | ### Python 120 | 121 | * [Bilgisayar Bilimcisi Gibi Düşünmek-Python3 ile Öğrenme](http://ofenerci.github.io/thinkcspy-tr) - Peter Wentworth, Jeffrey Elkner, Allen B. Downey ve Chris Meyers 122 | * [Python ile Programlama](https://belgeler.yazbel.com/python-istihza/) 123 | 124 | 125 | ### Django 126 | 127 | * [Django Girls Eğitimi](https://tutorial.djangogirls.org/tr/) (1.11) (HTML) (:construction: *in process*) 128 | 129 | 130 | ### R 131 | 132 | * [Ekonometriye Yeni Başlayanlar için Kısa bir R Kılavuzu](https://github.com/emraher/eybkbrk) 133 | 134 | 135 | ### Ruby 136 | 137 | * [AB2014 Ruby Programlama Dili](https://github.com/leylaKapi/AB2014-Ruby-Programlama-Dili/blob/master/Ruby_AB2014.md) 138 | * [Ruby](https://www.ruby-lang.org/tr/) 139 | * [Ruby 101](https://www.gitbook.com/book/vigo/ruby-101/details) 140 | * [Ruby Kullanıcı Kılavuzu](http://www.belgeler.org/uygulamalar/ruby/ruby-ug.html) 141 | * [Yirmi Dakikada Ruby](https://www.ruby-lang.org/tr/documentation/quickstart/) 142 | 143 | 144 | ### Rust 145 | 146 | * [Rust'a Giriş](http://bit.ly/rustagiris) 147 | 148 | -------------------------------------------------------------------------------- /free-courses-pl.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Assembly Language](#assembly-language) 4 | * [Bash](#bash) 5 | * [Brainfuck](#brainfuck) 6 | * [C](#c) 7 | * [C#](#c-sharp) 8 | * [C++](#c-1) 9 | * [CSS](#css) 10 | * [HTML](#html) 11 | * [Java](#java) 12 | * [JavaScript](#javascript) 13 | * [MySQL](#mysql) 14 | * [PHP](#php) 15 | * [Python](#python) 16 | 17 | 18 | ### Assembly Language 19 | 20 | * [Gynvael's Asm (PL)](https://www.youtube.com/playlist?list=PL7CA8FE35B665D4DD) - Gynvael Coldwind 21 | 22 | 23 | ### Bash 24 | 25 | * [Bash - Skrypty powłoki](https://www.youtube.com/playlist?list=PLh6V3IQZSBSbls0j9DdkCpbbqQsBUzh4-) - Piotr Kośka 26 | * [Kurs BASH](https://www.youtube.com/playlist?list=PLHYqnLVqlfpyHMKNUkkdFQfueRcsssEj0) 27 | 28 | 29 | ### Brainfuck 30 | 31 | * [Programowanie w Brainfucku](https://www.youtube.com/watch?v=dzFgY4JsZe8) 32 | 33 | 34 | ### C 35 | 36 | * [Kurs Programowania w C](https://www.youtube.com/playlist?list=PLgeFsJ0yZyikV_e8YDl5rixXu-H6wFIIZ) 37 | 38 | 39 | ### C Sharp 40 | 41 | * [Podstawy programowania w języku C#](https://www.youtube.com/playlist?list=PLk5dbESAmUZh1cLITav0ZmDEqRujsPa93) 42 | 43 | 44 | ### C++ 45 | 46 | * [Kurs C++](https://www.youtube.com/playlist?list=PLE84826ABF088F7E8) 47 | * [Podejście obiektowe dla znających już podstawy C++ (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdozvOVheSRb_qPVU-4ZJA7uB) - Mirosław Zelent, Damian Stelmach 48 | * [PROGRAMOWANIE W C++. KURS OD PODSTAW, DLA KAŻDEGO (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdoxx0Y5wzs7CFpmBzb40PaDo) - Mirosław Zelent, Damian Stelmach 49 | 50 | 51 | ### CSS 52 | 53 | * [Kurs CSS. Wygląd strony www - kaskadowe arkusze stylów - Pasja informatyki (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdow6b2Qm3aTJbKT2BPo5iybv) - Mirosław Zelent, Damian Stelmach 54 | 55 | 56 | ### HTML 57 | 58 | * [Kurs HTML](https://www.youtube.com/playlist?list=PLpwxuvBp359NntV2cLO5LaH6tmd6efmHH) 59 | * [Kurs HTML - od zera do Webmastera](https://www.youtube.com/playlist?list=PL0zYPqHK5yJWsIn3PIproSyxO3nchPd99) 60 | * [Kurs html i css](https://www.youtube.com/playlist?list=PLs8Otihb6zvfosmWesJ_lkJS_HzL58gSS) 61 | * [Kurs HTML. Tworzenie zawartości stron internetowych](https://www.youtube.com/playlist?list=PLOYHgt8dIdox9Qq3X9iAdSVekS_5Vcp5r) - Mirosław Zelent, Damian Stelmach 62 | 63 | 64 | ### Java 65 | 66 | * [JAVA FX-wprowadzenie](https://www.youtube.com/playlist?list=PL-ikpm9wGd1HkA9PvGTYWZHtO-Xq_i_Mw) 67 | * [Java GUI: programowanie Graficznego Interfejsu Użytkownika](https://www.youtube.com/playlist?list=PL3298E3EB8CFDE9BA) 68 | * [Kurs JavaFX od podstaw](https://www.youtube.com/playlist?list=PLpzwMkmxJDUwQuQR7Rezut5UE_8UGDxkU) 69 | * [Kurs: Podstawy programowania w Javie](https://www.youtube.com/playlist?list=PL-ikpm9wGd1HzpzIatXOGQeElJmqVUbl8) 70 | * [Kurs programowania Java](https://www.youtube.com/playlist?list=PLED70A92187B1406A) 71 | * [Kurs programowania w języku Java (od podstaw!)](https://www.youtube.com/playlist?list=PLTs20Q-BTEMMJHb4GWFT34PAWxYyzndIY) 72 | 73 | 74 | ### JavaScript 75 | 76 | * [Kurs JavaScript](https://www.youtube.com/playlist?list=PLGjoxB-1BV8IKoG_fb934nZXSVi_v-4yg) - Jakub Jurkian 77 | * [Kurs JavaScript. Programowanie frontendowe (VIDEO)](https://www.youtube.com/playlist?list=PLOYHgt8dIdoxTUYuHS9ZYNlcJq5R3jBsC) - Mirosław Zelent, Damian Stelmach 78 | * [Programowanie w JavaScript od podstaw w 1 miesiąc](https://www.youtube.com/playlist?list=PLTs20Q-BTEMPRSzhrlAuu7yus1BuOLVrS) 79 | 80 | 81 | ### MySQL 82 | 83 | * [Kurs MySQL](https://www.youtube.com/playlist?list=PL748D0ACBEC371708) 84 | * [Kurs MySQL. Bazy danych, język zapytań SQL](https://www.youtube.com/playlist?list=PLOYHgt8dIdoymv-Wzvs8M-OsKFD31VTVZ) - Mirosław Zelent, Damian Stelmach 85 | 86 | 87 | ### PHP 88 | 89 | * [Kurs PHP](https://www.youtube.com/playlist?list=PLE974A9BEF34A967A) 90 | * [Kurs PHP](https://www.youtube.com/playlist?list=PLD54FE15FA250C6C0) 91 | * [Kurs PHP. Programowanie backendowe](https://www.youtube.com/playlist?list=PLOYHgt8dIdox81dbm1JWXQbm2geG1V2uh) - Mirosław Zelent, Damian Stelmach 92 | * [PHP - Kurs wideo](https://www.youtube.com/playlist?list=PLbOPmSDkHx2qfl91W8DFF3jhgjhWv6fkm) 93 | * [PHP dla początkujących - cały kurs](https://www.youtube.com/playlist?list=PL3pH4hKPTCS2XfwSI1VTRvP8xNtzY3gpi) 94 | * [Programowanie obiektowe w języku PHP5 (Szkolenie wideo)](https://www.youtube.com/playlist?list=PL_nu3rOfoPo4HIKGae-kSrJL-ebG7vyQ6) 95 | 96 | 97 | ### Python 98 | 99 | * [Kurs Python](https://www.youtube.com/playlist?list=PL3yDCQ6GKeEyBOF0gZyBvihDv6n0GNsdm) 100 | * [Kurs Python - Darmowy Po Polsku](https://www.youtube.com/playlist?list=PL_dDQ_G9rdI6dQsDkwqSQyAeXY3uUrWzp) 101 | * [Kurs Python 3](https://www.youtube.com/playlist?list=PLdBHMlEKo8UcOaykMssI1_X6ui0tzTNoH) 102 | * [Python 3 - Kurs wideo](https://www.youtube.com/playlist?list=PLbOPmSDkHx2pCboufcEKkinpUuramshmr) 103 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This page is available as an easy-to-read website at [https://ebookfoundation.github.io/](https://ebookfoundation.github.io/free-programming-books/). 2 | 3 | # List of Free Learning Resources [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 4 | 5 | [View the English list](/free-programming-books.md) 6 | 7 | ## Intro 8 | This list was originally a clone of [stackoverflow - List of Freely Available Programming Books](http://web.archive.org/web/20130824154208/http://stackoverflow.com/a/392926) with contributions from Karan Bhangui and George Stocker. 9 | 10 | The list was moved to GitHub by Victor Felder for collaborative updating and maintenance. It has grown to become one of the [most popular repositories on Github](https://octoverse.github.com/), with over 100,000 stars, over 4500 commits, over 950 contributors, and over 25,000 forks. 11 | 12 | The repo is now administered by the [Free Ebook Foundation](https://ebookfoundation.org), a not-for-profit organization devoted to promoting the creation, distribution, archiving and sustainability of free ebooks. [Donations](https://ebookfoundation.org/contributions.html) to the Free Ebook Foundation are tax-deductible in the US. 13 | 14 | ### How To Contribute 15 | 16 | Please read [CONTRIBUTING](/CONTRIBUTING.md). If you're new to Github, [welcome](/HOWTO.md)! 17 | 18 | ### How to Share 19 | + [Share on Twitter](http://twitter.com/home?status=https://github.com/EbookFoundation/free-programming-books%0AFree%20Programming%20Books) 20 | + [Share on Facebook](http://www.facebook.com/sharer/sharer.php?s=100&p[url]=https://github.com/EbookFoundation/free-programming-books&p[images][0]=&p[title]=Free%20Programming%20Books&p[summary]=) 21 | + [Share on Google Plus](https://plus.google.com/share?url=https://github.com/EbookFoundation/free-programming-books) 22 | + [Share on LinkedIn](http://www.linkedin.com/shareArticle?mini=true&url=https://github.com/EbookFoundation/free-programming-books&title=Free%20Programming%20Books&summary=&source=) 23 | + [Share on Telegram](https://t.me/share/url?url=https://github.com/EbookFoundation/free-programming-books) 24 | 25 | 26 | ### In Other Written Languages 27 | + [Arabic](/free-programming-books-ar.md) 28 | + [Azerbaijani](/free-programming-books-az.md) 29 | + [Bengali](/free-programming-books-bl.md) 30 | + [Bulgarian](/free-programming-books-bg.md) 31 | + [Burmese](/free-programming-books-mm.md) 32 | + [Chinese](/free-programming-books-zh.md) 33 | + [Czech](/free-programming-books-cs.md) 34 | + [Dutch](/free-programming-books-nl.md) 35 | + [English](/free-programming-books.md) 36 | + [French](/free-programming-books-fr.md) 37 | + [German](/free-programming-books-de.md) 38 | + [Greek](/free-programming-books-gr.md) 39 | + [Hungarian](/free-programming-books-hu.md) 40 | + [Indonesian](/free-programming-books-id.md) 41 | + [Italian](/free-programming-books-it.md) 42 | + [Japanese](/free-programming-books-ja.md) 43 | + [Korean](/free-programming-books-ko.md) 44 | + [Persian/Farsi (Iran)](/free-programming-books-fa_IR.md) 45 | + [Polish](/free-programming-books-pl.md) 46 | + [Portuguese (Brazil)](/free-programming-books-pt_BR.md) 47 | + [Portuguese (Portugal)](/free-programming-books-pt_PT.md) 48 | + [Romanian (Romania)](/free-programming-books-ro.md) 49 | + [Russian](/free-programming-books-ru.md) 50 | + [Slovak](/free-programming-books-sk.md) 51 | + [Spanish](/free-programming-books-es.md) 52 | + [Swedish](/free-programming-books-se.md) 53 | + [Turkish](/free-programming-books-tr.md) 54 | + [Ukrainian](/free-programming-books-ua.md) 55 | 56 | 57 | ### Free Online Courses 58 | + [Bulgarian](/free-courses-bg.md) 59 | + [English](/free-courses-en.md) 60 | + [Finnish](/free-courses-fi.md) 61 | + [German](/free-courses-de.md) 62 | + [Italian](/free-courses-it.md) 63 | + [Polish](/free-courses-pl.md) 64 | + [Portuguese (Brazil)](/free-courses-pt_BR.md) 65 | + [Russian](/free-courses-ru.md) 66 | + [Spanish](/free-courses-es.md) 67 | + [Vietnamese](/free-courses-vi.md) 68 | 69 | 70 | ### Interactive Programming Resources 71 | + [English](/free-programming-interactive-tutorials-en.md) 72 | + [Russian](/free-programming-interactive-tutorials-ru.md) 73 | 74 | 75 | ### Problem Sets and Competitive Programming 76 | + [Problem Sets](/problem-sets-competitive-programming.md) 77 | 78 | 79 | ### Podcast - Screencast 80 | Free Podcasts and Screencasts: 81 | 82 | + [Czech](/free-podcasts-screencasts-cs.md) 83 | + [English](/free-podcasts-screencasts-en.md) 84 | + [Portuguese (Brazil)](/free-podcasts-screencasts-pt_BR.md) 85 | + [Russian](/free-podcasts-screencasts-ru.md) 86 | + [Swedish](/free-podcasts-screencasts-se.md) 87 | 88 | 89 | ### Programming Playgrounds 90 | + [Free Programming Playgrounds](/free-programming-playgrounds.md) 91 | 92 | ## License 93 | Each file included in this repository is licensed under the [CC BY License](/LICENSE). 94 | -------------------------------------------------------------------------------- /free-programming-books-cs.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Bash](#bash) 4 | * [C#](#c-sharp) 5 | * [C++](#c-1) 6 | * [Git](#git) 7 | * [HTML](#html) 8 | * [Java](#java) 9 | * [Language Agnostic](#language-agnostic) 10 | * [Algoritmy a datové struktury](#algoritmy-a-datove-struktury) 11 | * [Bezpečnost](#bezpecnost) 12 | * [Matematika](#matematika) 13 | * [Právo](#pravo) 14 | * [Regulární výrazy](#regularni-vyrazy) 15 | * [Sítě](#site) 16 | * [LaTeX](#latex) 17 | * [Linux](#linux) 18 | * [Distribuce](#distribuce) 19 | * [OpenSource](#opensource) 20 | * [PHP](#php) 21 | * [Python](#python) 22 | * [Django](#django) 23 | * [Ruby](#ruby) 24 | * [TeX](#tex) 25 | * [Webdesign](#webdesign) 26 | * [XML](#xml) 27 | 28 | 29 | ### Bash 30 | 31 | * [Bash očima Bohdana Milara](http://i.iinfo.cz/files/root/k/bash_ocima_bohdana_milara.pdf) (PDF) 32 | 33 | 34 | ### C Sharp 35 | 36 | * [Programovací jazyk C#](http://www.cs.vsb.cz/behalek/vyuka/pcsharp/text.pdf) - Marek Běhálek (PDF) 37 | * [Systémové programování v jazyce C#](https://phoenix.inf.upol.cz/esf/ucebni/sysprog.pdf) (PDF) 38 | 39 | 40 | ### C++ 41 | 42 | * [Moderní programování objektových aplikací v C++](https://akela.mendelu.cz/~xvencal2/CPP/opora.pdf) (PDF) 43 | * [Objektové programování v C++](http://media1.jex.cz/files/media1:49e6b94e79262.pdf.upl/07.%20Objektov%C3%A9%20programov%C3%A1n%C3%AD%20v%20C%2B%2B.pdf) (PDF) 44 | * [Praktické programování v C++](http://www.uamt.feec.vutbr.cz/~richter/vyuka/XPPC/spolecne/prednes.pdf) (PDF) 45 | * [Programovací jazyky C a C++](http://homel.vsb.cz/~s1a10/educ/C_CPP/C_CPP_web.pdf) (PDF) 46 | * [Programování v C++](http://www1.osu.cz/~fojtik/doc/proc2.pdf) (PDF) 47 | 48 | 49 | ### Java 50 | 51 | * [Java 5.0, novinky jazyka a upgrade aplikací](http://i.iinfo.cz/files/root/k/java-5-0-novinky-jazyka-a-upgrade-aplikaci.pdf) (PDF) 52 | 53 | 54 | ### Git 55 | 56 | * [Pro Git](https://knihy.nic.cz) - Scott Chacon (PDF) 57 | 58 | 59 | ### HTML 60 | 61 | * [Ponořme se do HTML5](https://knihy.nic.cz) - Mark Pilgrim (PDF) 62 | 63 | 64 | ### Language Agnostic 65 | 66 | #### Algoritmy a datové struktury 67 | 68 | * [Základy algoritmizace](http://i.iinfo.cz/files/root/k/Zaklady_algorimizace.pdf) (PDF) 69 | 70 | 71 | #### Bezpečnost 72 | 73 | * [Báječný svět elektronického podpisu](https://knihy.nic.cz) - Jiří Peterka (PDF) 74 | * [Buď pánem svého prostoru](https://knihy.nic.cz) - Linda McCarthy a Denise Weldon-Siviy (PDF) 75 | 76 | 77 | #### Matematika 78 | 79 | * [Diskrétní matematika](http://math.feld.cvut.cz/habala/teaching/dma.htm) - Petr Habala (PDFs) 80 | * [Matematika SŠ](http://www.realisticky.cz/ucebnice.php?id=3) - Martin Krynický (PDFs) 81 | * [Think Stats: Pravděpodobnost a statistika pro programátory](http://eknihy.knihovna.cz/kniha/think-stats-pravdepodobnost-a-statistika-pro-programatory) - Allen B. Downey (PDF) 82 | 83 | 84 | #### Právo 85 | 86 | * [Internet jako objekt práva](https://knihy.nic.cz) - Ján Matejka (PDF) 87 | 88 | 89 | #### Regulární výrazy 90 | 91 | * [Regulární výrazy](http://www.root.cz/knihy/regularni-vyrazy/) (PDF) 92 | 93 | 94 | #### Sítě 95 | 96 | * [Internetový protokol IPv6](https://knihy.nic.cz) - Pavel Satrapa (PDF) 97 | 98 | 99 | ### LaTeX 100 | 101 | * [Ne příliš stručný úvod do systému LaTeX 2e](http://www.root.cz/knihy/ne-prilis-strucny-uvod-do-systemu-latex-2e/) (PDF) 102 | 103 | 104 | ### Linux 105 | 106 | * [Linux: Dokumentační projekt](http://www.root.cz/knihy/linux-dokumentacni-projekt/) (PDF) 107 | * [Učebnice ABCLinuxu](http://www.root.cz/knihy/ucebnice-abclinuxu/) (PDF) 108 | 109 | 110 | #### Distribuce 111 | 112 | * [Gentoo Handbook česky](http://www.root.cz/knihy/gentoo-handbook-cesky/) (PDF) 113 | * [Instalace a konfigurace Debian Linuxu](http://www.root.cz/knihy/instalace-a-konfigurace-debian-linuxu/) (PDF) 114 | * [Mandriva Linux 2008 CZ](http://www.root.cz/knihy/mandriva-linux-2008-cz/) (PDF) 115 | * [Příručka uživatele Fedora 17](http://www.root.cz/knihy/prirucka-uzivatele-fedora-17/) (PDF) 116 | * [SUSE Linux: uživatelská příručka](http://www.root.cz/knihy/suse-linux-uzivatelska-prirucka/) (PDF) 117 | 118 | 119 | ### OpenSource 120 | 121 | * [Katedrála a tržiště](http://www.root.cz/knihy/katedrala-a-trziste/) (PDF) 122 | * [Tvorba open source softwaru](https://knihy.nic.cz) - Karl Fogel (PDF) 123 | 124 | 125 | ### PHP 126 | 127 | * [PHP Tvorba interaktivních internetových aplikací](http://www.kosek.cz/php/php-tvorba-interaktivnich-internetovych-aplikaci.pdf) (PDF) 128 | 129 | 130 | ### Python 131 | 132 | * [Ponořme se do Pythonu 3](https://knihy.nic.cz) - Mark Pilgrim (PDF) 133 | * [Učebnice jazyka Python](http://i.iinfo.cz/files/root/k/Ucebnice_jazyka_Python.pdf) (PDF) 134 | 135 | 136 | #### Django 137 | 138 | * [Django Girls Tutoriál](https://tutorial.djangogirls.org/cs/) (1.11) (HTML) (:construction: *in process*) 139 | 140 | 141 | ### Ruby 142 | 143 | * [Ruby Tutoriál](http://i.iinfo.cz/files/root/k/Ruby_tutorial.pdf) (PDF) 144 | 145 | 146 | ### TeX 147 | 148 | * [První setkání s TeXem](http://www.root.cz/knihy/prvni-setkani-s-texem/) (PDF) 149 | * [TeXbook naruby](http://www.root.cz/knihy/texbook-naruby/) (PDF) 150 | 151 | 152 | ### Webdesign 153 | 154 | * [Webová režie: základy koncepčního myšlení u webových projektů](http://www.root.cz/knihy/webova-rezie-zaklady-koncepcniho-mysleni-u-webovych-projektu/) (PDF) 155 | 156 | 157 | ### XML 158 | 159 | * [XML pro každého](http://www.root.cz/knihy/xml-pro-kazdeho/) (PDF) 160 | -------------------------------------------------------------------------------- /CONTRIBUTING-zh.md: -------------------------------------------------------------------------------- 1 | *阅读本文的其他语言版本:[English](CONTRIBUTING.md)。* 2 | 3 | 4 | ## 贡献者许可协议 5 | 6 | 请遵循此[许可协议](https://github.com/EbookFoundation/free-programming-books/blob/master/LICENSE)参与贡献。 7 | 8 | 9 | ## 贡献者行为准则 10 | 11 | 请同意并遵循此[行为准则](https://github.com/EbookFoundation/free-programming-books/blob/master/CODE_OF_CONDUCT.md)参与贡献。 12 | 13 | 14 | ## 概要 15 | 16 | 1. "轻易可以下载一本书的链接" 通常都不是 *免费* 书籍的链接。 请只提供免费内容。 确信你所提供的书籍是免费的。我们不接受指向*需要*工作电子邮件地址才能获取书籍的页面的链接,但我们欢迎有需求它们的列表。 17 | 2. 当你在不够了解Git的时候发现了一些有趣的东西 *尚未出现在本仓库* 中,请开一个[Issue](https://github.com/EbookFoundation/free-programming-books/issues)进行主题讨论。 18 | * 如果你已经知晓Git,请Fork本仓库并提交PR。 19 | 3. 这里有5种列表,请选择正确的一个: 20 | 21 | * *Books* :PDF、HTML、ePub、基于一个 gitbook.io的站点、一个Git仓库等等。 22 | * *Courses* :课程是一种学习材料,而不是一本书 [This is a course](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011/)。 23 | * *Interactive Tutorials* :一个交互式网站,它允许用户输入代码或命令并对结果进行评估。例如:[Try Haskell](http://tryhaskell.org),[Try Github](http://try.github.io)。 24 | * *Podcasts and Screencasts* :播客和视频。 25 | * *Problem Sets & Competitive Programming* :一个网站或软件,让你通过解决简单或复杂的问题来评估你的编程技能,有或没有代码审查,有或没有与其他用户对比结果。 26 | 27 | 4. 确保遵循下面的[基本准则](#基本准则),并遵循本仓库文件的[Markdown规定格式](#规定格式)。 28 | 29 | 5. Travis CI 将运行测试,以确保你的列表是 **按字母顺序排列** 的,并 **遵循格式化规则**。请 **确保** 你的更改通过了该测试。 30 | 31 | 32 | ### 基本准则 33 | 34 | * 确保有你提交的每一本书是免费的。如有需要请做Double-check。如果你在PR中注明为什么你认为这本书是免费的,这将对管理员是很有帮助的。 35 | * 我们不接受存储在google drive、dropbox、mega、scribd、issuu和其他类似文件上传平台上的文件。 36 | * 请按照字母顺序插入链接。如果你看到一个错位的链接,请重新对他进行排序并提交一个PR。 37 | * 使用最权威来源的链接(意思是原作者的网站比编辑的网站好,比第三方网站好)。 38 | * 没有文件托管服务(包括(但不限于)Dropbox和谷歌驱动器链接)。 39 | * 优先选择使用 `https` 链接,而不是 `http` 链接 -- 只要它们位于相同的域并提供相同的内容。 40 | * 在根域上,去掉末尾的斜杠:使用 `http://example.com` 代替 `http://example.com/`。 41 | * 总是选择最短的链接:使用 `http://example.com/dir/` 比使用 `http://example.com/dir/index.html` 更好。 42 | * no URL shortener links 43 | * 优先选择使用 "current" 链接代替有 "version" 链接:使用 `http://example.com/dir/book/current/` 比使用 `http://example.com/dir/book/v1.0.0/index.html` 更好。 44 | * 如果一个链接存在过期的证书/自签名证书/SSL问题的任何其他类型: 45 | 1. *replace it* :如果可能的话,将其 *替换* 为对应的`http`(因为在移动设备上接受异常可能比较复杂)。 46 | 2. *leave it* :如果没有http版本,但仍然可以通过https访问链接,则在浏览器中添加异常或忽略警告。 47 | 3. *remove it* :上述以外删除掉它。 48 | * 如果一个链接以多种格式存在,请添加一个单独的链接,并注明每种格式。 49 | * 如果一个资源存在于Internet上的不同位置 50 | * 使用最权威来源的链接(意思是原始作者的网站比编辑的网站好,比第三方网站好)。 51 | * 如果它们链接到不同的版本,你认为这些版本差异很大,值得保留,那么添加一个单独的链接,并对每个版本做一个说明(参见[Issue #2353](https://github.com/EbookFoundation/free-programming-books/issues/2353)有助于格式化问题的讨论)。 52 | * 相较一个比较大的提交,我们更倾向于原子提交(通过添加/删除/修改进行一次提交)。在提交PR之前没有必要压缩你的提交。(我们永远不会执行这个规则,因为这只是维护人员的方便)。 53 | * 如果一本书比较旧,请在书名中注明出版日期。 54 | * 包含作者的名字或适当的名字。中文版本可以用 “等” 缩短作者列表。 55 | * 如果一本书还没有完成,并且仍在编写中,则需添加 “编写中” 符号,参见[下文](#in_process)所述。 56 | * 如果在开始下载之前需要电子邮件地址或帐户设置,请在括号中添加合适的语言描述,例如:`(*需要*电子邮件,但不是必须的)`。 57 | 58 | 59 | ### 规定格式 60 | 61 | * 所有列表都是`.md`文件。试着学习[Markdown](https://guides.github.com/features/mastering-markdown/)语法。它很容易上手! 62 | * 所有的列表都以索引开始。它的作用是列出并链接所有的sections(章节/段落)或subsections(子段落/子章节)。务必遵循字母顺序排列。 63 | * Sections(章节/段落)使用3级标题(`###`),subsections(子段落/子章节)使用4级标题 (`####`)。 64 | 65 | 66 | #### 整体思想为: 67 | 68 | * `2` :新添加的Section与末尾链接间必须留有`2`个空行 69 | * `1` :标题和第一个链接之间必须留有`1`个空行的空行 70 | * `0` :任何两个链接之间不能留有任何空行 71 | * `1` :每个`.md`文件末尾必须留有`1`个空行 72 | 73 | 74 | #### 举例: 75 | 76 | ``` 77 | [...] 78 | * [一本很有用的书](http://example.com/example.html) 79 | (空行) 80 | (空行) 81 | ### 电子书种类标题 82 | (空行) 83 | * [Another 很有用的书](http://example.com/book.html) 84 | * [Other 有用的书](http://example.com/other.html) 85 | ``` 86 | 87 | * 在 `]` 和 `(` 之间不要留有空格: 88 | 89 | ``` 90 | 错误:* [一本很有用的书] (http://example.com/book.html) 91 | 正确:* [一本很有用的书](http://example.com/book.html) 92 | ``` 93 | 94 | * 如果包括作者,请使用' - '(由单个空格(英文半角)包围的破折号): 95 | 96 | ``` 97 | 错误:* [一本很有用的书](http://example.com/book.html)- 张显宗 98 | 正确:* [一本很有用的书](http://example.com/book.html) - 张显宗 99 | ``` 100 | 101 | * 在链接和电子书格式之间放一个空格: 102 | 103 | ``` 104 | 错误:* [一本很有用的书](https://example.org/book.pdf)(PDF) 105 | 正确:* [一本很有用的书](https://example.org/book.pdf) (PDF) 106 | ``` 107 | 108 | * 如需备注或注解,请使用英文半角括号`( )`: 109 | 110 | ``` 111 | 错误:* [一本很有用的书](https://example.org/book.pdf) (繁体中文) 112 | 正确:* [一本很有用的书](https://example.org/book.pdf) (繁体中文) 113 | ``` 114 | 115 | * 作者在电子书格式之前: 116 | 117 | ``` 118 | 错误:* [一本很有用的书](https://example.org/book.pdf)- (PDF) 张显宗 119 | 正确:* [一本很有用的书](https://example.org/book.pdf) - 张显宗 (PDF) 120 | ``` 121 | 122 | * 多重格式: 123 | 124 | ``` 125 | 错误:* [一本很有用的书](http://example.com/)- 张显宗 (HTML) 126 | 错误:* [一本很有用的书](https://downloads.example.org/book.html)- 张显宗 (download site) 127 | 正确:* [一本很有用的书](http://example.com/) - 张显宗 (HTML) [(PDF, EPUB)](https://downloads.example.org/book.html) 128 | ``` 129 | 130 | * 多作者,多译者时,请使用中文 `、` 进行分隔,在译者名字后请使用英文半角括号包围的 `(翻译)`,可以用 “等” 缩短作者列表: 131 | 132 | ``` 133 | 错误:* [一本很有用的书](https://example.org/book.pdf) - 张显宗,岳绮罗 134 | 正确:* [一本很有用的书](https://example.org/book.pdf) - 张显宗、岳绮罗(翻译) 135 | 正确:* [一本很有用的书](https://example.org/book.pdf) - 张显宗、岳绮罗、顾玄武、出尘子 等 136 | ``` 137 | 138 | * 在旧书的标题中包括出版年份: 139 | 140 | ``` 141 | 错误:* [一本很有用的书](https://example.org/book.html) - 张显宗 - 1970 142 | 正确:* [一本很有用的书 (1970)](https://example.org/book.html) - 张显宗 143 | ``` 144 | 145 | 146 | * 编写(翻译)中的书籍: 147 | 148 | ``` 149 | 正确:* [马上出版的一本书](http://example.com/book2.html) - 张显宗 (HTML) (:construction: *编写中*) 150 | 正确:* [马上出版的一本书](http://example.com/book2.html) - 张显宗 (HTML) (:construction: *翻译中*) 151 | ``` 152 | -------------------------------------------------------------------------------- /free-programming-books-hu.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [0 - Programozási nyelv független](#0---programozasi-nyelv-fuggetlen) 4 | * [Ada](#ada) 5 | * [Arduino](#arduino) 6 | * [C++](#c) 7 | * [HTML / CSS](#html-css) 8 | * [Java](#java) 9 | * [Lego Mindstorms](#lego-mindstorms) 10 | * [LISP](#lisp) 11 | * [.NET](#net) 12 | * [PHP](#php) 13 | * [PowerShell](#powershell) 14 | * [Python](#python) 15 | * [Django](#django) 16 | * [Windows Phone](#windows-phone) 17 | 18 | 19 | ### 0 - Programozási nyelv független 20 | 21 | * [A hitelesítés-szolgáltatókkal szembeni bizalom erősítése](http://mek.oszk.hu/03900/03943/index.phtml) - Várnai Róbert (PDF) 22 | * [Adatmodellezés](http://mek.oszk.hu/11100/11144/index.phtml) - Halassy Béla (Word, PDF) 23 | * [Az adatbázistervezés alapjai és titkai](http://mek.oszk.hu/11100/11123/index.phtml) - Halassy Béla (Word, PDF) 24 | * [Ember, információ, rendszer](http://mek.oszk.hu/11100/11122/index.phtml) - Halassy Béla (Word, PDF) 25 | * [Formális nyelvek](http://mek.oszk.hu/05000/05099/index.phtml) - Bach Iván (PDF) 26 | * [Mese a felhasználó központú tervezőről](http://mek.oszk.hu/11700/11748/index.phtml) - David Travis, ford.: Favorit Fordító Iroda (PDF) 27 | * [Prognyelvek portál](http://nyelvek.inf.elte.hu/index.php) - Felelős oktató: Nyékyné Gaizler Judit (HTML) 28 | 29 | 30 | ### Ada 31 | 32 | * [Az Ada programozási nyelv](http://mek.oszk.hu/01200/01256/index.phtml) - Kozics Sándor (PDF) 33 | 34 | 35 | ### Arduino 36 | 37 | * [Arduino programozási kézikönyv](http://avr.tavir.hu) - Brian W. Evans írása alapján fordította, kiegészítette és frissítette Cseh Róbert (PDF - regisztráció szükséges) 38 | 39 | 40 | ### C++ 41 | 42 | * [Fejlett programozási technikák](http://www.ms.sapientia.ro/~manyi/teaching/c++/cpp.pdf) - Antal Margit (PDF) 43 | 44 | 45 | ### HTML / CSS 46 | 47 | * [CSS alapjai](http://weblabor.hu/cikkek/cssalapjai1) - Bártházi András (HTML) 48 | * [Webes szabványok](http://nagygusztav.hu/webes-szabvanyok) - Chris Mills, Ben Buchanan, Tom Hughes-Croucher, Mark Norman "Norm" Francis, Linda Goin, Paul Haine, Jen Hanen, Benjamin Hawkes-Lewis, Ben Henick, Christian Heilmann, Roger Johansson, Peter-Paul Koch, Jonathan Lane, Tommy Olsson, Nicole Sullivan és Mike West, ford.: Nagy Gusztáv (PDF) 49 | 50 | 51 | ### Java 52 | 53 | * [CORBA-alapú elosztott alkalmazások](http://mek.oszk.hu/01400/01404/index.phtml) - Csizmazia Balázs (PDF) 54 | * [Fantasztikus programozás](http://mek.oszk.hu/00800/00889/index.phtml) - Bátfai Mária Erika, Bátfai Norbert (PDF) 55 | * [Hálózati alkalmazások Java nyelven](http://mek.oszk.hu/01300/01304/index.phtml) - Csizmazia Anikó, Csizmazia Balázs (PDF) 56 | * [Hálózati alkalmazások készítése: CORBA, Java, WWW](http://mek.oszk.hu/01700/01750/index.phtml) - Csizmazia Balázs (PS) 57 | * [Java alapú webtechnológiák](http://www.ms.sapientia.ro/~manyi/index_java_techn.html) - Antal Margit (PDF) 58 | * [Java programozás](http://nagygusztav.hu/java-programozas) - Nagy Gusztáv (PDF) 59 | * [Objektumorientált programozás](http://www.ms.sapientia.ro/~manyi/teaching/oop/oop.pdf) - Antal Margit (PDF) 60 | * [Programozás III.](http://www.sze.hu/~varjasin/oktat.html) - Varjasi Norbert (PDF) 61 | * [RMI](http://mek.oszk.hu/01200/01263/index.phtml) - Dékány Dániel (PDF) 62 | 63 | 64 | ### Lego Mindstorms 65 | 66 | * [A MINDSTORMS EV3 robotok programozásának alapjai](http://www.hdidakt.hu/adat/dw_anyagok/dw_74.pdf) - Kiss Róbert (PDF) 67 | * [Egyszerű robotika, A Mindstorms NXT robotok programozásának alapjai](http://www.amcham.hu/download/002/556/Robotkonyv_KR_BZS.pdf) - Kiss Róbert, Badó Zsolt (PDF) 68 | 69 | 70 | ### LISP 71 | 72 | * [A LISP programozási nyelv](http://mek.oszk.hu/07200/07258/index.phtml) - Zimányi Magdolna, Kálmán László, Fadgyas Tibor (PDF) 73 | 74 | 75 | ### Linux 76 | 77 | * [A GNU/Linux programozása grafikus felületen](http://mek.oszk.hu/05500/05528/index.phtml) - Pere László (PDF) 78 | * [GNU/Linux segédprogramok használata](http://mek.oszk.hu/08700/08742/index.phtml) - Terék Zsolt (PDF) 79 | 80 | 81 | ### .NET 82 | 83 | * [C#](http://mek.oszk.hu/10300/10384/index.phtml) - Reiter István (PDF) 84 | * [C# programozás lépésről lépésre](http://devportal.hu) - Reiter István (PDF) 85 | * [Honlapépítés a XXI. században](http://mek.oszk.hu/10300/10392/index.phtml) - A WebMatrix csapat és Balássy György (PDF) 86 | * [Silverlight 4](http://mek.oszk.hu/10300/10382/index.phtml) - Árvai Zoltán, Csala Péter, Fár Attila Gergő, Kopacz Botond, Reiter István, Tóth László (PDF) 87 | 88 | 89 | ### PHP 90 | 91 | * [Drupal 6 alapismeretek](http://nagygusztav.hu/drupal-6-alapismeretek) - Nagy Gusztáv (PDF) 92 | * [Drupal 7 alapismeretek](http://nagygusztav.hu/drupal-7-alapismeretek) - Nagy Gusztáv (PDF) 93 | * [Web programozás alapismeretek](http://nagygusztav.hu/web-programozas) - Nagy Gusztáv (PDF) 94 | * [Webadatbázis-programozás](http://ade.web.elte.hu/wabp/index.html) - Horváth Győző, Tarcsi Ádám (HTML) 95 | 96 | 97 | ### PowerShell 98 | 99 | * [Microsoft PowerShell 2.0](http://mek.oszk.hu/10400/10402/index.phtml) - Soós Tibor (PDF) 100 | 101 | 102 | ### Python 103 | 104 | * [Bevezetés a Pythonba példákkal](http://mek.oszk.hu/08400/08436/index.phtml) - Raphaël Marvie, ford.: Daróczy Péter (PDF) 105 | * [Bevezetés a wxPythonba](http://mek.oszk.hu/08400/08446/index.phtml) - Jeremy Berthet, Gilles Doge, ford.: Daróczy Péter (PDF) 106 | * [Tanuljunk meg programozni Python nyelven](http://mek.oszk.hu/08400/08435/index.phtml) - Gérard Swinnen, ford.: Daróczy Péter (PDF, ODT) 107 | 108 | 109 | #### Django 110 | 111 | * [Django Girls Tutorial](https://tutorial.djangogirls.org/hu/) (1.11) (HTML) (:construction: *in process*) 112 | 113 | 114 | ### Windows Phone 115 | 116 | * [Windows Phone fejlesztés lépésről lépésre](http://mek.oszk.hu/10300/10393/) - Árvai Zoltán, Fár Attila Gergő, Farkas Bálint, Fülöp Dávid, Komjáthy Szabolcs, Turóczi Attila, Velvárt András (PDF) 117 | -------------------------------------------------------------------------------- /free-programming-interactive-tutorials-en.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Bash](#bash) 4 | * [C](#c) 5 | * [C#](#c-sharp) 6 | * [C++](#c-1) 7 | * [Clojure](#clojure) 8 | * [CoffeeScript](#coffeescript) 9 | * [Erlang](#erlang) 10 | * [Git](#git) 11 | * [GLSL](#glsl) 12 | * [Go](#go) 13 | * [Haskell](#haskell) 14 | * [HTML / CSS](#html--css) 15 | * [Java](#java) 16 | * [Javascript](#javascript) 17 | * [Angular.js](#angularjs) 18 | * [Language Agnostic](#language-agnostic) 19 | * [Operating Systems](#operating-systems) 20 | * [Lisp](#lisp) 21 | * [MATLAB](#matlab) 22 | * [Node](#node) 23 | * [NoSQL](#nosql) 24 | * [Objective-C](#objective-c) 25 | * [Ocaml](#ocaml) 26 | * [PHP](#php) 27 | * [Python](#python) 28 | * [Ruby](#ruby) 29 | * [Scala](#scala) 30 | * [SQL](#sql) 31 | * [Vim](#vim) 32 | 33 | 34 | ### Bash 35 | 36 | * [Help messages will explain everything](https://explainshell.com) 37 | * [Learn Shell Programming](http://www.learnshell.org) 38 | 39 | 40 | ### C 41 | 42 | * [Learn C](http://www.learn-c.org) 43 | 44 | 45 | ### C Sharp 46 | 47 | * [Learn C#](http://www.learncs.org) 48 | 49 | 50 | ### C++ 51 | 52 | * [CppKoans](https://github.com/torbjoernk/CppKoans) 53 | 54 | 55 | ### Clojure 56 | 57 | * [4Clojure - Koans](http://www.4clojure.com) 58 | * [Clojure Koans](http://clojurekoans.com) 59 | * [ClojureScript Koans](http://clojurescriptkoans.com) 60 | * [Try Clojure](http://www.tryclj.com) 61 | 62 | 63 | ### CoffeeScript 64 | 65 | * [Coffeescript Style Guide](https://github.com/polarmobile/coffeescript-style-guide/blob/master/README.md) 66 | * [Smooth CoffeeScript, Interactive Edition](http://autotelicum.github.io/Smooth-CoffeeScript/interactive/interactive-coffeescript.html) 67 | 68 | 69 | ### Erlang 70 | 71 | * [Try Erlang](http://www.tryerlang.org) 72 | 73 | 74 | ### Git 75 | 76 | * [Githug](https://github.com/Gazler/githug) (Tutorial in shell) 77 | * [Learn Git Branching](http://pcottle.github.io/learnGitBranching/) 78 | * [Try Git](http://try.github.io) 79 | 80 | 81 | ### GLSL 82 | 83 | * [The Book of Shaders](https://thebookofshaders.com) 84 | 85 | 86 | ### Go 87 | 88 | * [Go Koans](https://github.com/cdarwin/go-koans) 89 | * [The Go Tutorial](http://tour.golang.org) 90 | 91 | 92 | ### Haskell 93 | 94 | * [Try Haskell!](http://tryhaskell.org) 95 | 96 | 97 | ### HTML / CSS 98 | 99 | * [CSS Diner](http://flukeout.github.io) 100 | * [Flexbox Defense](http://flexboxdefense.com) 101 | * [Flexbox Froggy](http://flexboxfroggy.com) 102 | * [Learn by doing beginner projects](https://dash.generalassemb.ly) 103 | * [Learn HTML & CSS interactively](https://www.codecademy.com/learn/web) 104 | * [Prototyping a professional website](https://www.codecademy.com/skills/make-a-website) 105 | 106 | 107 | ### Java 108 | 109 | * [CodingBat code practice](http://codingbat.com/java) 110 | * [Java at Codecademy](https://www.codecademy.com/courses/learn-java) 111 | * [Learn Java](http://www.learnjavaonline.org) 112 | * [Learneroo Java tutorial](https://www.learneroo.com/modules/11) 113 | 114 | 115 | ### JavaScript 116 | 117 | * [ABC of JavaScript : An Interactive JavaScript Tutorial](http://www.openjs.com/tutorials/basic_tutorial/) 118 | * [Codecademy jquery track](https://www.codecademy.com/learn/jquery) 119 | * [ES6 Interactive Guide](http://stack.formidable.com/es6-interactive-guide/#/) 120 | * [Functional Programming in Javascript](https://github.com/ReactiveX/learnrx) 121 | * [Javascript interactive tutorial on CodeCademy](https://www.codecademy.com/learn/javascript) 122 | * [Javascript interactive tutorial on CoderMania](http://www.codermania.com/javascript/lesson/1a/hello-world) 123 | * [Javascripting](https://github.com/sethvincent/javascripting) 124 | * [Learn JavaScript](http://www.learn-js.org) 125 | * [Learn knockout.js](http://learn.knockoutjs.com) 126 | * [Learning Advanced JavaScript](http://ejohn.org/apps/learn/) 127 | * [Try jQuery](http://try.jquery.com) 128 | 129 | 130 | #### Angular.js 131 | 132 | * [Angular Basics](http://www.angularjsbook.com) 133 | * [AngularJS - Step by Logical Step](http://nicholasjohnson.com/angular-book/) 134 | * [egghead.io: Learn AngularJS with Tutorial Videos & Training](https://egghead.io) 135 | * [Learn AngularJS with free interactive lessons](http://www.learn-angular.org) 136 | 137 | 138 | ### Language Agnostic 139 | 140 | * [CodeCombat](http://codecombat.com) - Python, JavaScript, CoffeeScript, Clojure, Lua, Io 141 | * [Codility](https://codility.com/programmers/) 142 | * [Python Tutor](http://pythontutor.com) - Python, Java, JavaScript, TypeScript, Ruby, C, C++ 143 | * [The Fullstack Tutorial for GraphQL](https://www.howtographql.com) 144 | 145 | 146 | #### Operating systems 147 | 148 | * [Learning operating system development using Linux kernel and Raspberry Pi](https://github.com/s-matyukevich/raspberry-pi-os) - Sergey Matyukevich (:construction: *in process*) 149 | 150 | 151 | ### Lisp 152 | 153 | * [Lisp Koans](https://github.com/google/lisp-koans) 154 | 155 | 156 | ### MATLAB 157 | 158 | * [Interactive Tutorials for MATLAB, Simulink, Signal Processing, Controls, and Computational Mathematics](http://www.mathworks.com/tutorials) 159 | 160 | 161 | ### Node 162 | 163 | * [Node School](http://nodeschool.io) 164 | 165 | 166 | ### NoSQL 167 | 168 | * [MongoDB Koans](https://github.com/chicagoruby/MongoDB_Koans) 169 | * [Try Redis](http://try.redis.io) 170 | 171 | 172 | ### Objective-C 173 | 174 | * [Try Objective-C](http://tryobjectivec.codeschool.com) 175 | 176 | 177 | ### Ocaml 178 | 179 | * [Try Ocaml](http://try.ocamlpro.com) 180 | 181 | 182 | ### PHP 183 | 184 | * [CodeCademy PHP](https://www.codecademy.com/learn/php) 185 | * [Learn PHP](http://www.learn-php.org) 186 | 187 | 188 | ### Python 189 | 190 | * [Codecademy Python course](https://www.codecademy.com/learn/python) 191 | * [How to Think Like a Computer Scientist: Learning with Python, Interactive Edition](http://interactivepython.org/courselib/static/thinkcspy/index.html) 192 | * [Learn Python](http://www.learnpython.org) 193 | * [Learn Python Step by Step](http://www.techbeamers.com/python-tutorial-step-by-step) 194 | * [Python Koans](https://github.com/gregmalcolm/python_koans) 195 | 196 | 197 | ### Ruby 198 | 199 | * [CodeCademy Ruby](https://www.codecademy.com/learn/ruby) 200 | * [Ruby Koans](http://www.rubykoans.com) 201 | * [The Odin Project](http://www.theodinproject.com) 202 | * [Try Ruby](http://tryruby.org) 203 | 204 | 205 | ### Scala 206 | 207 | * [A Tour of Scala - an interactive scala tutorial](https://scalatutorials.com/tour/) 208 | * [Scala Exercises](https://www.scala-exercises.org) 209 | 210 | 211 | ### Selenium 212 | 213 | * [Selenium Tutorial - Web Automation](http://www.techbeamers.com/selenium-webdriver-tutorial) 214 | 215 | 216 | ### SQL 217 | 218 | * [SQL at Codecademy](https://www.codecademy.com/courses/learn-sql) 219 | * [SQLBolt](http://sqlbolt.com) 220 | 221 | 222 | ### Vim 223 | 224 | * [Interactive Vim Tutorial](http://www.openvim.com/tutorial.html) 225 | -------------------------------------------------------------------------------- /free-programming-books-pl.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [0 - Niezależne od języka programowania](#0---niezale%C5%BCne-od-j%C4%99zyka-programowania) 4 | * [Android](#android) 5 | * [Bash](#bash) 6 | * [C](#c) 7 | * [C#](#c-sharp) 8 | * [C++](#c-1) 9 | * [Common Lisp](#common-lisp) 10 | * [Coq](#coq) 11 | * [CSS](#css) 12 | * [Haskell](#haskell) 13 | * [HTML](#html) 14 | * [Java](#java) 15 | * [JavaScript](#javascript) 16 | * [LaTeX](#latex) 17 | * [MySQL](#mysql) 18 | * [Perl](#perl) 19 | * [PHP](#php) 20 | * [Prolog](#prolog) 21 | * [Python](#python) 22 | * [Django](#django) 23 | * [Ruby](#ruby) 24 | * [SQL](#sql) 25 | 26 | 27 | ### 0 - Niezależne od języka programowania 28 | 29 | * [Git](https://pl.wikibooks.org/wiki/Git) - Wikibooks 30 | * [Interaktywna platforma do nauki programowania](http://apki.org) 31 | * [Pisanie OS](https://pl.wikibooks.org/wiki/Pisanie_OS) - Wikibooks 32 | * [Poradnik początkującego programisty](http://www.eioba.pl/a/2eu1/poradnik-poczatkujacego-programisty) 33 | * [Pro Git](http://git-scm.com/book/pl/) 34 | * [Programowanie webowe E14](https://www.youtube.com/playlist?list=PLOYHgt8dIdoxOp0wtNk9Sle5WUsBZc6kq) 35 | * [SVN](https://pl.wikibooks.org/wiki/Subversion) - Wikibooks 36 | 37 | 38 | ### Android 39 | 40 | * [O Androidzie ludzkim głosem](http://jsystems.pl/storage/kurs_android/ebook/ebook-android.pdf) (PDF) 41 | * [Przybornik pragmatycznego programisty Android](http://soldiersofmobile.com/przybornik/przybornik_8_02.pdf) (PDF) 42 | 43 | 44 | ### Bash 45 | 46 | * [Kurs Bash'a](http://dief.republika.pl/kursbasha.tar.gz) (tar.gz) 47 | 48 | 49 | ### C 50 | 51 | * [Kurs C](http://qvazar.pl/kurs-c/kurs-c) 52 | * [Kurs programowania w języku ANSI C pod systemem UNIX](http://janek.ae.krakow.pl/wiluszt/zajecia/c/ansic/) - Janusz Przewocki, Adam Narbudowicz 53 | * [Podstawy programowania Unixa/Linuxa](http://www.opcode.eu.org/programing/c_cpp/) 54 | * [Programowanie w C](https://upload.wikimedia.org/wikibooks/pl/6/6a/C.pdf) - Wikibooks (PDF) 55 | * [Programowanie w języku C](http://www.arturpyszczuk.pl/files/c/pwc.pdf) (PDF) 56 | * [Wgłąb języka C](http://helion.pl/online/wglab/wglab.zip) (ZIP) 57 | 58 | 59 | ### C Sharp 60 | 61 | * [Darmowy kurs C#](http://kurs.aspnetmvc.pl/Csharp) 62 | * [Kurs C#](http://zajacmarek.com/kurs-c-sharp/) - Marek Zając 63 | * [Kurs podstawy C#](http://cezarywalenciuk.pl/blog/programing/kurs/kurs-podstaw-csharpa) - Cezary Walenciuk 64 | * [Programowanie w języku C#](https://4programmers.net/C_sharp) 65 | * [Wstęp do programowania w C#](http://c-sharp.ue.katowice.pl/ksiazka/c_sharp_wer2_0.pdf) - Anna Kempa, Tomasz Staś (PDF) 66 | 67 | 68 | ### C++ 69 | 70 | * [Kurs C++](http://cpp0x.pl/kursy/Kurs-C++/1) - Piotr Szawdyński 71 | * [Megatutorial "Od zera do gier kodera"](http://xion.org.pl/productions/texts/coding/megatutorial/) - Karol Kuczmarski 72 | 73 | 74 | ### Common Lisp 75 | 76 | * [Kurs programowania w języku Common Lisp](http://jcubic.pl/lisp_tutorial.php) - Jakub Jankiewicz 77 | 78 | 79 | ### Coq 80 | 81 | * [zeimer.github.io (Programowanie Funkcyjne)](https://zeimer.github.io) 82 | 83 | 84 | ### CSS 85 | 86 | * [Kaskadowe Arkusze Stylów](http://www.kurshtml.edu.pl/css/index.html) - Sławomir Kokłowski 87 | * [Kurs CSS](http://cyberpunk.e-spin.pl/86,36,5/KOD/KURSY-PROGRAMOWANIA/Kurs-CSS) 88 | * [Moja pierwsza strona internetowa w HTML5 i CSS3](http://ferrante.pl/books/html/) - Damian Wielgosik 89 | 90 | 91 | ### Haskell 92 | 93 | * [Haskell](https://pl.wikibooks.org/wiki/Haskell) - Wikibooks 94 | 95 | 96 | ### HTML 97 | 98 | * [HTML dla zielonych](http://www.kurshtml.edu.pl/html/zielony.html) - Sławomir Kokłowski 99 | * [Kurs HTML](http://cyberpunk.e-spin.pl/86,33,5/KOD/KURSY-PROGRAMOWANIA/Kurs-HTML) 100 | * [KURS HTML](http://www.kurshtml.edu.pl) - Sławomir Kokłowski 101 | * [Kurs HTML5](http://cyberpunk.e-spin.pl/86,34,5/KOD/KURSY-PROGRAMOWANIA/Kurs-HTML5) 102 | * [Kurs XHTML](http://cyberpunk.e-spin.pl/86,35,5/KOD/KURSY-PROGRAMOWANIA/Kurs-XHTML) 103 | * [Moja pierwsza strona internetowa w HTML5 i CSS3](http://ferrante.pl/books/html/) - Damian Wielgosik 104 | 105 | 106 | ### Java 107 | 108 | * [Darmowy kurs Java](https://javastart.pl/baza-wiedzy/darmowy-kurs-java) - Sławek Ludwiczak 109 | * [Język Java](http://www.dz5.pl/ti/java/java_skladnia.pdf) - Jacek Rumiński (PDF) 110 | * [Kurs Java](https://stormit.pl/kurs-java/) - Tomasz Woliński 111 | * [Kurs JAVA](http://cyberpunk.e-spin.pl/86,44,5/KOD/KURSY-PROGRAMOWANIA/Kurs-JAVA) 112 | * [Kurs programowania Java](http://www.samouczekprogramisty.pl/kurs-programowania-java/) - Marcin Pietraszek 113 | * [Praktyczny kurs Javy](https://kobietydokodu.pl/kurs-javy/) - Jakub Derda 114 | 115 | 116 | ### JavaScript 117 | 118 | * [JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/pl) 119 | * [JavaScript. I wszystko jasne](http://shebang.pl/kursy/wszystko-jasne/) - Marijn Haverbeke, Łukasz Piwko 120 | * [Kurs jQuery](http://cyberpunk.e-spin.pl/86,39,5/KOD/KURSY-PROGRAMOWANIA/Kurs-jQuery) 121 | * [Wstęp - JavaScript](http://www.kurshtml.edu.pl/js/index.html) - Sławomir Kokłowski 122 | 123 | 124 | ### LaTeX 125 | 126 | * [LaTeX kurs](http://www.latex-kurs.x25.pl) - Przemysław Spurek 127 | * [LaTeX. Książka kucharska](https://ptm.org.pl/sites/default/files/latex-ksiazka-kucharska.pdf) - Marcin Borkowski, Bartłomiej Przybylski (PDF) 128 | * [Nie za krótkie wprowadzeniedo systemu LATEX 2ε](http://www.ctan.org/tex-archive/info/lshort/polish) - Janusz Goldasz, Ryszard Ku­biak, To­masz Przech­lewski 129 | 130 | 131 | ### MySQL 132 | 133 | * [Kurs MySQL](http://cyberpunk.e-spin.pl/86,38,5/KOD/KURSY-PROGRAMOWANIA/Kurs-MySQL) 134 | 135 | 136 | ### Perl 137 | 138 | * [Kurs Perl](http://zajacmarek.com/2014/10/kurs-perl-cz-1/) - Marek Zając 139 | * [Kurs PERL](cyberpunk.e-spin.pl/86,41,5/KOD/KURSY-PROGRAMOWANIA/Kurs-PERL) 140 | * [Perl](https://pl.wikibooks.org/wiki/Perl) - Wikibooks 141 | 142 | 143 | ### PHP 144 | 145 | * [Kurs PHP](http://phpkurs.pl) - Leszek Krupiński 146 | * [Kurs PHP OOP](http://cyberpunk.e-spin.pl/86,37,5/KOD/KURSY-PROGRAMOWANIA/Kurs-PHP-OOP) 147 | * [PHP](https://pl.wikibooks.org/wiki/PHP) - Wikibooks 148 | * [PHP: The Right Way](http://pl.phptherightway.com) - Josh Lockhart 149 | 150 | 151 | ### Prolog 152 | 153 | * [Programowanie w logice z ograniczeniami: Łagodne wprowadzenie dla platformy ECLiPSe](http://www.pwlzo.pl) - Antoni Niederliński 154 | 155 | 156 | ### Python 157 | 158 | * [Biblioteka Pythona](http://www.python.rk.edu.pl) - Piotr Maliński 159 | * [Podstawy Pythona](http://www.python.rk.edu.pl/w/p/podstawy/) - Piotr Maliński 160 | * [Zanurkuj w Pythonie](https://pl.wikibooks.org/wiki/Zanurkuj_w_Pythonie) 161 | 162 | 163 | #### Django 164 | 165 | * [Kurs Django](http://www.python.rk.edu.pl/w/p/djangoindex/) 166 | * [Kurs Django Girls](https://tutorial.djangogirls.org/pl/) (1.11) (HTML) 167 | 168 | 169 | ### Ruby 170 | 171 | * [Ruby](https://pl.wikibooks.org/wiki/Ruby) 172 | 173 | 174 | ### SQL 175 | 176 | * [PL/SQL - podstawy (na stronie)](http://andrzejklusiewicz.blogspot.com/2010/11/kurs-oracle-plsql.html) 177 | * [SQL - podstawy (na stronie)](http://andrzejklusiewicz.blogspot.com/2010/11/kurs-oracle-sql.html) 178 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | *Read this in other languages: [中文](CONTRIBUTING-zh.md).* 2 | 3 | ## Contributor License Agreement 4 | By contributing you agree to the [LICENSE](https://github.com/EbookFoundation/free-programming-books/blob/master/LICENSE) of this repository. 5 | 6 | ## Contributor Code of Conduct 7 | By contributing you agree to respect the [Code of Conduct](https://github.com/EbookFoundation/free-programming-books/blob/master/CODE_OF_CONDUCT.md) of this repository. 8 | 9 | ## In a nutshell 10 | 1. "A link to easily download a book" is not always a link to a *free* book. Please only contribute free content. Make sure it's free. We do not accept links to pages that *require* working email addresses to obtain books, but we welcome listings that request them. 11 | 2. You don't have to know Git: if you found something of interest which is *not already in this repo*, please open an [Issue](https://github.com/EbookFoundation/free-programming-books/issues) with your links propositions. 12 | - If you know Git, please Fork the repo and send pull requests. 13 | 3. We have 5 kinds of lists. Choose the right one: 14 | 15 | - *Books* : PDF, HTML, ePub, a gitbook.io based site, a Git repo, etc. 16 | - *Courses* : A course is a learning material which is not a book. [This is a course](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011/). 17 | - *Interactive Tutorials* : An interactive website which lets the user type code or commands and evaluates the result (by "evaluate" we don't mean "grade"). e.g.: [Try Haskell](http://tryhaskell.org), [Try Github](http://try.github.io). 18 | - *Podcasts and Screencasts* : Podcasts and screencasts. 19 | - *Problem Sets & Competitive Programming* : A website or software which lets you assess your programming skills by solving simple or complex problems, with or without code review, with or without comparing the results with other users. 20 | 21 | 4. Make sure to follow the [guidelines below](#guidelines) and respect the [Markdown formatting](#formatting) of the files. 22 | 23 | 5. Travis CI will run tests to make sure your lists are alphabetized and formatting rules are followed. Be sure to check that your changes pass the tests. 24 | 25 | ### Guidelines 26 | - make sure a book is free. Double-check if needed. It helps the admins if you comment in the PR as to why you think the book is free. 27 | - we don't accept files hosted on google drive, dropbox, mega, scribd, issuu and other similar file upload platforms 28 | - insert your links in alphabetical order. If you see a misplaced link, please reorder it and submit a PR 29 | - use the link with the most authoritative source (meaning author's website is better than editor's website is better than third party website) 30 | + no file hosting services (this includes (but is not limited to) Dropbox and Google Drive links) 31 | - always prefer a `https` link over a `http` one -- as long as they are on the same domain and serve the same content 32 | - on root domains, strip the trailing slash: `http://example.com` instead of `http://example.com/` 33 | - always prefer the shortest link: `http://example.com/dir/` is better than `http://example.com/dir/index.html` 34 | + no URL shortener links 35 | - usually prefer the "current" link over the "version" one: `http://example.com/dir/book/current/` is better than `http://example.com/dir/book/v1.0.0/index.html` 36 | - if a link has an expired certificate/self-signed certificate/SSL issue of any other kind: 37 | 1. *replace it* with its `http` counterpart if possible (because accepting exceptions can be complicated on mobile devices) 38 | 2. *leave it* if no `http` version but link still accessible through `https` by adding an exception to the browser or ignoring the warning 39 | 3. *remove it* otherwise 40 | - if a link exists in multiple format, add a separate link with a note about each format 41 | - if a resource exists at different places on the Internet 42 | + use the link with the most authoritative source (meaning author's website is better than editor's website is better than third party website) 43 | + if they link to different editions and you judge these editions are different enough to be worth keeping them, add a separate link with a note about each edition (see [Issue #2353](https://github.com/EbookFoundation/free-programming-books/issues/2353) to contribute to the discussion on formatting.) 44 | - prefer atomic commits (one commit by addition/deletion/modification) over bigger commits. No need to squash your commits before submitting a PR. (We will never enforce this rule as it's just a matter of convenience for the maintainers) 45 | - if the book is older, include the publication date with the title. 46 | - include the author name or names where appropriate. You can shorten author lists with "et al." 47 | - if the book is not finished, and is still being worked on, add the "in process" notation, as described [below.](#in_process) 48 | - if an email address or account setup is requested before download is enabled, add language-appropriate notes in parentheses, e.g.: `(email address *requested*, not required)` 49 | 50 | ### Formatting 51 | - All lists are `.md` files. Try to learn [Markdown](https://guides.github.com/features/mastering-markdown/) syntax. It's simple! 52 | - All the lists start with an Index. The idea is to list and link all sections and subsections there. Keep it in alphabetical order. 53 | - Sections are using level 3 headings (`###`), and subsections are level 4 headings (`####`). 54 | 55 | The idea is to have 56 | - `2` empty lines between last link and new section 57 | - `1` empty line between heading & first link of its section 58 | - `0` empty line between two links 59 | - `1` empty line at the end of each `.md` file 60 | 61 | Example: 62 | 63 | [...] 64 | * [An Awesome Book](http://example.com/example.html) 65 | (blank line) 66 | (blank line) 67 | ### Example 68 | (blank line) 69 | * [Another Awesome Book](http://example.com/book.html) 70 | * [Some Other Book](http://example.com/other.html) 71 | 72 | - Don't put spaces between `]` and `(`: 73 | 74 | ``` 75 | BAD : * [Another Awesome Book] (http://example.com/book.html) 76 | GOOD: * [Another Awesome Book](http://example.com/book.html) 77 | ``` 78 | 79 | - If you include the author, use ` - ` (a dash surrounded by single spaces): 80 | 81 | ``` 82 | BAD : * [Another Awesome Book](http://example.com/book.html)- John Doe 83 | GOOD: * [Another Awesome Book](http://example.com/book.html) - John Doe 84 | ``` 85 | 86 | - Put a single space between the link and its format: 87 | 88 | ``` 89 | BAD : * [A Very Awesome Book](https://example.org/book.pdf)(PDF) 90 | GOOD: * [A Very Awesome Book](https://example.org/book.pdf) (PDF) 91 | ``` 92 | 93 | - Author comes before format: 94 | 95 | ``` 96 | BAD : * [A Very Awesome Book](https://example.org/book.pdf)- (PDF) Jane Roe 97 | GOOD: * [A Very Awesome Book](https://example.org/book.pdf) - Jane Roe (PDF) 98 | ``` 99 | 100 | - Multiple formats: 101 | 102 | ``` 103 | BAD : * [Another Awesome Book](http://example.com/)- John Doe (HTML) 104 | BAD : * [Another Awesome Book](https://downloads.example.org/book.html)- John Doe (download site) 105 | GOOD: * [Another Awesome Book](http://example.com/) - John Doe (HTML) [(PDF, EPUB)](https://downloads.example.org/book.html) 106 | ``` 107 | 108 | - Include publication year in title for older books: 109 | 110 | ``` 111 | BAD : * [A Very Awesome Book](https://example.org/book.html) - Jane Roe - 1970 112 | GOOD: * [A Very Awesome Book (1970)](https://example.org/book.html) - Jane Roe 113 | ``` 114 | 115 | 116 | - In-process books: 117 | 118 | ``` 119 | GOOD: * [Will Be Awesome Soon Book](http://example.com/book2.html) - John Doe (HTML) (:construction: *in process*) 120 | ``` 121 | -------------------------------------------------------------------------------- /free-courses-it.md: -------------------------------------------------------------------------------- 1 | ### Indice 2 | 3 | * [Algoritmi e Strutture Dati](#algoritmi-e-struture-dati) 4 | * [Architettura degli Elaboratori](#architettura-degli-elaboratori) 5 | * [Assembly](#assembly) 6 | * [C](#c) 7 | * [C Sharp](#c-sharp) 8 | * [C++](#c++) 9 | * [Delphi](#delphi) 10 | * [Embedded](#embedded) 11 | * [Arduino](#arduino) 12 | * [Generale](#generale) 13 | * [Java](#Java) 14 | * [Javascript](#javascript) 15 | * [Machine Learning](#machine-learning) 16 | * [Networking](#networking) 17 | * [Pascal](#pascal) 18 | * [Programmazione](#programmazione) 19 | * [Python](#python) 20 | * [Ruby](#ruby) 21 | * [Sistemi Informativi](#sistemi-informativi) 22 | * [Sistemi Operativi](#sistemi-operativi) 23 | * [Linux](#linux) 24 | * [Strumenti di sviluppo](#strumenti-di-sviluppo) 25 | * [Git](#git) 26 | * [Maven](#maven) 27 | * [Web](#web) 28 | * [Workshop](#workshop) 29 | 30 | 31 | ### Algoritmi e Strutture Dati 32 | 33 | * [AlgoMOOC - Algoritmi quotidiani](https://www.youtube.com/watch?v=opHFKVuDiYM&list=PLjTV6y5YWc5HNnLyXkzUe9IlkG2n6guxU) - A. Bogliolo 34 | * [Algoritmi e Strutture Dati](https://www.youtube.com/playlist?list=PLO4y9a8lTpK2TViOKbk-NjDBvL4RXDwYY) - R. Grossi (Università di Pisa) 35 | 36 | 37 | ### Architettura degli Elaboratori 38 | 39 | * [Architettura degli Elaboratori](https://www.youtube.com/playlist?list=PLjTV6y5YWc5H2fefaz78qCeSKWj-k_-pY) - A. Bogliolo (Università di Urbino) 40 | * [Architettura degli Elaboratori](https://www.youtube.com/playlist?list=PLhEwqlL10MqMYYiR5NqMblyyQr1ss-b8q) - A. Sperduti (Università di Padova) 41 | 42 | 43 | ### Assembly 44 | 45 | * [Assembler x86](https://www.youtube.com/playlist?list=PLUJjY3hQLJ3NHQ9315KVvgiZ3v2FLtcbs) 46 | 47 | 48 | ### C 49 | 50 | * [Corso di programmazione in C](https://www.youtube.com/playlist?list=PLO4y9a8lTpK2ugwPRLN_1oOrlzX9Zc9It) - R. Rizzi (Università di Verona) 51 | 52 | 53 | ### C Sharp 54 | 55 | * [Programmazione ad oggetti in C#](https://www.youtube.com/watch?v=aSgikNnGEKM&list=PLktbfd3yXeH8yQpHM3O468k8l-aTC6Hl6) - G. Pellegrini Parisi 56 | 57 | 58 | ### C++ 59 | 60 | * [C++ 11](https://www.youtube.com/playlist?list=PL0qAPtx8YtJfZpJD7uFxAXglkiHSEhktG) (F. Camuso) 61 | * [C++ libreria QT - playlist 1](https://www.youtube.com/playlist?list=PL0qAPtx8YtJdH4GVwL_3QeJjPcz3DHE2t) (F. Camuso) 62 | 63 | 64 | ### Delphi 65 | 66 | * [Videocorso Delphi/Lazarus](https://www.youtube.com/watch?v=JxE1nUqriV0&list=PLF75FB30719A09FA2) (F. Camuso) 67 | 68 | 69 | ### Embedded 70 | 71 | #### Arduino 72 | 73 | * [Arduino Cookbook - Corso di Arduino in 150 video](https://www.youtube.com/playlist?list=PL9_01HM23dGEDNNfR6BtlDWD8DDoAcLOT) (P. Aliverti) 74 | * [Corso Arduino 2014](https://www.youtube.com/watch?v=WuqS4C4u42E&list=PLA27EZBY5vePO9T6YP3rH8LTTdylz69VE) (POuLpolimi Politecnico di Milano) 75 | 76 | 77 | ### Generale 78 | 79 | * [Automi e Linguaggi Formali](https://www.youtube.com/playlist?list=PLhEwqlL10MqNz1pA7R5jnB_gsMIhDOe5X) - Bresolin e Filè (Università di Padova) 80 | * [Fondamenti di Informatica](https://www.youtube.com/playlist?list=PLUL1bzfXcbX3g2cIcTFdmvj5yawQtUOxJ) - C. De Stefano (Università di Cassino e del Lazio Meridionale) 81 | * [Informatica](https://didattica.polito.it/pls/portal30/sviluppo.videolezioni.vis?cor=232) - M. Mezzalama (Politecnico di Torino) 82 | * [Informatica di Base - Corso intensivo](https://www.youtube.com/playlist?list=PLG31HS6yEI8dv6TUmv9w0W6YmEAQm0P2q) - G. Pellegrini Parisi 83 | * [Informatica I - Modelli dell'Informatica](https://www.youtube.com/playlist?list=PLAQopGWlIcyalkb2baN9mnotsdBm5Vbkc) - A. Marchetti Spaccamela (Università La Sapienza Università di Roma) 84 | * [Sistemi di Calcolo](https://www.youtube.com/playlist?list=PLAQopGWlIcybT12h7fjVvlGAeSqOKDnTA) - C. Demetrescu (Università La Sapienza di Roma) 85 | * [Teoria dell'informazione](https://www.youtube.com/playlist?list=PL0qAPtx8YtJeGo5g4Esi7tm6kHPRivkvb) (F. Camuso) 86 | 87 | 88 | ### Java 89 | 90 | * [Java EE](https://www.youtube.com/playlist?list=PLjGYWJ4Dcy-erfReHXB9Ush0cREGSmyIe) (S. Zorba) 91 | 92 | 93 | ### Javascript 94 | 95 | * [Corso di Javascript (base)](https://www.youtube.com/watch?v=JUBhi8O3wn0&list=PLG5caACNVwzpIhlLACNZd6BvABWv_Ti4I) [(Lacerba.io)](https://lacerba.io) 96 | * [Corso Javascript (ES6)](https://www.youtube.com/watch?v=dDekOIgzxPA&list=PL0qAPtx8YtJceyk5_NpNvLbbkrmfX9kkw) (F. Camuso) 97 | 98 | 99 | ### Machine Learning 100 | 101 | * [Machine Learning in italiano col Pollo Watzlawick](https://www.youtube.com/playlist?list=PLa-sizbCyh93c0nSPAb8k5ZZeOq4SBIl9) (P. Savastano) 102 | 103 | 104 | ### Networking 105 | 106 | * [Advanced Networking 2016](https://www.youtube.com/playlist?list=PLkbnRIR2azkIXO-ndOz7qBvVC38_wbOW8) (Hacklab Cosenza) 107 | 108 | 109 | ### Pascal 110 | 111 | * [Corso di programmazione in Pascal](https://www.youtube.com/watch?v=DYy2IbteC2U&list=PLO4y9a8lTpK1DS45Wljy0l5rMtVNIesRJ) - R. Rizzi (Università di Verona) 112 | * [Videocorso Pascal (Turbo e FPC)](https://www.youtube.com/watch?v=C1ttJju1RKc&list=PLC98ABC853EAEFD7F) (F. Camuso) 113 | 114 | 115 | ### Python 116 | 117 | * [Corso Python 2016](https://www.youtube.com/playlist?list=PLA27EZBY5veOa-dbNIetJvyrAuoVy4zDD) (POuLpolimi Politecnico di Milano) 118 | * [Corso rapido Python per principianti e per esempi](https://www.youtube.com/playlist?list=PL0qAPtx8YtJdbiBCoj4j6x_Ai6Vu9j5r9) (F. Camuso) 119 | 120 | 121 | ### Programmazione 122 | 123 | * [Programmazione](https://www.youtube.com/playlist?list=PLhEwqlL10MqN2eB3b4avX_DU3FK0EOYFa) - G. Filè (Università di Padova) 124 | * [Programmazione 2 (Java/C++)](http://latemar.science.unitn.it/segue/index.php?&site=2008Programmazione2&section=86&action=site) - M. Ronchetti (Università di Trento) 125 | * [Tecniche di Programmazione (C/C++)](https://www.youtube.com/playlist?list=PLAQopGWlIcybv3YLRHGS4yZR00X3RvSBm) - L. Iocchi D. Nardi e A. Pretto (Università La Sapienza di Roma) 126 | * [Tecniche di Programmazione (Java)](https://elearning.polito.it/main/videolezioni/index.php?cidReq=2017_03FYZPL_0214659&id_session=0&gidReq=0&origin=&lp=1) - F. Corno (Politecnico di Torino) 127 | 128 | 129 | ### Ruby 130 | 131 | * [Corso Ruby 2013](https://www.youtube.com/watch?v=IQFY6HaXkfM&list=PLA27EZBY5veNwghiX1buwSBziKV765N2t) (POuLpolimi Politecnico di Milano) 132 | 133 | 134 | ### Sistemi Informativi 135 | 136 | * [Sistemi Informativi Aziendali](https://didattica.polito.it/pls/portal30/sviluppo.videolezioni.vis?cor=233) - F. Corno (Politecnico di Torino) 137 | 138 | 139 | ### Sistemi Operativi 140 | 141 | #### Linux 142 | 143 | * [Certificazione Linux LPI](https://www.youtube.com/playlist?list=PL4L8OWDC99_d46jXlR02dCWzTwNISywwU) 144 | * [Corsi GNU/Linux Avanzati 2017](https://www.youtube.com/watch?v=lRbkk_NT6nk&list=PLA27EZBY5veMZYKkqS2sQNPJSCGI1QniD) (POuLpolimi Politecnico di Milano) 145 | * [Corsi GNU/Linux Base 2017](https://www.youtube.com/watch?v=SsNiFtDRxRM&list=PLA27EZBY5veNNqkeuFwjJFWserz6QLzS_) (POuLpolimi Politecnico di Milano) 146 | 147 | 148 | ### Strumenti di sviluppo 149 | 150 | #### Git 151 | 152 | * [Corso Git 2017](https://www.youtube.com/playlist?list=PLA27EZBY5veN02RzEr6Ecm7KcjWadthBh) (POuLpolimi Politecnico di Milano) 153 | 154 | 155 | #### Maven 156 | 157 | * [Tutorial su Maven](https://www.youtube.com/playlist?list=PLjGYWJ4Dcy-f71M9YyNSk4RpLE5jobe7y) (S. Zorba) 158 | 159 | 160 | ### Web 161 | 162 | * [Progettazione di applicazioni Web](https://www.youtube.com/playlist?list=PLE0AA1735F10543A6) - F. Corno e S. Di Carlo (Politecnico di Torino) 163 | 164 | 165 | ### Workshop 166 | 167 | * [Workshop 3D Printing 2015](https://www.youtube.com/watch?v=7AJzR94ACZs&list=PLA27EZBY5veNgfDUNft5kju0QAvLPPw2j) (POuLpolimi Politecnico di Milano) 168 | * [Workshop Calcolo Numerico 2014](https://www.youtube.com/watch?v=FVzt6TX0CiY&list=PLA27EZBY5veNyyBiZxkjFE2KwAIKLkITL) (POuLpolimi Politecnico di Milano) 169 | * [Workshop Python 2014](https://www.youtube.com/watch?v=lz6uKGmrQoU&list=PLA27EZBY5veOFh1PdRdf7dc3DdBg-XctF) (POuLpolimi Politecnico di Milano) 170 | -------------------------------------------------------------------------------- /free-programming-books-de.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [0 - Unabhängig von der Programmiersprache](#unabh%C3%A4ngig-von-der-programmiersprache) 4 | * [Action Script](#action-script) 5 | * [Android](#android) 6 | * [Assembly Language](#assembly-language) 7 | * [C](#c) 8 | * [C#](#c-sharp) 9 | * [C++](#c-1) 10 | * [Component Pascal](#component-pascal) 11 | * [Git](#git) 12 | * [Go](#go) 13 | * [Groovy](#groovy) 14 | * [HTML & CSS](#html--css) 15 | * [iOS](#ios) 16 | * [Java](#java) 17 | * [Javascript](#javascript) 18 | * [LaTeX](#latex) 19 | * [Meta-Lists](#meta-lists) 20 | * [MySQL](#mysql) 21 | * [PHP](#php) 22 | * [Python](#python) 23 | * [Django](#django) 24 | * [Ruby on Rails](#ruby-on-rails) 25 | * [Scilab](#scilab) 26 | * [Scratch](#scratch) 27 | * [UML](#uml) 28 | * [Unix](#unix) 29 | * [Visual Basic](#visual-basic) 30 | 31 | 32 | ### Unabhängig von der Programmiersprache 33 | 34 | * [Clean Code Developer: Eine Initiative für mehr Professionalität in der Softwareentwicklung](http://clean-code-developer.de) 35 | * [IT-Handbuch für Fachinformatiker](http://openbook.rheinwerk-verlag.de/it_handbuch/) 36 | * [Objektorientierte Programmierung](http://openbook.rheinwerk-verlag.de/oop/) 37 | * [Scrum und XP im harten Projektalltag](https://res.infoq.com/news/2007/06/scrum-xp-book/en/resources/ScrumAndXpFromTheTrenchesonline_German.pdf) (PDF) 38 | 39 | 40 | ### Action Script 41 | 42 | * [ActionScript 1 und 2](http://openbook.rheinwerk-verlag.de/actionscript/) 43 | * [Einstieg in ActionScript](http://openbook.rheinwerk-verlag.de/actionscript_einstieg/) 44 | 45 | 46 | ### Android 47 | 48 | * [Grundlagen und Programmierung](http://www.dpunkt.de/ebooks_files/free/3436.pdf) (PDF) 49 | 50 | 51 | ### Assembly Language 52 | 53 | * [PC Assembly Language](http://drpaulcarter.com/pcasm/) - Paul A. Carter 54 | 55 | 56 | ### C 57 | 58 | * [C von A bis Z](http://openbook.rheinwerk-verlag.de/c_von_a_bis_z/) 59 | * [Softwareentwicklung in C](http://www.asc.tuwien.ac.at/~eprog/download/schmaranz.pdf) (PDF) 60 | 61 | 62 | ### C++ 63 | 64 | * [Die Boost C++ Bibliotheken](http://dieboostcppbibliotheken.de) 65 | * [Programmieren in C++: Aufbau](http://www.highscore.de/cpp/aufbau/) 66 | * [Programmieren in C++: Einführung](http://www.highscore.de/cpp/einfuehrung/) 67 | 68 | 69 | ### Component Pascal 70 | 71 | * [Module, Klassen, Verträge](http://karlheinz-hug.de/informatik/buch/Karlheinz-Hug_Module-Klassen-Vertraege.pdf) - Karlheinz Hug (PDF) 72 | 73 | 74 | ### C Sharp 75 | 76 | * [Programmieren in C#: Einführung](http://www.highscore.de/csharp/einfuehrung/) 77 | * [Visual C# 2008](http://openbook.rheinwerk-verlag.de/visual_csharp/) 78 | * [Visual C# 2010](http://openbook.rheinwerk-verlag.de/visual_csharp_2010/) 79 | * [Visual C# 2012](http://openbook.rheinwerk-verlag.de/visual_csharp_2012/) 80 | 81 | 82 | ### Go 83 | 84 | * [Effektiv Go Programmieren](http://www.bitloeffel.de/DOC/golang/effective_go_de.html) 85 | * [Eine Tour durch Go](https://go-tour-de.appspot.com/welcome/1) 86 | * [Erstelle Webanwendungen mit Go](https://astaxie.gitbooks.io/build-web-application-with-golang/content/de/) 87 | 88 | 89 | ### Git 90 | 91 | * [Das Git-Buch](http://gitbu.ch) [PDF, EPUB] 92 | * [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/de/) 93 | * [Pro Git (2009)](http://git-scm.com/book/de/v1) 94 | * [Pro Git (neue Version)](http://git-scm.com/book/de/current) (:construction: *in process*) 95 | 96 | 97 | ### Groovy 98 | 99 | * [Groovy für Java-Entwickler](http://examples.oreilly.de/openbooks/pdf_groovyger.pdf) (PDF) 100 | 101 | 102 | ### HTML & CSS 103 | 104 | * [CSS](http://www.peterkropff.de/site/css/css.htm) — Peter Kropff (Grundlagen, OOP, MySQLi, PDO) [Online, PDF] 105 | * [HTML](http://www.peterkropff.de/site/html/html.htm) — Peter Kropff [Online, PDF] 106 | * [HTML5-Handbuch](http://webkompetenz.wikidot.com/docs:html-handbuch) 107 | * [Self HTML](https://wiki.selfhtml.org/wiki/Startseite) 108 | 109 | 110 | ### iOS 111 | 112 | * [Apps programmieren für iPhone und iPad](http://openbook.rheinwerk-verlag.de/apps_programmieren_fuer_iphone_und_ipad/) 113 | * [iOS-Rezepte](http://examples.oreilly.de/openbooks/iosrecipesger.zip) 114 | * [iPad-Programmierung](http://examples.oreilly.de/openbooks/pdf_ipadprogpragger.pdf) (PDF) 115 | 116 | 117 | ### Java 118 | 119 | * [EJB 3 für Umsteiger: Neuerungen und Änderungen gegenüber dem EJB-2.x-Standard](http://bsd.de/e3fu/umfrage.html) - Heiko W. Rupp 120 | * [Java 7 Mehr als eine Insel](http://openbook.rheinwerk-verlag.de/java7/) 121 | * [Java ist auch eine Insel](http://openbook.rheinwerk-verlag.de/javainsel/) 122 | * [Programmieren Java: Aufbau](http://www.highscore.de/java/aufbau/) 123 | * [Programmieren Java: Einführung](http://www.highscore.de/java/einfuehrung/) 124 | * [Testgetriebene Entwicklung mit JUnit & FIT](http://www.frankwestphal.de/ftp/Westphal_Testgetriebene_Entwicklung.pdf) - Frank Westphal (PDF) 125 | 126 | 127 | ### Javascript 128 | 129 | * [JavaScript](http://www.peterkropff.de/site/javascript/javascript.htm) — Peter Kropff (Grundlagen, AJAX, DOM, OOP) [Online, PDF] 130 | * [JavaScript und AJAX](http://openbook.rheinwerk-verlag.de/javascript_ajax/) 131 | * [Webseiten erstellen mit Javascript](http://www.highscore.de/javascript/) 132 | 133 | 134 | ### LaTeX 135 | 136 | * [LaTeX - eine Einführung und ein bißchen mehr...](http://www.fernuni-hagen.de/imperia/md/content/zmi_2010/a026_latex_einf.pdf) (PDF) 137 | * [LaTeX - Forteschrittene Anwendungen (oder: Neues von den Hobbits)](http://www.fernuni-hagen.de/imperia/md/content/zmi_2010/a027_latex_fort.pdf) (PDF) 138 | * [LaTeX : Referenz der Umgebungen, Makros, Längen und Zähler](http://www.lehmanns.de/page/latexreferenz) 139 | 140 | 141 | ### Meta-Lists 142 | 143 | * [Galileo Computing - openbook](https://www.rheinwerk-verlag.de/openbook/) 144 | 145 | 146 | ### MySQL 147 | 148 | * [MySQL](http://www.peterkropff.de/site/mysql/mysql.htm) — Peter Kropff [Online, PDF] 149 | 150 | 151 | ### PHP 152 | 153 | * [PHP](http://www.peterkropff.de/site/php/php.htm) — Peter Kropff (Grundlagen, OOP, MySQLi, PDO) [Online, PDF] 154 | * [PHP PEAR](http://openbook.rheinwerk-verlag.de/php_pear/) 155 | * [Praktischer Einstieg in MySQL mit PHP](http://examples.oreilly.de/openbooks/pdf_einmysql2ger.pdf) (PDF) 156 | 157 | 158 | ### Python 159 | 160 | * [Programmiereinführung mit Python](http://opentechschool.github.io/python-beginners/de/) 161 | 162 | 163 | #### Django 164 | 165 | * [Django Girls Tutorial](https://tutorial.djangogirls.org/es/) (1.11) (HTML) (:construction: *in process*) 166 | 167 | 168 | ### Ruby on Rails 169 | 170 | * [Praxiswissen Ruby](http://www.oreilly.de/german/freebooks/rubybasger/pdf_rubybasger.pdf) (PDF) 171 | * [Praxiswissen Ruby On Rails](http://examples.oreilly.de/openbooks/pdf_rubyonrailsbasger.pdf) (PDF) 172 | * [Rails Kochbuch](http://examples.oreilly.de/openbooks/pdf_railsckbkger.pdf) (PDF) 173 | * [Ruby on Rails 2](http://openbook.rheinwerk-verlag.de/ruby_on_rails/) 174 | * [Ruby on Rails 3.2 für Ein-, Um- und Quereinsteiger](http://ruby-auf-schienen.de/3.2/) 175 | 176 | 177 | ### Scilab 178 | 179 | * [Einführung in Scilab/Xcos 5.4](http://www.buech-gifhorn.de/scilab/Einfuehrung.pdf) (PDF) 180 | 181 | 182 | ### Scratch 183 | 184 | * [Kreative Informatik mit Scratch](http://eis.ph-noe.ac.at/kreativeinformatik/) 185 | 186 | 187 | ### UML 188 | 189 | * [Der moderne Softwareentwicklungsprozess mit UML](http://www.highscore.de/uml/) 190 | 191 | 192 | ### Unix 193 | 194 | * [Linux-UNIX-Programmierung](http://openbook.rheinwerk-verlag.de/linux_unix_programmierung/) 195 | * [Shell-Programmierung](http://openbook.rheinwerk-verlag.de/shell_programmierung/) 196 | * [Wie werde ich Unix Guru?](http://openbook.rheinwerk-verlag.de/unix_guru/) 197 | 198 | 199 | ### Visual Basic 200 | 201 | * [Einstieg in Visual Basic 2010](http://openbook.rheinwerk-verlag.de/einstieg_vb_2010/) 202 | * [Einstieg in Visual Basic 2012](http://openbook.rheinwerk-verlag.de/einstieg_vb_2012/) 203 | * [Visual Basic 2008](http://openbook.rheinwerk-verlag.de/visualbasic_2008/) 204 | -------------------------------------------------------------------------------- /free-courses-vi.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [AJAX](#ajax) 4 | * [Android](#android) 5 | * [Angular](#angular) 6 | * [AngularJS](#angularjs) 7 | * [ASP.NET](#asp) 8 | * [Bootstrap](#bootstrap) 9 | * [C](#c) 10 | * [C#](#c-sharp) 11 | * [CSS](#css) 12 | * [HTML](#html) 13 | * [Java](#java) 14 | * [Javascript](#javascript) 15 | * [jQuery](#jquery) 16 | * [MongoDB](#mongodb) 17 | * [NodeJS](#nodejs) 18 | * [Objective-C](#objective-c) 19 | * [PHP](#php) 20 | * [Python](#python) 21 | * [React](#react) 22 | * [Ruby](#ruby) 23 | * [Sass](#sass) 24 | * [SQL](#sql) 25 | * [Swift](#swift) 26 | * [TypeScript](#typescript) 27 | * [Wordpress](#wordpress) 28 | * [Xcode](#xcode) 29 | * [XML](#xml) 30 | 31 | 32 | ### AJAX 33 | 34 | * [Học AJAX](http://www.hoclaptrinh.org/Hoc-AJAX) 35 | 36 | 37 | ### Android 38 | 39 | * [Lập trình Android - Android Widgets - Các điều khiển](https://www.youtube.com/watch?v=2xDWeWllzWg&list=PLv6GftO355At6jjYThbMn-5r164GJ5Vyb) - ZendVN 40 | * [Lập trình Android - Menu - Context Menu - Dialog](https://www.youtube.com/watch?v=vS_InAnGUFA&list=PLv6GftO355Avjf5iuNbEUsIZbltzDEuIU) - ZendVN 41 | * [Lập trình Android - Xây dựng bố cục giao diện với Android Layout](https://www.youtube.com/watch?v=oxWDjizEN6g&list=PLv6GftO355AtfPQx7M3dkWgi9KPUB9S0V) - ZendVN 42 | * [Lập trình Android cơ bản](https://www.youtube.com/watch?v=rcH4NbngPEk&list=PL33lvabfss1wDeQMvegg_OZQfaXcbqOQh) - Kteam 43 | * [Lập trình Android với Kotlin](https://www.youtube.com/watch?v=2CKuiSp_uOQ&list=PLzrVYRai0riRFcvx8VYTF7fx4hXbd_nhU) - KhoaPham 44 | 45 | 46 | ### Angular 47 | 48 | * [Angular 2 Cơ Bản](https://tedu.com.vn/khoa-hoc/khoa-hoc-angular2-can-ban-10.html) - TEDU 49 | * [Angular 4 Cơ Bản](https://www.youtube.com/watch?v=q8RdFZw-gjo&list=PLzrVYRai0riTA1m7Dasg8eraBr6R9nFgC) - KhoaPham 50 | 51 | 52 | ### AngularJS 53 | 54 | * [AngularJS Cơ Bản](http://www.hoclaptrinh.org/Angular-JS-Co-Ban) 55 | * [AngularJS Cơ Bản](https://www.youtube.com/watch?v=1MOFT2_-NII&list=PLRhlTlpDUWsw70vZAkJgALJ1yhgYsqDGx) - TEDU 56 | 57 | 58 | ### ASP 59 | 60 | * [Khóa học ASP.NET Core cơ bản](https://tedu.com.vn/khoa-hoc/khoa-hoc-aspnet-core-co-ban-14.html) - TEDU 61 | 62 | 63 | ### Bootstrap 64 | 65 | * [Twitter Bootstrap](http://www.hoclaptrinh.org/Twitter-Bootstrap) 66 | 67 | 68 | ### C 69 | 70 | * [Bài toán kinh điển trong lập trình C++](https://www.youtube.com/watch?v=2SsyOv0koNE&list=PL33lvabfss1zRuwxONgKLc_BBsZ-Y2B6b) - Kteam 71 | * [Học Lập Trình C++](https://www.youtube.com/watch?v=jrn6bXC6sTU&list=PLyiioioEJSxHVTaeL-ELYy6Io-I8diIVZ) - DayNhauHoc 72 | * [Học Lập Trình C++ - Cấu trúc dữ liệu](https://www.youtube.com/watch?v=pxwP0b77Kl0&list=PLyiioioEJSxHr-4yQvc6biuGsiYqPq35F) - DayNhauHoc 73 | * [Lập trình C++ cơ bản](https://www.youtube.com/watch?v=WS05AU6YYm4&list=PL33lvabfss1xagFyyQPRcppjFKMQ7lvJM) - Kteam 74 | * [Ngôn Ngữ Lập Trình C](https://www.youtube.com/watch?v=bv4wVWi-Fjc&list=PLyiioioEJSxHr5X8RNY3QXUGcjzeZeI7l) - DayNhauHoc 75 | 76 | 77 | ### C-Sharp 78 | 79 | * [C# Căn Bản](https://www.youtube.com/watch?v=9kohr6pMwag&list=PL33lvabfss1wUj15ea6W0A-TtDOrWWSRK) 80 | * [C# Căn Bản](https://www.youtube.com/watch?v=YgtY0RRM7WQ&list=PLRhlTlpDUWsyOEc-S8ovGVG5L92mZEjVu&index=1) - TEDU 81 | * [C# Căn Bản](https://www.youtube.com/watch?v=9kohr6pMwag&list=PL33lvabfss1wUj15ea6W0A-TtDOrWWSRK) - Kteam 82 | * [C# Nâng Cao](https://www.youtube.com/watch?v=j-UpmHdqV5Q&list=PLRhlTlpDUWszTdteJzP68F8Q6gRYvhohk&index=1) - TEDU 83 | * [C# Nâng Cao](https://www.youtube.com/watch?v=EPt10AVbLvk&list=PL33lvabfss1y5jmklzilr2W2LZiltk6bU) - Kteam 84 | * [Lập trình C# Winform cơ bản](https://www.youtube.com/watch?v=dtYVRWfGhzI&list=PL33lvabfss1y2T7yK--YZJHCsU7LZVzBS) - Kteam 85 | * [Lập trình game Caro với C# Winform](https://www.youtube.com/watch?v=qC6yrukIqQU&list=PL33lvabfss1yCEzvLavt8jD4daqpejzwN) - Kteam 86 | * [Lập trình hướng đối tượng trong C#](https://www.youtube.com/watch?v=WQ9j2sPRstk&list=PL33lvabfss1zRgaWBcC__Bnt5AOSRfU71) - Kteam 87 | * [Lập trình Key logger với C# Console Application](https://www.youtube.com/watch?v=lnNAcYOGupg&list=PL33lvabfss1xfA6027EDgEqUp79XRft5I) - Kteam 88 | * [Lập trình phần mềm Quản Lý Quán Cafe với C# Winform](https://www.youtube.com/watch?v=tu2k9ZrDlWA&list=PL33lvabfss1xnPhBJHjM0A8TEBBcGCTsf) - Kteam 89 | * [Lập trình Selenium với C# - WPF](https://www.youtube.com/watch?v=ReyI9VE6Fio&list=PL33lvabfss1ys_UxBqlKvdm6mVs1sL9T2) - Kteam 90 | * [Lập trình ứng dụng Lập Lịch với C# Winform](https://www.youtube.com/watch?v=LyQ4mFYRAOY&list=PL33lvabfss1zfGzpSGQN7CUoHKS6OQbJc) - Kteam 91 | 92 | 93 | ### CSS 94 | 95 | * [CSS Cơ Bản](http://www.hoclaptrinh.org/CSS-Co-Ban) 96 | * [CSS Cơ Bản](https://www.youtube.com/watch?v=_JT3jPzuqmY&list=PLl4nkmb3a8w1cnIhegAj5_mE8w_mbYvY4) - ThachPham 97 | 98 | 99 | ### HTML 100 | 101 | * [HTML Cơ Bản](http://www.hoclaptrinh.org/HTML-Co-Ban) 102 | * [HTML Cơ Bản](https://www.youtube.com/watch?v=_7uda2DyR3E&list=PLl4nkmb3a8w135_M4YRPzYD9_6tERz3ce) - ThachPham 103 | 104 | 105 | ### Java 106 | 107 | * [Khóa học lập trình JavaFX](https://www.youtube.com/watch?v=zAq7Lmv46PE&list=PL33lvabfss1yRgFCgFXjtYaGAuDJjjH-j) - Kteam 108 | 109 | 110 | ### Javascript 111 | 112 | * [Javascript Cơ Bản](http://www.hoclaptrinh.org/JavaScript-Co-Ban) 113 | * [Javascript Cơ Bản](https://tedu.com.vn/khoa-hoc/khoa-hoc-java-script-can-ban-12.html) - TEDU 114 | 115 | 116 | ### jQuery 117 | 118 | * [jQuery Cơ Bản](http://www.hoclaptrinh.org/jQuery-Co-Ban) 119 | * [jQuery Cơ bản](https://www.youtube.com/watch?v=AEMXXWrJmHU&index=1&list=PLRhlTlpDUWsyAGY7FDGSndEhOD3F2Ruhm) - TEDU 120 | 121 | 122 | ### MongoDB 123 | 124 | * [Giáo trình tự học NoSQL - MongoDB](https://www.youtube.com/watch?v=KQOPq0oO_R8&list=PLv6GftO355Aug0rwKfb6v96mlYrwOw7XV) - ZendVN 125 | 126 | 127 | ### NodeJS 128 | 129 | * [NodeJS Cơ Bản](https://www.hoclaptrinh.org/Node-js-Co-Ban) 130 | * [NodeJS Cơ Bản](https://www.youtube.com/watch?v=3W8jskQUjnk&list=PL4VEtQ6PTTQEZp2kLIC7OE0E8OsObv0k8) - Ide Academy 131 | 132 | 133 | ### Objective-C 134 | 135 | * [Objective-C Cơ Bản](https://www.hoclaptrinh.org/Objective-C-Co-Ban) 136 | 137 | 138 | ### PHP 139 | 140 | * [PHP Cơ Bản](http://www.hoclaptrinh.org/PHP-Co-Ban) 141 | * [Tự học PHP - Các đối tượng khác trong PHP](https://www.youtube.com/watch?v=qoZpJjc2amo&list=PLv6GftO355Av7YIhRHajDEWCHq1viEKEy) - ZendVN 142 | * [Tự học PHP - Căn Bản](https://www.youtube.com/watch?v=3yJeeub-6RY&list=PLv6GftO355AulVlaWLp41kieNB9dTG1_l) - ZendVN 143 | * [Tự học PHP - Làm việc với ASNT](https://www.youtube.com/watch?v=P5Xc6b47ICo&list=PLv6GftO355At4rfAAqGCtokc3W1uDnv28) - ZendVN 144 | 145 | 146 | ### Python 147 | 148 | * [Lập trình website với Python Django](https://www.youtube.com/watch?v=VF0oC9mkkno&list=PL33lvabfss1z8GYxjyMulCnhcYGk5ah8P) - Kteam 149 | * [Python Cơ Bản](https://www.hoclaptrinh.org/Python-Co-Ban) 150 | * [Python Cơ Bản](https://www.youtube.com/watch?v=NZj6LI5a9vc&list=PL33lvabfss1xczCv2BA0SaNJHu_VXsFtg) - Kteam 151 | * [Python Cơ Bản](https://www.youtube.com/watch?v=FgN-mHwHLyg&list=PLyiioioEJSxEh_S_XFvG0d2xKRMSWLfN_) - DayNhauHoc 152 | 153 | 154 | ### React 155 | 156 | * [React.js Cơ Bản](https://www.youtube.com/watch?v=zrdXI6uZuW4&list=PLzrVYRai0riSPcINVFvaCaM7Ul55DzpLd) 157 | 158 | 159 | ### Ruby 160 | 161 | * [Ruby Cơ Bản](https://www.hoclaptrinh.org/Ruby-Co-Ban) 162 | 163 | 164 | ### Sass 165 | 166 | * [Sass Cơ Bản](https://www.youtube.com/watch?v=zjW8LpCHasE&list=PLzrVYRai0riSWPPRE6Ib99zd5fV4YYH0Q) - KhoaPham 167 | * [Tự Học Sass](https://www.youtube.com/watch?v=pXbA0Nab9UE&list=PLv6GftO355AtWld1EE7SBAH-OkKKt23Bb) - ZendVN 168 | 169 | 170 | ### SQL 171 | 172 | * [SQL Cơ Bản](http://www.hoclaptrinh.org/SQL-Co-Ban) 173 | * [SQL Cơ Bản](https://www.youtube.com/watch?v=2fanjSYVElY&list=PL33lvabfss1xnFpWQF6YH11kMTS1HmLsw) - Kteam 174 | 175 | 176 | ### Swift 177 | 178 | * [Hướng dẫn làm app bản đồ với MapKit](https://www.youtube.com/watch?v=Y-QYq69VFIc&list=PL4VEtQ6PTTQGCgMhgVx7zbyVj6HIC8aPH) - Ide Academy 179 | * [Kỹ thuật làm app camera scan QR code](https://www.youtube.com/watch?v=54J-3DCzmlw&list=PL4VEtQ6PTTQGKBD6EVZXqPZr_YUbxXBMM) - Ide Academy 180 | * [Swift 3 Căn Bản](https://www.youtube.com/watch?v=Izj27rIPjPM&list=PL4VEtQ6PTTQFCBxdxUIS3h6h7wSTEHrPu) - Ide Academy 181 | * [Swift Căn Bản](https://www.youtube.com/watch?v=9Hx-TVkL5tA&list=PLq6u-dSlAr2QBxCn8pbcCK2cE8PMdbar8) - Gramy 182 | * [Tổng hợp các vấn đề mới và hóc búa trong Swift](https://www.youtube.com/watch?v=7CzzDnTTxVM&list=PL4VEtQ6PTTQGMYPnBh-2MqKhvWcPg9oNk) - Ide Academy 183 | * [Tổng hợp kỹ thuật làm app với Swift 3.x và XCode 8](https://www.youtube.com/watch?v=Gtjreg-2uhA&list=PL4VEtQ6PTTQEsxWUwqkwbjZfXGTdMpb6T) - Ide Academy 184 | 185 | 186 | ### TypeScript 187 | 188 | * [TypeScript căn bản](https://www.youtube.com/watch?v=L5mM4KWVyXE&list=PLv6GftO355AsQtYp_YrsqEihOCiNlZkCb) - ZendVN 189 | * [TypeScript căn bản (ES6)](https://tedu.com.vn/khoa-hoc/khoa-hoc-su-dung-typescript-can-ban-9.html) - TEDU 190 | 191 | 192 | ### Workpress 193 | 194 | * [WordPress Nâng Cao](https://www.youtube.com/watch?v=IEH1SB553ks&list=PLl4nkmb3a8w3qzoFaXLsPohofWUMTOHBU) - ThachPham 195 | * [Xây dựng Plugin Wordpress căn bản](https://www.youtube.com/watch?v=xt5gQoKnAcU&list=PLv6GftO355AucJ4Td8_6h007nQuVJQsPN) - ZendVN 196 | 197 | 198 | ### Xcode 199 | 200 | * [Xcode Cơ Bản](https://www.hoclaptrinh.org/Xcode-Co-Ban) 201 | 202 | 203 | ### XML 204 | 205 | * [XML Cơ Bản](https://www.hoclaptrinh.org/XML-Co-Ban) 206 | -------------------------------------------------------------------------------- /free-programming-books-fr.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [0 - Méta-listes](#0---méta-listes) 4 | * [1 - Non dépendant du langage](#1---non-dépendant-du-langage) 5 | * [Algorithmique](#algorithmique) 6 | * [Logiciels libres](#logiciels-libres) 7 | * [Makefile](#makefile) 8 | * [Pédagogie pour enfants et adolescents](#pédagogie-pour-enfants-et-adolescents) 9 | * [Théorie des langages](#théorie-des-langages) 10 | * [Ada](#ada) 11 | * [Assembleur](#assembleur) 12 | * [Bash / Shell](#bash--shell) 13 | * [C / C++](#c--c) 14 | * [Caml](#caml) 15 | * [Coq](#coq) 16 | * [CSS](#css) 17 | * [Git](#git) 18 | * [Haskell](#haskell) 19 | * [Java](#java) 20 | * [Javascript](#javascript) 21 | * [jQuery](#jquery) 22 | * [(La)TeX et associés](#latex-et-associés) 23 | * [Asymptote](#asymptote) 24 | * [LaTeX](#latex) 25 | * [Metapost](#metapost) 26 | * [PGF/TikZ](#pgftikz) 27 | * [TeX](#tex) 28 | * [Lisp](#lisp) 29 | * [Lua](#lua) 30 | * [Meteor](#meteor) 31 | * [Perl](#perl) 32 | * [PHP](#php) 33 | * [Processing](#processing) 34 | * [Python](#python) 35 | * [Django](#django) 36 | * [R](#r) 37 | * [Ruby](#ruby) 38 | * [Sage](#sage) 39 | * [Scilab](#scilab) 40 | * [Scratch](#scratch) 41 | * [SPIP](#spip) 42 | * [SQL](#sql) 43 | * [Systèmes d'exploitation](#systemes-d-exploitation) 44 | * [TEI](#TEI) 45 | * [Vim](#vim) 46 | 47 | 48 | ### 0 - Méta-listes 49 | 50 | * [Le SILO: Sciences du numérique & Informatique au Lycée: Oui!](https://wiki.inria.fr/sciencinfolycee/Accueil) 51 | 52 | 53 | ### 1 - Non dépendant du langage 54 | 55 | #### Algorithmique 56 | 57 | * [Algorithmique](http://pauillac.inria.fr/~quercia/cdrom/cours/) - Michel Quercia 58 | * [Complexité algorithmique](http://www.liafa.univ-paris-diderot.fr/~sperifel/livre_complexite.html) - Sylvain Perifel 59 | * [Éléments d'algorithmique](http://www-igm.univ-mlv.fr/~berstel/Elements/Elements.pdf) - D. Beauquier, J. Berstel, et Ph. Chrétienne (PDF) 60 | * [France-IOI](http://www.france-ioi.org) 61 | * [Prologin](https://prologin.org) 62 | 63 | 64 | #### Logiciels libres 65 | 66 | * [Histoires et cultures du libres](http://framabook.org/histoiresetculturesdulibre/) 67 | * [Option libre. Du bon usage des licences libres](http://framabook.org/optionlibre-dubonusagedeslicenceslibres/) - Jean Benjamin 68 | * [Produire du logiciel libre](http://framabook.org/produire-du-logiciel-libre-2/) - Karl Fogel 69 | * [Richard Stallman et la révolution du logiciel libre](http://framabook.org/richard-stallman-et-la-revolution-du-logiciel-libre-2/) - R.M. Stallman, S. Williams et C. Masutti 70 | 71 | 72 | #### Makefile 73 | 74 | * [Concevoir un Makefile](http://icps.u-strasbg.fr/people/loechner/public_html/enseignement/GL/make.pdf) - Vincent Loechner d'après Nicolas Zin (PDF) 75 | * [Introduction aux Makefile](http://eric.bachard.free.fr/UTBM_LO22/P07/C/Documentation/C/make/intro_makefile.pdf) (PDF) 76 | 77 | 78 | #### Pédagogie pour enfants et adolescents 79 | 80 | * [Activités débranchées](https://pixees.fr/?cat=612) Catalogue de ressource pour apprendre l'informatique sans ordinateur. 81 | * [Apprendre l'informatique sans ordinateur](https://interstices.info/enseigner-et-apprendre-les-sciences-informatiques-a-lecole/) - Tim Bell, Ian H. Witten et Mike Fellows (traduit) 82 | 83 | 84 | ### Ada 85 | 86 | * [Cours Ada](http://d.feneuille.free.fr/cours-ada-iut.zip) - Daniel Feneuille (Support d'un cours enseigné à l'IUT d'Aix-en-Provence) (ZIP) 87 | * [Cours Ada 95 pour le programmeur C++](http://d.feneuille.free.fr/c++%20to%20ada%201.0a.pdf) - Quentin Ochem (PDF) 88 | 89 | 90 | ### Assembleur 91 | 92 | * [PC Assembly Language](http://drpaulcarter.com/pcasm/) - Paul A. Carter 93 | 94 | 95 | ### Bash / Shell 96 | 97 | * [Guide avancé d'écriture des scripts Bash](http://abs.traduc.org/abs-fr/) 98 | 99 | 100 | ### Caml 101 | 102 | * [Le language Caml](http://caml.inria.fr) 103 | 104 | 105 | ### C / C++ 106 | 107 | * [C++ moderne](http://guillaume.belz.free.fr/doku.php?id=programmez_avec_le_langage_c) - Guillaume Belz 108 | * [Cours de C/C++](http://casteyde.christian.free.fr/cpp/cours/online/book1.html) - Christian Casteyde 109 | * [Le C en 20 heures](http://framabook.org/le-c-en-20-heures-2/) - Eric Berthomier et Daniel Schang 110 | * [Le langage C](https://zestedesavoir.com/tutoriels/755/le-langage-c-1/) - Informaticienzero, Taure, Paraze et Lucas-84 111 | 112 | 113 | ### Coq 114 | 115 | * [Le Coq'Art (V8)](http://www.labri.fr/perso/casteran/CoqArt/) - Yves Bertot et Pierre Castéran 116 | 117 | 118 | ### CSS 119 | 120 | * [Apprendre les mises en page CSS](http://fr.learnlayout.com) 121 | 122 | 123 | ### Git 124 | 125 | * [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/fr/) - Alexandre Garel, Paul Gaborit et Nicolas Deram 126 | * [Pro Git](http://www.git-scm.com/book/fr/v2) - Scott Chacon et Ben Straub 127 | 128 | 129 | ### Java 130 | 131 | * [Développons en Java](http://www.jmdoudoux.fr/accueil_java.htm#dej) - Jean-Michel DOUDOUX (3400 pages!) 132 | * [Java Programming for Kids, Parents and Grandparents](http://myflex.org/books/java4kids/java4kids.htm) - Yakov Fain 133 | * [Play.Rules!](http://3monkeys.github.io/play.rules/) 134 | 135 | 136 | ### Javascript 137 | 138 | * [Javascript Éloquent : Une introduction moderne à la programmation](http://fr.eloquentjavascript.net) - Marijn Haverbeke 139 | 140 | 141 | ### jQuery 142 | 143 | * [Apprendre jQuery](https://sutterlity.gitbooks.io/apprendre-jquery/content/) - Sutterlity Laurent 144 | 145 | 146 | ### Haskell 147 | 148 | * [A Gentle Introduction to Haskell](http://gorgonite.developpez.com/livres/traductions/haskell/gentle-haskell/) - Paul Hudak, John Peterson et Joseph Fasel 149 | * [Apprendre Haskell vous fera le plus grand bien !](http://lyah.haskell.fr) 150 | 151 | 152 | ### (La)TeX et associés 153 | 154 | #### LaTeX 155 | 156 | * [LaTeX... pour le prof de maths !](http://math.univ-lyon1.fr/irem/IMG/pdf/LatexPourLeProfDeMaths.pdf) - Arnaud Gazagnes (PDF) 157 | * [Tout ce que vous avez toujours voulu savoir sur LaTeX sans jamais oser le demander](http://framabook.org/tout-sur-latex/) - Vincent Lozano 158 | * [(Xe)LaTeX appliqué aux sciences humaines](http://geekographie.maieul.net/95) - Maïeul Rouquette 159 | 160 | 161 | ##### KOMA-Script 162 | 163 | * [KOMA-Script, Typographie universelle avec XƎLaTeX](https://framabook.org/koma-script/) - Raymond Rochedieu (trad.) et Markus Kohm 164 | 165 | 166 | #### Asymptote 167 | 168 | * [Asymptote. Démarrage rapide](http://cgmaths.fr/cgFiles/Dem_Rapide.pdf) - Christophe Grospellier (PDF) 169 | 170 | 171 | #### Metapost 172 | 173 | * [Tracer des graphes avec Metapost](http://melusine.eu.org/syracuse/metapost/f-mpgraph.pdf) - John D. Hobby (PDF) 174 | * [Un manuel de Metapost](http://melusine.eu.org/syracuse/metapost/f-mpman-2.pdf) - John D. Hobby (PDF) 175 | 176 | 177 | #### PGF/TikZ 178 | 179 | * [TikZ pour l'impatient](http://math.et.info.free.fr/TikZ/) - Gérard Tisseau et Jacques Duma 180 | 181 | 182 | #### TeX 183 | 184 | * [TeX pour l'Impatient](http://www.apprendre-en-ligne.net/LaTeX/teximpatient.pdf) - Paul Abrahams, Kathryn Hargreaves, and Karl Berry, trad. Marc Chaudemanche (PDF) 185 | 186 | 187 | ### Lisp 188 | 189 | * [Introduction à la programmation en Common Lisp](http://www.algo.be/logo1/lisp/intro-lisp.pdf) - Francis Leboutte (PDF) 190 | * [Traité de programmation en Common Lisp](http://dept-info.labri.fr/~strandh/Teaching/Programmation-Symbolique/Common/Book/HTML/programmation.html) - Robert Strandh et Irène Durand 191 | 192 | 193 | ### Lua 194 | 195 | * [Introduction à la programmation Lua](http://www.luteus.biz/Download/LoriotPro_Doc/LUA/LUA_Training_FR/Introduction_Programmation.html) 196 | * [Lua : le tutoriel](http://wxlua.developpez.com/tutoriels/lua/general/cours-complet/) - Claude Urban 197 | 198 | 199 | ### Meteor 200 | 201 | * [Apprendre Meteor](https://mquandalle.gitbooks.io/apprendre-meteor/content/) - Maxime Quandalle 202 | * [Discover Meteor](http://fr.discovermeteor.com) - Tom Coleman et Sacha Greif 203 | 204 | 205 | ### Perl 206 | 207 | * [Guide Perl - débuter et progresser en Perl](http://formation-perl.fr/guide-perl.html) - Sylvain Lhullier 208 | * [La documentation Perl en français](http://perl.mines-albi.fr/DocFr.html) 209 | 210 | 211 | ### PHP 212 | 213 | * [Cours de PHP 5](http://g-rossolini.developpez.com/tutoriels/php/cours/?page=introduction) - Guillaume Rossolini 214 | * [Initiation au PHP](http://framasoft.net/IMG/pdf/initiation_php.pdf) - David Ducrocq (PDF) 215 | * [Programmer en PHP](http://www.lincoste.com/ebooks/pdf/informatique/programmer_php.pdf) - Julien Gaulmin (PDF) 216 | 217 | 218 | ### Processing 219 | 220 | * [Processing](https://fr.flossmanuals.net/processing/) - Œuvre collective (HTML) 221 | 222 | 223 | ### Python 224 | 225 | * [Appendre à programmer avec Python](http://inforef.be/swi/python.htm) - Gerard Swinnen 226 | * [Python](http://www.lincoste.com/ebooks/pdf/informatique/python.pdf) - Guido Van Rossum (PDF) 227 | * [Une introduction à Python 3](https://perso.limsi.fr/pointal/python:courspython3) - Bob Cordeau et Laurent Pointal 228 | 229 | 230 | #### Django 231 | 232 | * [Tutoriel de Django Girls](https://tutorial.djangogirls.org/fr/) (1.11) (HTML) 233 | 234 | 235 | ### R 236 | 237 | * [Introduction à la programmation en R](http://cran.r-project.org/doc/contrib/Goulet_introduction_programmation_R.pdf) - Vincent Goulet (PDF) 238 | 239 | 240 | ### Ruby 241 | 242 | * [Ruby en vingt minutes](https://www.ruby-lang.org/fr/documentation/quickstart/) 243 | * [Venir à Ruby après un autre language](https://www.ruby-lang.org/fr/documentation/ruby-from-other-languages/) 244 | 245 | 246 | #### Ruby on Rails 247 | 248 | * [Tutoriel Ruby on Rails : Apprendre Rails par l'exemple](http://french.railstutorial.org/chapters/beginning) - Michael Hartl 249 | 250 | 251 | ### Sage 252 | 253 | * [Calcul mathématique avec Sage](https://hal.inria.fr/inria-00540485/file/sagebook-web-20130530.pdf) - A. Casamayou, N. Cohen, G. Connan, T. Dumont, L. Fousse, F. Maltey, M. Meulien, M. Mezzarobba, C. Pernet, N. M. Thiéry, P. Zimmermann (PDF) 254 | 255 | 256 | ### Scilab 257 | 258 | * [Introduction à Scilab](http://forge.scilab.org/index.php/p/docintrotoscilab/downloads/) - Michaël Baudin, Artem Glebov, Jérome Briot 259 | 260 | 261 | ### Scratch 262 | 263 | * [Informatique Créative](https://pixees.fr/programmation-creative-en-scratch/) 264 | 265 | 266 | ### SPIP 267 | 268 | * [Programmer avec SPIP](http://programmer.spip.net) - Matthieu Marcimat et collectif SPIP 269 | 270 | 271 | ### SQL 272 | 273 | * [Cours complet pour apprendre les différents types de bases de données et le langage SQL](https://sgbd.developpez.com/tutoriels/cours-complet-bdd-sql/) - Jacques Le Maitre 274 | 275 | 276 | ### Systèmes d'exploitation 277 | 278 | * [Simple OS (SOS)](http://sos.enix.org/fr/SOSDownload) - David Decotigny et Thomas Petazzoni 279 | 280 | 281 | ### TEI 282 | 283 | * [Qu'est-ce que la Text Encoding Initiative ?](http://books.openedition.org/oep/1237) - Lou Burnard, trad. par Marjorie Burghart 284 | 285 | 286 | ### Vim 287 | 288 | * [Learn Vim Progressively](http://yannesposito.com/Scratch/fr/blog/Learn-Vim-Progressively/) 289 | * [Vim pour les humains](https://vimebook.com/fr) - Vincent Jousse (le livre n'est pas **gratuit** mais **à prix libre**) 290 | -------------------------------------------------------------------------------- /free-programming-books-it.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [0 - Agnostico](#0---agnostico) 4 | * [Algoritmi e Strutture Dati](#algoritmi-e-strutture-dati) 5 | * [Metodologie di sviluppo del software](#metodologie-di-sviluppo-del-software) 6 | * [Open source](#open-source) 7 | * [Sistemi](#sistemi) 8 | * [Storia dell'informatica](#storia-dellinformatica) 9 | * [Android](#android) 10 | * [Assembly Language](#assembly-language) 11 | * [BASH](#bash) 12 | * [C](#c) 13 | * [C#](#c-sharp) 14 | * [C++](#c-plus-plus) 15 | * [CSS](#css) 16 | * [Database](#database) 17 | * [NoSQL](#nosql) 18 | * [Relazionali](#relazionali) 19 | * [SQL](#sql) 20 | * [HTML](#html) 21 | * [Java](#java) 22 | * [JavaScript](#javascript) 23 | * [LaTeX](#latex) 24 | * [Linux](#linux) 25 | * [Livecode](#livecode) 26 | * [Perl](#perl) 27 | * [PHP](#php) 28 | * [Python](#python) 29 | * [Django](#django) 30 | * [Ruby](#ruby) 31 | * [UML](#uml) 32 | * [Visual Basic](#visual-basic) 33 | 34 | 35 | ### 0 - Agnostico 36 | 37 | #### Algoritmi e Strutture Dati 38 | 39 | * [Algoritmi e Strutture Dati - Astrazione, Progetto e Realizzazione](http://www.astromoodle.altervista.org/download/libro-asd.pdf) - M. Vento e P. Foggia (PDF) 40 | * [Appunti di Analisi e Progettazione di Algoritmi](https://www.sci.unich.it/~acciaro/corsoASD.pdf) - V. Acciaro T. Roselli e V. Marengo (PDF) 41 | * [Dispense del Corso di Algoritmi e Strutture Dati](http://www.dmi.unict.it/nicosia/lectures/programmazione-scientifica/algo.pdf) (PDF) 42 | * [Progetto e Analisi di Algoritmi](http://bertoni.di.unimi.it/Algoritmi_e_Strutture_Dati.pdf) - A. Bertoni e M. Goldwurm (PDF) 43 | 44 | 45 | #### Metodologie di sviluppo del software 46 | 47 | * [Analisi e progettazione del software](http://www.diegm.uniud.it/schaerf/APS/Dispensa_APS_2_3.pdf) - S. Ceschia e A. Schaerf (PDF) 48 | * [Programmazione Funzionale](http://minimalprocedure.pragmas.org/writings/programmazione_funzionale/programmazione_funzionale.html) 49 | 50 | 51 | #### Open source 52 | 53 | * [Open Source - Analisi di un movimento](http://www.apogeonline.com/2002/libri/88-503-1065-X/ebook/pdf/OpenSource.pdf) - N. Bassi (PDF) 54 | 55 | 56 | #### Sistemi 57 | 58 | * [Programmazione di Sistema in Linguaggio C - Esempi ed esercizi](https://www.disi.unige.it/person/DelzannoG/BIOMED/Programmazione-C/dispense_avanzate_C.pdf) - V. Gervasi, S. Pelagatti, S. Ruggieri, F. Scozzari, A. Sperduti (PDF) 59 | 60 | 61 | #### Storia dell'informatica 62 | 63 | * [Breve storia dell'informatica](http://apav.it/informatica_file1.pdf) - F. Eugeni (PDF) 64 | * [Corso di storia dell'informatica](http://nid.dimi.uniud.it/computing_history/computing_history.html) - C. Bonfanti e P. Giangrandi (PDF) 65 | * [La storia dell'informatica in Mondo Digitale](http://www.aicanet.it/storia-informatica/storia-dell-informatica-in-mondo-digitale) (PDF) 66 | * [STI: il corso di storia dell'Informatica](https://www.progettohmr.it/Corso/) - G.A. Cignoni (PDF) 67 | * [Storia dell'informatica](http://www.dsi.unive.it/~pelillo/Didattica/Storia%20dell'informatica/) - M. Pelillo (PDF) 68 | 69 | 70 | ### Android 71 | 72 | * [Guida Android](http://www.html.it/guide/guida-android/) (HTML) 73 | * [Guida programmazione Android 4.2](http://www.sprik.it/download/guida-programmazione-android-4-2/) 74 | 75 | 76 | ### Assembly Language 77 | 78 | * [PC Assembly Language](http://drpaulcarter.com/pcasm/) - Paul A. Carter 79 | 80 | 81 | ### BASH 82 | 83 | * [Guida avanzata per la bash](http://www.dmi.unict.it/diraimondo/web/wp-content/uploads/classes/so/mirror-stuff/abs-guide.pdf) (PDF) 84 | 85 | 86 | ### C 87 | 88 | * [Il linguaggio C - Guida pratica alla programmazione](https://eineki.files.wordpress.com/2010/02/guidac.pdf) - (PDF) 89 | * [Linguaggio C - ANSI C](http://www.itis.pr.it/~dsacco/itis/Olimpiadi-informatica/Libri-di-testo/LinguaggioC-R&K.pdf) - B.W. Kernighan e D.M. Ritchie (PDF) 90 | * [Linguaggio C - Guida alla programmazione](http://www.cbmc.it/~marchettil/Tandem2016/Bellini.pdf) - A. Bellini e A. Guidi _Anno di pubblicazione_ 1999 (PDF) 91 | * [Tricky C](http://www.dmi.unict.it/diraimondo/web/wp-content/uploads/classes/so/mirror-stuff/Tricky_C.pdf) (PDF) 92 | 93 | 94 | ### C Sharp 95 | 96 | * [AB..C# - Guida alla programmazione](http://www.youblisher.com/p/21542-ABC-Guida-alla-programmazione/) 97 | 98 | 99 | ### C Plus Plus 100 | 101 | * [Corso C++ standard](http://didatticait.altervista.org/programmazione/CPP/CPP-dispense/CORSO_C.pdf) - (PDF) 102 | * [Il linguaggio C++](https://hpc-forge.cineca.it/files/CoursesDev/public/2012%20Autumn/Introduzione%20alla%20programmazioni%20a%20oggetti%20in%20C++/corsocpp.pdf) - (PDF) 103 | 104 | 105 | ### CSS 106 | 107 | * [Guida Completa sviluppo lato Client](http://www.aiutamici.com/PortalWeb/eBook/ebook/Alessandro_Stella-Programmare_per_il_web.pdf) (PDF) 108 | 109 | 110 | ### Database 111 | 112 | * [Basi di Dati](http://dbdmg.polito.it/wordpress/teaching/basi-di-dati/) - Apiletti e Cagliero (Politecnico di Torino) 113 | * [La progettazione dei database relazionali](http://www.crescenziogallo.it/unifg/medicina/TSRM/master_bioimmagini/db/Teoria_pratica_progettazione_db_relazionali.pdf) - C. Gallo (PDF) 114 | * [Manuale pratico di disegno e progettazione dei database](http://www.brunasti.eu/unimib/bdsi/manuale-pratico-progettazione-ER-100914.pdf) - P. Brunasti (PDF) 115 | * [Progettare database NoSQL: la guida](http://www.html.it/guide/progettare-database-nosql/?cref=system) (HTML) 116 | 117 | 118 | #### NoSQL 119 | 120 | * [Guida MongoDB](http://www.html.it/guide/guida-mongodb/?cref=system) (HTML) 121 | * [Guida OrientDB](http://www.html.it/guide/guida-orientdb/?cref=system) (HTML) 122 | * [Il piccolo libro di MongoDB](https://nicolaiarocci.com/mongodb/il-piccolo-libro-di-mongodb.pdf) - Traduzione di N. Iarocci dall'originale di K. Seguin (PDF) 123 | * [Redis: la guida](http://www.html.it/guide/redis-la-guida/?cref=system) (HTML) 124 | 125 | 126 | #### Relazionali 127 | 128 | * [Guida a MySQL](http://www.crescenziogallo.it/unifg/agraria/ISLA/SEI1/2016-2017/UD5/Guida%20MySql.pdf) - C. Gallo (PDF) 129 | 130 | 131 | #### SQL 132 | 133 | * [Guida linguaggio SQL](http://www.html.it/guide/guida-linguaggio-sql/?cref=system) (HTML) 134 | 135 | 136 | ### HTML 137 | 138 | * [Canoro sito](http://canoro.altervista.org/guide/html/GuidaHTML22.pdf) (PDF) 139 | * [Guida Completa sviluppo lato Client](http://www.aiutamici.com/PortalWeb/eBook/ebook/Alessandro_Stella-Programmare_per_il_web.pdf) (PDF) 140 | * [INFN di Milano](http://www.mi.infn.it/~calcolo/corso_base_html/pdf/corso_base_html.pdf) (PDF) 141 | 142 | 143 | ### Java 144 | 145 | * [Appendici del manuale di Java 9](https://www.hoepli.it/editore/hoepli_file/download_pub/978-88-203-8302-2_Java9-Appendici.pdf) - C. De Sio Cesari (PDF) 146 | * [Esercitazioni di Spring Boot](https://www.emmecilab.net/esercitazioni-di-spring-boot-0-come-impostare-un-progetto/) - M. Cicolella (HTML) 147 | * [Esercizi del manuale di Java 9](https://www.hoepli.it/editore/hoepli_file/download_pub/978-88-203-8302-2_java9-esercizi.pdf) - C. De Sio Cesari (PDF) 148 | * [Esercizi di Java Avanzato](http://wpage.unina.it/m.faella/Didattica/LpII/archivio.pdf) - M. Faella (PDF) 149 | * [Fondamenti di informatica - Java - Eserciziario](http://www.dei.unipd.it/~filira/fi/etc/eserciziario.pdf) (PDF) 150 | * [Guida a Java 8](http://twiki.di.uniroma1.it/pub/Metod_prog/RS_INFO/lezioni.html) 151 | * [Guida Java](http://www.html.it/guide/guida-java/?cref=development) (HTML) 152 | * [Java 7](https://it.wikibooks.org/wiki/Java) - Wikibooks 153 | * [Java 9 e 10, la guida](https://www.html.it/guide/java-9-la-guida/) (HTML) 154 | * [Object Oriented && Java 5 (II Edizione)](http://www.claudiodesio.com/download/oo_&&_java_5.zip) - Claudio De Sio Cesari (ZIP) 155 | 156 | 157 | ### JavaScript 158 | 159 | * [Corso completo Javascript](https://www.grimaldi.napoli.it/pdf/manuale_unite_224_2_html_1000213680.pdf) - [HTML.it](http://www.html.it) _Anno di pubblicazione_ 2005 (PDF) 160 | * [Guida Completa sviluppo lato Client](http://www.aiutamici.com/PortalWeb/eBook/ebook/Alessandro_Stella-Programmare_per_il_web.pdf) (PDF) (Includo anche Jquery) 161 | * [Guida di riferimento](http://lia.deis.unibo.it/Courses/TecnologieWeb0809/materiale/laboratorio/guide/JScriptRef_Ita.pdf) (PDF) 162 | 163 | 164 | ### LaTeX 165 | 166 | * [Appunti di programmazione in LaTeX e TeX](http://profs.sci.univr.it/~gregorio/introtex.pdf) - Enrico Gregorio (PDF) 167 | * [Il LaTex mediante esempi](http://www.discretephysics.org/MANUALI/Latex.pdf) - E. Tonti (PDF) 168 | * [Impara LaTeX! (... e mettilo da parte)](https://users.dimi.uniud.it/~gianluca.gorni/TeX/itTeXdoc/impara_latex.pdf) - Marc Baudoin (PDF) 169 | * [Introduzione all'arte della composizione tipografica con LaTeX](http://www.guitex.org/home/images/doc/guidaguit-b5.pdf) - GuIT (PDF) 170 | * [L'arte di scrivere con LaTeX](http://www.lorenzopantieri.net/LaTeX_files/ArteLaTeX.pdf) - L. Pantieri e T. Gordini (PDF) 171 | * [LaTeX facile](http://www.guit.sssup.it/downloads/LaTeX-facile.pdf) - N. Garbellini (PDF) 172 | * [LaTeX, naturalmente!](http://www.batmath.it/latex/pdfs/guida_st.pdf) - L .Battaia (PDF) 173 | * [LaTeX per l'impaziente](http://www.lorenzopantieri.net/LaTeX_files/LaTeXimpaziente.pdf) - L. Pantieri (PDF) 174 | * [Scrivere la tesi di laurea con LaTeX](http://www.guit.sssup.it/guitmeeting/2005/articoli/mori.pdf) - L.F. Mori (PDF) 175 | * [Una (mica tanto) breve introduzione a LATEX 2ε](http://www.ctan.org/tex-archive/info/lshort/italian) 176 | 177 | 178 | ### Linux 179 | 180 | * [«a2», ex «Appunti di informatica libera», ex «Appunti Linux»](http://archive.org/download/AppuntiDiInformaticaLibera/) 181 | 182 | 183 | ### Livecode 184 | 185 | * [Guida a livecode](http://www.maxvessi.net/pmwiki/pmwiki.php?n=Main.GuidaALivecode) 186 | 187 | 188 | ### Perl 189 | 190 | * [Corso di Perl](http://www.webprog.net/public/corso_perl.pdf) - M. Beltrame (PDF) 191 | * [Introduzione al Perl](http://www.aquilante.net/perl/perl.pdf) - M. Liverani - _Anno di pubblicazione_ 1996 (PDF) 192 | 193 | 194 | ### PHP 195 | 196 | * [Guida PHP](http://www.html.it/guide/guida-php-di-base/?cref=development) (HTML) 197 | * [Manuale PHP](http://francescomuscolo.altervista.org/manuale_PHP.pdf) (PDF) 198 | 199 | 200 | ### Python 201 | 202 | * [Il manuale di riferimento di Python](http://docs.python.it/html/ref/) 203 | * [Il tutorial di Python](http://docs.python.it/html/tut/) 204 | * [La libreria di riferimento di Python](http://docs.python.it/html/lib/) 205 | * [Pensare da Informatico, Versione Python](http://www.python.it/doc/Howtothink/Howtothink-html-it/index.htm) 206 | 207 | 208 | #### Django 209 | 210 | * [Il tutorial di Django Girls](https://tutorial.djangogirls.org/it/) (1.11) (HTML) (:construction: *in process*) 211 | 212 | 213 | ### Ruby 214 | 215 | * [Introduzione a Ruby](http://tesi.cab.unipd.it/22937/1/Tesina_-_Introduzione_a_Ruby.pdf) (PDF) 216 | * [Programmazione elementare in Ruby](http://minimalprocedure.pragmas.org/writings/programmazione_elementare_ruby/corso_elementare_ruby.html) 217 | * [Ruby User Guide](http://ruby-it.org/rug_it.zip) 218 | 219 | 220 | ### UML 221 | 222 | * [Appunti di UML](http://liuct.altervista.org/download/repository/ingsof/Appunti_UML.pdf) (PDF) 223 | * [Introduzione alla gestione del progetto software con UML](http://areaprofessional.com/documenti/D03_IntroGestioneProgettoSW.pdf) - G. Destri (PDF) 224 | 225 | 226 | ### Visual Basic 227 | 228 | * [Corso Visual Basic](http://www.webalice.it/kindofapple/corsovb.pdf) (PDF) 229 | -------------------------------------------------------------------------------- /free-programming-books-pt_BR.md: -------------------------------------------------------------------------------- 1 | ### Índice 2 | 3 | * [C](#c) 4 | * [C#](#c-sharp) 5 | * [C++](#c-1) 6 | * [Engenharia de software](#engenharia-de-software) 7 | * [Metodologias de Desenvolvimento de Software](#metodologias-de-desenvolvimento-de-software) 8 | * [Outros](#outros) 9 | * [Git](#git) 10 | * [Go](#go) 11 | * [Haskell](#haskell) 12 | * [HTML / CSS](#html--css) 13 | * [Java](#java) 14 | * [JavaScript](#javascript) 15 | * [Angular](#angular) 16 | * [Angular.js](#angularjs) 17 | * [Backbone.js](#backbonejs) 18 | * [Ember.js](emberjs) 19 | * [Express.js](#expressjs) 20 | * [Grunt](#grunt) 21 | * [Gulp](#gulp) 22 | * [jQuery](#jquery) 23 | * [Knockout.js](#knockoutjs) 24 | * [Meteor](#meteor) 25 | * [Node.js](#nodejs) 26 | * [React](#react) 27 | * [Vue.js](#vuejs) 28 | * [LaTeX](#latex) 29 | * [LISP](#lisp) 30 | * [Lua](#lua) 31 | * [PHP](#php) 32 | * [Python](#python) 33 | * [Django](#django) 34 | * [RegEx](#regex) 35 | * [Ruby](#ruby) 36 | * [Shell Script](#shell) 37 | * [Vim](#vim) 38 | 39 | 40 | ### C 41 | 42 | * [Apostila Linguagem C](http://www.ime.usp.br/~slago/slago-C.pdf) - Silvio Lago (PDF) 43 | * [Curso de Programação em C - UFMG](http://www2.dcc.ufmg.br/disciplinas/pc/source/introducao_c_renatocm_deeufmg.pdf) - Renato Cardoso Mesquita (PDF) 44 | * [Introdução a Programação](https://github.com/ufpb-computacao/introducao-a-programacao-livro/releases) - livro adotado na UFPB. 45 | * [Introdução em Computação - C](http://www.ime.usp.br/~elo/IntroducaoComputacao/). 46 | * [O Fantástico Mundo da Linguagem C](https://fiorix.files.wordpress.com/2014/04/o-fantc3a1stico-mundo-da-linguagem-c.pdf) (PDF) 47 | * [Projeto de Algoritmos em C](http://www.ime.usp.br/~pf/algoritmos/) 48 | 49 | 50 | ### C Sharp 51 | 52 | * [C# e Orientação a Objetos](https://www.caelum.com.br/apostila-csharp-orientacao-objetos/) - Caelum 53 | 54 | 55 | ### C++ 56 | 57 | * [Apostila Linguagem C++](http://www.ime.usp.br/~slago/slago-C++.pdf) - Silvio Lago (PDF) 58 | * [Estrutura de Dados](http://calhau.dca.fee.unicamp.br/wiki/images/0/01/EstruturasDados.pdf) (PDF) 59 | * [Programação Orientada a Objetos em C++](http://webserver2.tecgraf.puc-rio.br/~manuel/Download/Programacao%20Orientada%20a%20Objetos%20em%20C++.pdf) (PDF) 60 | 61 | 62 | ### Engenharia de Software 63 | 64 | #### Metodologias de Desenvolvimento de Software 65 | 66 | * [Kanban e Scrum - obtendo o melhor de ambos](http://www.infoq.com/br/minibooks/kanban-scrum-minibook) *(account required)* 67 | * [Kanban em 10 Passos](http://www.infoq.com/br/minibooks/priming-kanban-jesper-boeg) *(account required)* 68 | * [Scrum e XP direto das Trincheiras](http://www.infoq.com/br/minibooks/scrum-xp-from-the-trenches) *(account required)* 69 | 70 | 71 | #### Outros 72 | 73 | * [CI - Integração Contínua Sem Desculpa](https://ci.mrprompt.com.br) 74 | * [Primeiros passos com Padrões de Projeto](https://leanpub.com/primeiros-passos-com-padroes-de-projeto/) 75 | 76 | 77 | ### Git 78 | 79 | * [Git - guia prático](http://rogerdudler.github.io/git-guide/index.pt_BR.html) 80 | * [Git Magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/pt_br/) 81 | * [Minicurso - Controle de Versão usando o Git](https://github.com/ltiaunesp/Git-Minicurso) - LTIA UNESP 82 | * [Pro Git](http://git-scm.com/book/pt-br/) 83 | 84 | 85 | ### GO 86 | 87 | * [Go - hands on](https://github.com/go-br/estudos) 88 | 89 | 90 | ### Haskell 91 | 92 | * [Aprender o Haskell será um grande bem para você (tradução em andamento)](https://github.com/taylorrf/learnhaskell) 93 | 94 | 95 | ### HTML / CSS 96 | 97 | * [Desenvolvimento Web com HTML, CSS e JavaScript](https://www.caelum.com.br/apostila-html-css-javascript/) - Caelum 98 | * [Dive Into HTML5](http://diveintohtml5.com.br) 99 | * [Estruturando o HTML com CSS](http://pt-br.learnlayout.com) 100 | 101 | 102 | ### Java 103 | 104 | * [Algoritmos e Estruturas de Dados com Java](http://www.caelum.com.br/apostila-java-estrutura-dados/) - Caelum 105 | * [Desenvolvimento Distribuído com JavaEE](https://www.gitbook.com/book/rafaelsakurai/desenvolvimento-distribuido) - Rafael Guimarães Sakurai 106 | * [Introdução a Ciência da Computação com Java](http://ccsl.ime.usp.br/files/books/intro-java-cc.pdf) (PDF) 107 | * [Java e Orientação a Objetos](http://www.caelum.com.br/apostila-java-orientacao-objetos/) - Caelum 108 | * [Java para Desenvolvimento Web](http://www.caelum.com.br/apostila-java-web/) - Caelum 109 | * [Lab. Java com Testes, JSF e Design Patterns](https://www.caelum.com.br/apostila-java-testes-jsf-web-services-design-patterns/) - Caelum 110 | * [Web ágil com VRaptor, Hibernate e AJAX](http://www.caelum.com.br/apostila-vraptor-hibernate/) - Caelum 111 | 112 | 113 | ### JavaScript 114 | 115 | * [Eloquente Javascript](https://github.com/braziljs/eloquente-javascript) 116 | * [EXPERT JS Stack](http://stack.desenvolvedor.expert) 117 | * [Guia JavaScript](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Guide) 118 | * [Guia Rápido de Desenvolvimento para Firefox OS](https://leanpub.com/guiarapidofirefoxos) 119 | * [JS: A forma certa](http://jstherightway.org/pt-br/) 120 | 121 | 122 | #### Angular 123 | 124 | * [Implemente um aplicativo de página única com o Angular 2](https://www.ibm.com/developerworks/br/library/implemente-aplicativo-pagina-unica-angular-2/index.html) 125 | 126 | 127 | #### Angular.js 128 | 129 | * [Criando uma aplicação simples com AngularJS](http://tableless.com.br/criando-uma-aplicacao-simples-com-angularjs/) 130 | * [Criando uma aplicação Single Page com AngularJS](http://tableless.com.br/criando-uma-aplicacao-single-page-com-angularjs/) 131 | * [Entendendo as diretivas e fazendo abas com AngularJS](http://tableless.com.br/diretivas-angularjs-abas/) 132 | 133 | 134 | #### Backbone.js 135 | 136 | * [Série Backbone.js (blog.fernandomantoan.com)](http://blog.fernandomantoan.com/serie-backbone-js-parte-1-introducao/) 137 | * [Série Backbone.js (devfuria.com.br)](http://www.devfuria.com.br/javascript/backbone/) 138 | 139 | 140 | #### Ember.js 141 | 142 | * [Conceitos basicos do Ember.js](http://fabriciotav.org/blog/2013/02/20/conceitos-basicos-do-emberjs.html) 143 | * [Handlebars Helpers com Ember.js](http://fabriciotav.org/blog/2013/02/20/handlebars-helpers-com-emberjs.html) 144 | 145 | 146 | #### Express.js 147 | 148 | * [Primeiros passos com Express em Node.js](http://nodebr.com/primeiros-passos-com-express-em-node-js/) 149 | 150 | 151 | #### Grunt 152 | 153 | * [Grunt - Voce deveria estar usando](http://tableless.com.br/grunt-voce-deveria-estar-usando/) 154 | * [Grunt | Automatizando tarefas](http://woliveiras.com.br/posts/grunt-automatizando-tarefas/) 155 | 156 | 157 | #### Gulp 158 | 159 | * [Gulp - O novo automatizador](http://tableless.com.br/gulp-o-novo-automatizador/) 160 | 161 | 162 | #### jQuery 163 | 164 | * [Artigos sobre jQuery](https://tableless.com.br/categories/jquery/) 165 | 166 | 167 | #### Knockout.js 168 | 169 | * [Documentação](https://github.com/alexhiroshi/knockoutjs-brasil) 170 | 171 | 172 | #### Meteor 173 | 174 | * [Tudo sobre Meteor](http://udgwebdev.com/meteor/) 175 | 176 | 177 | #### Node.js 178 | 179 | * [Node.js para Leigos](http://udgwebdev.com/nodejs/) 180 | * [Primeiros passos com Node.js](http://tableless.com.br/o-que-nodejs-primeiros-passos-com-node-js/) 181 | * [Raspagem de dados com Node.js](http://tableless.com.br/raspagem-de-dados-com-node-js/) 182 | 183 | 184 | #### React 185 | 186 | * [React: JavaScript reativo](http://tableless.com.br/react-javascript-reativo/) 187 | * [The Road to Learn React](https://leanpub.com/the-road-to-learn-react-portuguese) *(necessário conta no Leanpub ou e-mail válido)* 188 | 189 | 190 | #### Vue.js 191 | 192 | * [Adicionar Bootstrap e Font-awesome no projeto criado com o Vue Cli](http://www.vedovelli.com.br/frontend/adicionar-bootstrap-e-font-awesome-no-projeto-criado-com-o-vue-cli/) 193 | * [Documentação pt-BR](https://br.vuejs.org/v2/guide/) 194 | * [Vue.js Brasil - Artigos em Português sobre Vue.js](http://www.vuejs-brasil.com.br) 195 | * [VueJS: Filtro para criar URL’s amigáveis](http://web.archive.org/web/20160331162636/http://carlosgartner.com.br/vuejs-filtro-para-criar-urls-amigaveis/) 196 | 197 | 198 | ### LaTeX 199 | 200 | * [Breve Introdução ao LaTeX2e](http://www.if.ufrj.br/~sandra/MetComp/doc/latex.pdf) - Lenimar Nunes de Andrade (PDF) 201 | * [Introdução ao LaTeX 2 - Ou LaTeX 2 em 105 minutos](http://ctan.org/pkg/lshort-portuguese-br) 202 | 203 | 204 | ### LISP 205 | 206 | * [Introdução a linguagem LISP](http://www.dca.fee.unicamp.br/courses/EA072/lisp9596/Lisp9596.html) (HTML) 207 | 208 | 209 | ### Lua 210 | 211 | * [Manual de Referência de Lua 5.2](http://www.lua.org/manual/5.2/pt/) 212 | 213 | 214 | ### PHP 215 | 216 | * [A semana PHP](http://asemanaphp.com.br) 217 | * [Api REST Com Silex no GAE](http://bit.ly/ebook-silex) - Nanderson Castro (PDF, EPUB, MOBI) 218 | * [CakePHP](http://book.cakephp.org/2.0/pt/index.html) 219 | * [Curso Linguagem PHP 2000](http://www.etelg.com.br/paginaete/downloads/informatica/php.pdf) (PDF) 220 | * [PHP Do jeito certo](http://br.phptherightway.com) 221 | * [PHPUnit](https://phpunit.de/manual/current/pt_br/index.html) (PDF, EPUB, MOBI) 222 | 223 | 224 | ### Python 225 | 226 | * [Aprenda computação com Python](https://aprendendo-computacao-com-python.readthedocs.org/en/latest/index.html) 227 | * [Aprenda Python Básico - Rápido e Fácil de entender](http://felipegalvao.com.br/livros) (PDF / Epub) 228 | * [Curso de Python e Django](https://osantana.me/curso-de-python-e-django) 229 | * [Django 101 - Introdução ao Django](http://turing.com.br/material/acpython/mod3/django/index.html) 230 | * [Introdução a Visão Computacional com Python e OpenCV](http://professor.luzerna.ifc.edu.br/ricardo-antonello/wp-content/uploads/sites/8/2017/02/Livro-Introdu%C3%A7%C3%A3o-a-Vis%C3%A3o-Computacional-com-Python-e-OpenCV-3.pdf) (PDF) 231 | * [O tutorial de Python](http://turing.com.br/pydoc/2.7/tutorial/) 232 | * [Python Orientado a Objetos](https://docs.google.com/viewer?a=v&pid=sites&srcid=ZGVmYXVsdGRvbWFpbnxyYWZhZWx1ZnR8Z3g6NTJlM2UzYzY1ZTgzMDEwMw) (PDF) 233 | * [Python para Desenvolvedores](https://ark4n.files.wordpress.com/2010/01/python_para_desenvolvedores_2ed.pdf) (PDF) 234 | * [Tutorial Django Girls](http://tutorial.djangogirls.org/pt/) 235 | 236 | 237 | #### Django 238 | 239 | * [Tutorial Django Girls](https://tutorial.djangogirls.org/pt/) 240 | 241 | 242 | ### RegEx 243 | 244 | * [Expressões Regulares - Guia de Consulta Rápida](http://aurelio.net/regex/guia/) 245 | 246 | 247 | ### Ruby 248 | 249 | * [Aprenda a Programar](http://www.jmonteiro.com/aprendaaprogramar/) 250 | * [Conhecendo Ruby](http://howtocode.com.br/ebooks/ruby) 251 | * [Conhecendo Ruby - Eustaquio Rangel](https://leanpub.com/conhecendo-ruby/read) 252 | * [O (comovente) guia de Ruby do Why](http://why.carlosbrando.com) 253 | * [Ruby on Rails - Desenv. Ágil para Web com Ruby on Rails](http://www.caelum.com.br/apostila-ruby-on-rails/) - Caelum 254 | 255 | 256 | ### Shell 257 | 258 | * [Introdução ao Shell Script](http://aurelio.net/shell/apostila-introducao-shell.pdf) - Aurelio Marinho Jargas (PDF) 259 | * [Pequena introdução ao linux e ao Shell Script](https://www.telecom.uff.br/pet/petws/downloads/apostilas/LINUX.pdf) (PDF) 260 | * [Shell Script do Zero](http://metamorphoselinux.net/Shell_Script_do_Zero.pdf) (PDF) 261 | 262 | 263 | ### Vim 264 | 265 | * [Editor VI - Guia de Referência](http://aurelio.net/curso/material/vim-ref.html) - Aurelio Marinho Jargas 266 | * [O Editor de Texto Vim](https://code.google.com/p/vimbook) - Sérgio Luiz Araújo Silva et al. 267 | * [Vim Avançado](http://aurelio.net/vim/vim-avancado.txt) - Aurelio Marinho Jargas 268 | * [Vim Básico](http://aurelio.net/vim/vim-basico.txt) - Aurelio Marinho Jargas 269 | * [Vim Médio](http://aurelio.net/vim/vim-medio.txt) - Aurelio Marinho Jargas 270 | * [Vim para Noobs](http://woliveiras.com.br/vimparanoobs/) - William Oliveira Souza 271 | -------------------------------------------------------------------------------- /free-podcasts-screencasts-en.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [Android](#android) 4 | * [C#](#c) 5 | * [C++](#c-1) 6 | * [Clojure](#clojure) 7 | * [Common Lisp](#common-lisp) 8 | * [CSS](#css) 9 | * [Data Science](#data-science) 10 | * [Elixir](#elixir) 11 | * [Emacs](#emacs) 12 | * [Erlang](#erlang) 13 | * [Git](#git) 14 | * [Golang](#golang) 15 | * [Gulp](#gulp) 16 | * [Haskell](#haskell) 17 | * [Java](#java) 18 | * [Javascript](#javascript) 19 | * [Angular.js](#angularjs) 20 | * [Elm](#elm) 21 | * [Ember.js](#emberjs) 22 | * [Node.js](#nodejs) 23 | * [p5.js](#p5js) 24 | * [React.js](#reactjs) 25 | * [Kotlin](#kotlin) 26 | * [Language Agnostic](#language-agnostic) 27 | * [PHP](#php) 28 | * [PostgreSQL](#postgresql) 29 | * [Python](#python) 30 | * [Ruby](#ruby) 31 | * [Rust](#rust) 32 | * [Vim](#vim) 33 | 34 | 35 | ### Android 36 | 37 | * [Android Developers Backstage](http://androidbackstage.blogspot.com) (podcast) 38 | * [Fragmented Podcast](http://fragmentedpodcast.com) (podcast) 39 | 40 | 41 | ### C# 42 | 43 | * [How to program in C# - Beginner Course | Brackeys](https://www.youtube.com/playlist?list=PLPV2KyIb3jR6ZkG8gZwJYSjnXxmfPAl51) (screencast) 44 | 45 | 46 | ### C++ 47 | 48 | * [C++ Programming Video Lectures](https://www.youtube.com/playlist?list=PLTZbNwgO5ebo64D1k0DJQGX30X6iSTmRr) (screencast) 49 | * [C++ STL](https://www.youtube.com/playlist?list=PL5jc9xFGsL8G3y3ywuFSvOuNm3GjBwdkb) (screencast) 50 | * [CppCast](http://cppcast.com) (podcast) 51 | 52 | 53 | ### Clojure 54 | 55 | * [Parens of the Dead](http://www.parens-of-the-dead.com) (screencast) 56 | 57 | 58 | ### Common Lisp 59 | 60 | * [Little Bits of Lisp](https://www.youtube.com/playlist?list=PL2VAYZE_4wRJi_vgpjsH75kMhN4KsuzR_) (screencast) 61 | 62 | 63 | ### CSS 64 | 65 | * [CSS-Tricks Screencasts](https://css-tricks.com/video-screencasts/) (screencast) 66 | 67 | 68 | ### Data Science 69 | 70 | * [Data Skeptic](http://dataskeptic.com/episodes.php) (podcast) 71 | * [Data Stories](http://datastori.es) (podcast) 72 | * [Learning Machines 101](http://www.learningmachines101.com) (podcast) 73 | * [Linear Digressions](http://www.lineardigressions.com) (podcast) 74 | * [O'Reilly Data Show Podcast](https://www.oreilly.com/topics/oreilly-data-show-podcast) (podcast) 75 | * [Partially Derivative](http://partiallyderivative.com) (podcast) 76 | * [Super Data Science](https://www.superdatascience.com/podcast/) (podcast) 77 | * [Talking Machines](http://www.thetalkingmachines.com) (podcast) 78 | 79 | 80 | ### Elixir 81 | 82 | * [Elixir Sips](http://elixirsips.com) - Some free (screencast) 83 | * [ElixirCasts](https://elixircasts.io) (screencast) 84 | * [ElixirConf 2014](https://www.youtube.com/playlist?list=PLE7tQUdRKcyakbmyFcmznq2iNtL80mCsT) (screencast) 85 | * [ElixirConf 2015](https://www.youtube.com/playlist?list=PLWbHc_FXPo2jBXpr1IjyUgJ7hNS1eTf7H) (screencast) 86 | * [Intro to Elixir](https://www.youtube.com/watch?v=lly-1UYmnFI&list=PLn76XROGFNtE9InImlu6e8isbOsM7qKtt) (screencast) 87 | 88 | 89 | ### Emacs 90 | 91 | * [Emacs Rocks!](http://emacsrocks.com) (screencast) 92 | 93 | 94 | ### Erlang 95 | 96 | * [Erlang Factory SF Bay 2015](https://www.youtube.com/playlist?list=PLWbHc_FXPo2h0sJW6X2RZDtT1ndw6KKpQ) (screencast) 97 | * [Functions + Messages + Concurrency = Erlang](http://www.infoq.com/presentations/joe-armstrong-erlang-qcon08) (screencast) 98 | * [Thinking like an Erlanger](https://www.youtube.com/watch?v=6sBL1kHoMoo) (screencast) 99 | 100 | 101 | ### Git 102 | 103 | * [GitMinutes](http://www.gitminutes.com) (podcast) 104 | * [The Coding Train - Git and GitHub for Poets](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6ZF9C0YMKuns9sLDzK6zoiV) (screencast) 105 | 106 | 107 | ### Golang 108 | 109 | * [Build webapp without using a framework](https://www.youtube.com/playlist?list=PL41psiCma00wgiTKkAZwJiwtLTdcyEyc4) (screencast) 110 | * [Go An Introduction](https://www.youtube.com/watch?v=SI-okTfauyw) (screencast) 111 | * Go and AngularJS (screeencasts) 112 | * [Part 1 - Hello World](https://www.youtube.com/watch?v=U80k7fTEqNw) 113 | * [Part 2 - Websockets](https://www.youtube.com/watch?v=ysAZ_oqPOo0) 114 | * [Part 3 - REST and ngResource](https://www.youtube.com/watch?v=QHIMygADPPc) 115 | * [Go Programming Tutorial](https://www.youtube.com/watch?v=CF9S4QZuV30) (screencast) 116 | * [Go Time](https://changelog.com/gotime) (podcast) 117 | * [Hacking with Andrew and Brad: an HTTP/2 client](https://www.youtube.com/watch?v=yG-UaBJXZ80) (screencast) 118 | * [Hacking with Andrew and Brad: tip.golang.org](https://www.youtube.com/watch?v=1rZ-JorHJEY) (screencast) 119 | 120 | 121 | ### Gulp 122 | 123 | * [Learning Gulp](https://www.leveluptutorials.com/tutorials/learning-gulp) (screencast) 124 | 125 | 126 | ### Haskell 127 | 128 | * [The Haskell Cast](http://www.haskellcast.com) (podcast) 129 | 130 | 131 | ### Java 132 | 133 | * [Building a Java & Spring Boot app: Kid-Bank development](https://www.youtube.com/playlist?list=PLBHctPrH7Z29W8XtVDyc_mMvD2GO7GIF2) - Ted M. Young (screencast) 134 | 135 | 136 | ### Javascript 137 | 138 | * [FiveJS](https://fivejs.codeschool.com) (podcast) 139 | * [Free Quality Javascript video tutorials and screencasts](http://www.screencasts.org/topics/javascript) (screencast) 140 | * [Front End Happy Hour](http://frontendhappyhour.com) (podcast) 141 | * [Frontend Five](https://frontendfive.codeschool.com) (podcast) 142 | * [JavaScript Air](https://javascriptair.com) (podcast) 143 | * [JavaScript Jabber](https://devchat.tv/js-jabber) (podcast) 144 | * [Node Tuts - Node.JS Video Tutorials](http://nodetuts.com) (screencast) 145 | * [Syntax](https://syntax.fm) (podcast) 146 | * [The Javascript Show](http://javascriptshow.com) (podcast) 147 | 148 | 149 | #### Angular.js 150 | 151 | * [Adventures in Angular - DevChat.tv](https://devchat.tv/adventures-in-angular/) (podcast) 152 | * [Angular Air](https://angularair.com) (podcast) 153 | 154 | 155 | #### Elm 156 | 157 | * [Elm Town](https://elmtown.audio) (podcast) 158 | 159 | 160 | #### Ember.js 161 | 162 | * [Ember Weekend](https://emberweekend.com/episodes) (podcast) 163 | 164 | 165 | #### Node.js 166 | 167 | * [Nodeup](http://nodeup.com) (podcast) 168 | * [Twitter Bot Tutorial - Node.js and Processing](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6atTSxoRiVnSuOn6JHnq2yV) (screencast) 169 | 170 | 171 | #### p5.js 172 | 173 | * [Code! Programming with p5.js](https://www.youtube.com/playlist?list=PLRqwX-V7Uu6Zy51Q-x9tMWIv9cueOFTFA) (screencast) 174 | 175 | 176 | #### React.js 177 | 178 | * [React Native Podcast](https://devchat.tv/react-native-radio) (podcast) 179 | * [React Podcast](https://reactpodcast.simplecast.fm) (podcast) 180 | * [ReactCasts](https://www.youtube.com/c/reactcasts) (screencast) 181 | 182 | 183 | ### Kotlin 184 | 185 | * [Kotlin Beginners Tutorials](https://www.youtube.com/playlist?list=PLpg00ti3ApRweIhdOI4VCFFStx4uXC__u) (screencast) 186 | * [Talking Kotlin](http://talkingkotlin.com) (podcast) 187 | 188 | 189 | ### Language Agnostic 190 | 191 | * [/dev/hell](http://devhell.info) (podcast) 192 | * [Arrested DevOps](https://www.arresteddevops.com) (podcast) 193 | * [baseCS](https://www.codenewbie.org/basecs) (podcast based on [a series of posts on medium](https://medium.com/basecs)) 194 | * [Beats, Rye & Types](http://beatsryetypes.com) (podcast) 195 | * [Between | Screens Podcast](https://soundcloud.com/between-screens) (podcast) 196 | * [BSDTalk](http://bsdtalk.blogspot.com) (podcast) 197 | * [CodeNewbie](http://www.codenewbie.org/podcast) (podcast) 198 | * [CodePen Radio](https://blog.codepen.io/radio/) (podcast) 199 | * [Coding Blocks](http://www.codingblocks.net) (podcast) 200 | * [Command Line Heroes](https://www.redhat.com/en/command-line-heroes) (podcast) 201 | * [CTRL+CLICK CAST](http://ctrlclickcast.com) (podcast) 202 | * [Developer On Fire](http://developeronfire.com) (podcast) 203 | * [Developer Tea](https://developertea.com) (podcast) 204 | * [DevelopersHangout](http://www.developershangout.io) (podcast) 205 | * [FLOSS WEEKLY](https://twit.tv/shows/floss-weekly) (podcast) 206 | * [Frontside the Podcast](https://frontsidethepodcast.simplecast.fm) (podcast) 207 | * [Full Stack Radio](http://www.fullstackradio.com) (podcast) 208 | * [Functional Geekery](https://www.functionalgeekery.com) (podcast) 209 | * [Garbage](http://garbage.fm) (podcast) 210 | * [IEEE Software's "On Computing" with Grady Booch](http://www.computer.org/web/computingnow/oncomputing) (podcast) 211 | * [Learn to Code with Me](http://learntocodewith.me/podcast/) (podcast) 212 | * [Loosely Coupled](http://looselycoupled.info) (podcast) 213 | * [.NET Rocks!](https://www.dotnetrocks.com) (podcast) 214 | * [Open Source System Podcast](http://opensourcesystempodcast.vf.io) (podcast) 215 | * [Programming Throwdown](http://www.programmingthrowdown.com) (podcast) 216 | * [Reactive](http://reactive.audio) (podcast) 217 | * [Security Now](https://www.grc.com/securitynow.htm) (podcast) 218 | * [Shop Talk Show](http://shoptalkshow.com) (podcast) 219 | * [Software Engineering Daily](http://softwareengineeringdaily.com) (podcast) 220 | * [Software Engineering Radio](http://www.se-radio.net) (podcast) 221 | * [Syscast Podcast](http://podcast.sysca.st) (podcast) 222 | * [Talking Code](http://www.talkingcode.com) (podcast) 223 | * [Testing In The Pub](http://testinginthepub.co.uk/testinginthepub/) (podcast) 224 | * [The Big Web Show](http://5by5.tv/bigwebshow) (podcast) 225 | * [The Changelog Podcast](https://changelog.com/podcast/) (podcast) 226 | * [The Cloudcast](http://www.thecloudcast.net) (podcast) 227 | * [The Cognicast](http://blog.cognitect.com/cognicast) (podcast) 228 | * [The Creative Coding Podcast](http://creativecodingpodcast.com) (podcast) 229 | * [The Cynical Developer: Weekly Technology and Software Developer Podcast](https://cynicaldeveloper.com/podcast) (podcast) 230 | * [The Debug Log](http://thedebuglog.com) (podcast) 231 | * [The Hanselminutes podcast](http://hanselminutes.com) (podcast) 232 | * [The Path to Performance](https://pathtoperf.com) (podcast) 233 | * [The Podcast from DZone.com: "For Developers, by Developers"](https://dzone.com/podcast) (podcast) 234 | * [The Silver Bullet Security Podcast with Gary McGraw](http://www.computer.org/web/computingnow/silverbullet) (podcast) 235 | * [The Web Ahead](http://5by5.tv/webahead) (podcast) 236 | * [The Web Platform](http://thewebplatform.libsyn.com) (podcast) 237 | * [This Developer's Life](http://thisdeveloperslife.com) (podcast) 238 | * [ThoughtWorks](https://soundcloud.com/thoughtworks) (podcast) 239 | * [Three Devs and a Maybe](http://threedevsandamaybe.com) (podcast) 240 | * [Toolsday](http://toolsday.io) (podcast) 241 | * [TTL Podcast](http://ttlpodcast.com) (podcast) 242 | * [Web Security Warriors](https://devchat.tv/web-security-warriors/) (podcast) 243 | 244 | 245 | ### PHP 246 | 247 | * [Laravel News Podcast](http://podcast.laravel-news.com) (podcast) 248 | * [MageTalk - A Magento Podcast](http://magetalk.com) (podcast) 249 | * [PHP Roundtable](https://www.phproundtable.com) (podcast) 250 | * [PHP Town Hall](http://phptownhall.com) (podcast) 251 | * [Sound of Symfony](http://www.soundofsymfony.com) (podcast) 252 | * [Voices of the ElePHPant](https://voicesoftheelephpant.com) (podcast) 253 | 254 | 255 | ### PostgreSQL 256 | 257 | * [PG Casts](https://www.pgcasts.com) (screencast) 258 | 259 | 260 | ### Python 261 | 262 | * [Build applications in Python the antitextbook](https://www.youtube.com/playlist?list=PL41psiCma00wwvtQyLFMFpzWxUYmSZwZy) (screencast) 263 | * [Diving into Django](http://code.tutsplus.com/articles/diving-into-django--net-2969) (screencast) 264 | * [Import this](https://soundcloud.com/import-this) (podcast) 265 | * [Podcast.__init__](http://podcastinit.com) (podcast) 266 | * [Practical Flask Web Development Tutorials](https://www.youtube.com/playlist?list=PLQVvvaa0QuDc_owjTbIY4rbgXOFkUYOUB) (screencast) 267 | * [Python Bytes](https://pythonbytes.fm) (podcast) 268 | * [Python Test Podcast](http://pythontesting.net/test-podcast) (podcast) 269 | * [Python Tips](https://www.youtube.com/playlist?list=PLP8GkvaIxJP3ignHY_Dq7bFsvwzAcqZ1i) (screencast) 270 | * [Talk Python To Me - A podcast on Python and related technologies](http://talkpython.fm) (podcast) 271 | * [TheNewBoston - Pygame (Python Game Development) Playlist](https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAjkwJocj7vlc_mFU-4wXJq) (screencast) 272 | * [TheNewBoston - Python 3.4 Programming Tutorials](https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAcbMi1sH6oAMk4JHw91mC_) (screencast) 273 | * [TheNewBoston - Python GUI with Tkinter Playlist](https://www.youtube.com/playlist?list=PL6gx4Cwl9DGBwibXFtPtflztSNPGuIB_d) (screencast) 274 | * [TheNewBoston - Python Programming Tutorials - 2.x](https://www.youtube.com/playlist?list=PLEA1FEF17E1E5C0DA) (screencast) 275 | * [Try Django Tutorial](http://youtu.be/3DccH9AMwFQ?list=PLEsfXFp6DpzRgedo9IzmcpXYoSeDg29Tx) (screencast) 276 | 277 | 278 | ### Ruby 279 | 280 | * [5by5 - Ruby on Rails Podcast](http://5by5.tv/rubyonrails) (podcast) 281 | * [Drifting Ruby](https://www.driftingruby.com) (screencast) 282 | * [Railscasts](http://railscasts.com) (screencast) 283 | * [Ruby Rogues](https://devchat.tv/ruby-rogues/) (podcast) 284 | * [Ruby Tapas | Free Screencasts](http://www.rubytapas.com/episodes?filter=free) (screencast) 285 | * [The Bike Shed](http://bikeshed.fm) (podcast) 286 | * [The Ruby Show](http://rubyshow.com) (podcast) 287 | 288 | 289 | ### Rust 290 | 291 | * [New Rustacean](http://www.newrustacean.com) (podcast) 292 | * [Rusty Radio](https://soundcloud.com/posix4e) (podcast) 293 | 294 | 295 | ### Vim 296 | 297 | * [Free screencasts about the text editor Vim](http://vimcasts.org) (screencast) 298 | -------------------------------------------------------------------------------- /free-courses-es.md: -------------------------------------------------------------------------------- 1 | ### Índice 2 | 3 | * [Android](#android) 4 | * [Arduino](#arduino) 5 | * [Bases de Datos](#bases-de-datos) 6 | * [Big Data](#big-data) 7 | * [Ciencias de la Computación](#ciencias-de-la-computación) 8 | * [Flujos de trabajo](#flujos-de-trabajo) 9 | * [Ofimática](#ofimática) 10 | * [Procesadores de lenguaje](#procesadores-de-lenguaje) 11 | * [Programación](#programación) 12 | * [Programación Web & Móvil](#programación-web--móvil) 13 | * [Redes](#redes) 14 | * [Redes de telefonía](#redes-de-telefonía) 15 | * [Robótica](#robótica) 16 | * [Seguridad](#seguridad) 17 | * [Servidores](#servidores) 18 | * [Sistemas de gestión de contenidos / CMS](#sistemas-de-gestión-de-contenidos-cms) 19 | * [Técnico de Software & Hardware](#técnico-de-software--hardware) 20 | * [Videojuegos](#videojuegos) 21 | * [Web & Webmaster](#web--webmaster) 22 | 23 | 24 | ### Android 25 | 26 | * [Aprende a programar tu primera app](https://www.edx.org/es/course/jugando-con-android-aprende-programar-tu-uamx-android301x-4) 27 | * [Introducción a la programación Android](https://www.edx.org/es/course/android-introduccion-la-programacion-upvalenciax-aip201x-1) 28 | * [Introducción a la programación Android](https://campusvirtual.ull.es/ocw/course/view.php?id=130) 29 | 30 | 31 | ### Arduino 32 | 33 | * [Arduino, creando aplicaciones](https://www.coursera.org/learn/arduino-aplicaciones) 34 | 35 | 36 | ### Bases de Datos 37 | 38 | * [Almacenamiento de datos No Relacionales](https://ocw.unican.es/course/view.php?id=231) 39 | * [Bases de Datos - Curso Completo (2014)](http://ocw.uji.es/curso/317342) 40 | * [Bases de Datos (2011)](https://ocw.unican.es/course/view.php?id=163) 41 | * [Bases de Datos (2012)](http://ocw.uji.es/curso/4858) 42 | * [Fundamentos de las bases de datos (2011)](https://ocw.ua.es/es/ingenieria-y-arquitectura/fundamentos-de-las-bases-de-datos-2011.html) 43 | 44 | 45 | ### Big Data 46 | 47 | * [Big Data, el valor añadido de los datos de un negocio](https://miriadax.net/web/big-data-el-valor-anadido-de-los-datos-en-su-negocio) 48 | * [Big Data Marketing](https://miriadax.net/web/big-data-marketing) 49 | * [Big Data para una ciudad inteligente](https://miriadax.net/web/big-data-para-una-ciudad-inteligente-2-edicion-) 50 | * [Introducción al Bussiness Intelligence y al Big data](https://miriadax.net/web/introduccion-al-business-intelligence-y-al-big-data-3-edicion-) 51 | 52 | 53 | ### Ciencias de la Computación 54 | 55 | * [Arquitéctura e ingeniería de computadores](https://ocw.unican.es/course/view.php?id=162) 56 | * [Arquitecturas Distribuidas (2012)](http://ocw.bib.upct.es/course/view.php?id=137) 57 | * [Bases Matemáticas: Álgebra](https://www.edx.org/course/bases-matematicas-algebra-upvalenciax-bma101x-2) 58 | * [Curso de R básico](https://ocw.uca.es/course/view.php?id=62) 59 | * [Dispositivos móviles para la Gestión del Territorio](https://www.edx.org/course/dispositivos-moviles-para-la-gestion-del-upvalenciax-dmt201x-1) 60 | * [Estadística básica con R y R-Commander](https://ocw.uca.es/course/view.php?id=11) 61 | * [Estructura de Datos y de la Información (2012)](http://ocw.uji.es/curso/5049) 62 | * [Fundamentos de Computación (2010)](https://ocw.unican.es/course/view.php?id=194) 63 | * [Fundamentos de Comunicaciones Ópticas](https://www.edx.org/course/fundamentos-de-comunicaciones-opticas-upvalenciax-fco201x-1) 64 | * [Fundamentos de Informática (2008)](http://ocw.bib.upct.es/course/view.php?id=112) 65 | * [Fundamentos Físicos de la Informática (2010)](http://ocw.uv.es/ingenieria-y-arquitectura/1-4/Course_listing) 66 | * [Informática - algoritmos y aritmética- (2012)](http://ocw.uv.es/ciencias/informatica-1/Course_listing) 67 | * [Ingieniería Electrónica y Automática - PLC (2014)](http://isa.uniovi.es/docencia/iea/) 68 | * [Introducción a la informática: Codificación de la información (2015)](http://ocw.uji.es/curso/922898) 69 | * [Laboratorio de Comunicaciones (2008)](http://ocw.bib.upct.es/course/view.php?id=80) 70 | * [Lenguajes unificado de modelado: UML (2016)](https://campusvirtual.ull.es/ocw/course/view.php?id=132) 71 | * [Matlab y Octave para ingenieros y científicos](https://miriadax.net/web/matlab-y-octave-para-ingenieros-y-cientificos) 72 | * [Metodología y Tecnología de la Programación (2006)](http://ocw.uji.es/curso/5126) 73 | * [Pensamiento Computacional en la Escuela](https://miriadax.net/web/pensamiento-computacional-en-la-escuela-2ed) 74 | * [Programación Estadística, Programación en R](https://www.coursera.org/learn/intro-data-science-programacion-estadistica-r) 75 | * [Programación Multimedia (2013)](http://ocw.uv.es/ingenieria-y-arquitectura/programacionmultimedia/Course_listing) 76 | * [Sistemas de Telecomunicación (2011)](http://ocw.bib.upct.es/course/view.php?id=99&topic=1) 77 | * [Sistemas Electrónicos para el Tratamiento de la Información (2011)](http://ocw.uv.es/ingenieria-y-arquitectura/1-4/Course_listing) 78 | * [Telemática (2011)](http://ocw.bib.upct.es/course/view.php?id=101) 79 | 80 | 81 | ### Flujos de Trabajo 82 | 83 | * [Agilidad y Lean. Gestionando los proyectos y negocios del Siglo XXI](https://miriadax.net/web/agilidad-y-lean-gestionando-los-proyectos-y-negocios-del-s-xxi-6-edicion-) 84 | * [Cómo implantar grupos de mejora de procesos](https://www.edx.org/course/como-implantar-grupos-de-mejora-de-upvalenciax-gm201x-0) 85 | * [Gestión de proyectos con metodologías ágiles y enfoques Lean](https://miriadax.net/web/gestion-de-proyectos-con-metodologias-agiles-y-enfoques-lean-3-edicion-) 86 | * [Gestión de proyectos software (2015)](https://ocw.unican.es/course/view.php?id=23) 87 | * [Gestión Participativa](https://www.edx.org/course/gestion-participativa-high-involvement-upvalenciax-gp201x-0) 88 | * [Ingeniería del Software I (2011)](https://ocw.unican.es/course/view.php?id=169) 89 | * [Ingeniería del Software II (2011)](https://ocw.unican.es/course/view.php?id=170) 90 | * [Introducción a la Gestión de Proyectos](https://www.edx.org/course/introduccion-la-gestion-de-proyectos-upvalenciax-igp101-x) 91 | * [Organización y gestión del proyecto (2009)](https://ocw.unican.es/course/view.php?id=207) 92 | * [Procesadores de Lenguaje (2012)](https://ocw.unican.es/course/view.php?id=158) 93 | * [Sistemas operativos avanzados - 'scrum - bsd- Qt' (2015)](https://campusvirtual.ull.es/ocw/course/view.php?id=119) 94 | 95 | 96 | ### Ofimática 97 | 98 | * [Creación y retoque de imágenes con software libre](https://miriadax.net/web/creacion-y-retoque-2-ed) 99 | * [Excel 1 - Básico](https://www.edx.org/course/excel-upvalenciax-xls101x-1) 100 | * [Excel 2 - Gestión de Datos](https://www.edx.org/course/excel-2-gestion-de-datos-upvalenciax-xls201x) 101 | * [OpenOffice](https://miriadax.net/web/software-libre-ofimatica-con-openoffice) 102 | * [OpenOffice Calc. Gestión de datos sobre hojas de cálculo (2014)](https://ocw.unican.es/course/view.php?id=61) 103 | * [Presentaciones eficaces (2012)](https://ocw.unican.es/course/view.php?id=188) 104 | * [Presentaciones eficaces con PowerPoint](https://www.edx.org/es/course/disena-presentaciones-eficaces-con-upvalenciax-ppt101x-0) 105 | * [Subtitulación de Vídeos](https://miriadax.net/web/subtitular-en-linea-2-edicion-) 106 | 107 | 108 | ### Procesadores de lenguaje 109 | 110 | * [Compiladores e Intérpretes (2012)](http://ocw.uji.es/curso/4949) 111 | * [Procesadores de lenguaje (2006)](https://ocw.ua.es/es/ingenieria-y-arquitectura/procesadores-de-lenguaje-2006.html) 112 | * [Procesadores de Lenguaje (2012)](http://ocw.uji.es/curso/5180) 113 | * [Procesadores de lenguajes -enfocado en Perl-](https://campusvirtual.ull.es/ocw/course/view.php?id=45) 114 | * [Procesadores de lenguajes II](https://ocw.uca.es/course/view.php?id=56) 115 | 116 | 117 | ### Programación 118 | 119 | * [Fundamentos de informática en lenguaje C - I](https://ocw.uca.es/course/view.php?id=31) 120 | * [Fundamentos de informática en lenguaje C y Arduino - II](https://ocw.uca.es/course/view.php?id=74) 121 | * [Introducción a la programación orientada a objetos en Java](https://www.coursera.org/learn/introduccion-programacion-java) 122 | * [Introducción a la programación para ciencias e ingieniería](https://miriadax.net/web/introduccion-programacion-ciencias-ingenieria-2edicion) 123 | * [Introducción a la programación, Python I](https://www.coursera.org/learn/aprendiendo-programar-python) 124 | * [Introducción a la programación. Descubre el lenguaje de la era digital](https://miriadax.net/web/introduccion-a-la-programacion-descubre-el-lenguaje-de-la-era-digital-5-edicion-) 125 | * [Introducción a Perl(2012)](https://campusvirtual.ull.es/ocw/course/view.php?id=43) 126 | * [Introducción al desarrollo web - iDesWeb](https://miriadax.net/web/introduccion_desarrollo_web) 127 | * [Introducción al tratamiento de datos con R y Rstudio](https://miriadax.net/web/aprende-r-rstudio) 128 | * [Programación en C/C++ y Aplicaciones Matemáticas (2011)](http://ocw.um.es/ciencias/programacion-en-c-c-y-aplicaciones-matematicas) 129 | * [Programación en entornos interactivos 'Qt - gtk' (2010)](https://ocw.ua.es/es/ingenieria-y-arquitectura/programacion-en-entornos-interactivos-2010.html) 130 | * [Programación en lenguaje ADA (2010)](https://ocw.unican.es/course/view.php?id=185) 131 | * [Programación en lenguaje Java](http://ocw.uc3m.es/historico/programacion-java) 132 | * [Programación en lenguaje Java (2009)](https://ocw.unican.es/course/view.php?id=217) 133 | * [Programación en lenguaje Java (2015)](https://ocw.unican.es/course/view.php?id=26) 134 | * [Programación en paralelo -Perl- (2012)](https://campusvirtual.ull.es/ocw/course/view.php?id=44) 135 | * [Programación orientada a objetos](https://www.edx.org/es/course/programacion-orientada-objetos-mexicox-upevipn02x) 136 | * [Programación POO (2011)](https://ocw.ua.es/es/ingenieria-y-arquitectura/programacion-3-2011.html) 137 | 138 | 139 | ### Programación Web & Móvil 140 | 141 | * [Aplicaciones Web Avanzadas (2014)](http://ocw.uv.es/ingenieria-y-arquitectura/aplicaciones-web-avanzadas/Course_listing) 142 | * [Aprende a programar aplicaciones móviles](https://miriadax.net/web/creando-apps-aprende-a-programar-aplicaciones-moviles-4-edicion-) 143 | * [Desarrollo de servicios en la nube con HTML5, JavaScript y node.js](https://miriadax.net/web/desarrollo-de-servicios-en-la-nube-con-html5-javascript-y-nodejs-2-edicion-) 144 | * [Detección de objetos](https://www.coursera.org/learn/deteccion-objetos) 145 | * [Diseño web con HTML5+CSS](https://miriadax.net/web/diseno-web-con-html5-css-2-edicion-) 146 | * [Tecnologías Web (2010)](https://ocw.ua.es/es/ingenieria-y-arquitectura/tecnologias-web-2010.html) 147 | * [Windows Phone. Introducción al desarrollo de aplicaciones móviles](https://miriadax.net/web/introduccion-al-desarrollo-de-aplicaciones-moviles-con-windows-phone-2-edicion-) 148 | * [XML, marcado de textos y bibliotecas digitales (2007)](https://ocw.ua.es/es/ingenieria-y-arquitectura/xml-marcado-de-textos-y-bibliotecas-digitales-2007.html) 149 | 150 | 151 | ### Redes 152 | 153 | * [Aplicaciones y servicios en redes](https://ocw.unican.es/course/view.php?id=32) 154 | * [Conmutación (2012)](http://ocw.bib.upct.es/course/view.php?id=129) 155 | * [Dimensionamiento y planificación de redes (2015)](https://ocw.unican.es/course/view.php?id=19) 156 | * [Diseño y operación de redes telemáticas (2015)](https://ocw.unican.es/course/view.php?id=22) 157 | * [Laboratorio de arquitectura de redes de comunicaciones (2011)](http://ocw.bib.upct.es/course/view.php?id=100) 158 | * [Laboratorio de redes y servicios de telecomunicaciones (2011)](http://ocw.bib.upct.es/course/view.php?id=5) 159 | * [Protocolos de interconexión de redes (2012)](https://ocw.unican.es/course/view.php?id=159) 160 | 161 | 162 | ### Redes de telefonía 163 | 164 | * [Redes de comunicaciones (2015)](https://ocw.unican.es/course/view.php?id=27) 165 | * [Redes telefónicas (2009)](https://ocw.unican.es/course/view.php?id=211) 166 | 167 | 168 | ### Robótica 169 | 170 | * [Comunicaciones Espaciales (2010)](http://ocw.bib.upct.es/course/view.php?id=94) 171 | * [Diseña, fabrica y programa tu propio robot](https://www.edx.org/course/disena-fabrica-y-programa-tu-propio-upvalenciax-dyor101x) 172 | * [Inteligencia artificial: Clips (2015)](https://campusvirtual.ull.es/ocw/course/view.php?id=112) 173 | * [Inteligencia artificial: Prolog (2011)](https://campusvirtual.ull.es/ocw/course/view.php?id=104) 174 | * [Internet de las Cosas.Desarrollar soluciones en 'FIWARE'](https://miriadax.net/web/internet-de-las-cosas-como-desarrollar-soluciones-en-fiware) 175 | * [Introducción al Machine Learning](https://miriadax.net/web/introduccion-al-machine-learning-2-edicion-) 176 | * [Ondas Electromagnéticas (2014)](http://ocw.bib.upct.es/course/view.php?id=136) 177 | * [Robots autónomos (2006)](https://ocw.ua.es/es/ingenieria-y-arquitectura/robots-autonomos-2006.html) 178 | 179 | 180 | ### Seguridad 181 | 182 | * [Ciberseguridad. Entender ataques para desplegar contramedidas](https://miriadax.net/web/ciberseguridad-entender-los-ataques-para-desplegar-contramedidas-2-edicion-) 183 | * [Derecho e Internet (2011)](http://ocw.uv.es/ciencias-sociales-y-juridicas/plant/Course_listing) 184 | * [Garantía y seguridad en sistemas y redes (2016)](https://ocw.unican.es/course/view.php?id=16) 185 | * [Seguridad en Redes de Comunicación (2015)](https://ocw.unican.es/course/view.php?id=28) 186 | * [Seguridad en Redes de Comunicaciones (2011)](http://ocw.bib.upct.es/course/view.php?id=102) 187 | * [Seguridad en Sistemas Informáticos (2009)](http://ocw.uv.es/ingenieria-y-arquitectura/seguridad/Course_listing) 188 | * [Seguridad informática práctica](sis://miriadax.net/web/seguridad-informatica-practica) 189 | * [Seguridad informática y competencias profesionales](https://ocw.uca.es/course/view.php?id=55) 190 | * [Seguridad, privacidad y protección de datos I (2012)](http://ocw.uv.es/ciencias-sociales-y-juridicas/seguridad-privacidad-y-proteccion-de-datos-i/Course_listing) 191 | 192 | 193 | ### Servidores 194 | 195 | * [Introducción a Xampp y MySql (2012)](https://ocw.ua.es/es/ingenieria-y-arquitectura/introduccion-a-xampp-y-mysql-2012.html) 196 | 197 | 198 | ### Sistemas de gestión de contenidos / CMS 199 | 200 | * [Aprende Wordpress de forma sencilla](https://miriadax.net/web/aprende-wordpress-de-forma-sencilla-2-edicion-) 201 | 202 | 203 | ### Técnico de Software & Hardware 204 | 205 | * [Codificación de audio: más allá del MP3](https://www.edx.org/es/course/codificacion-de-audio-mas-alla-del-mp3-upvalenciax-mp3201x-0) 206 | * [Compresión de vídeo (2017)](https://ocw.unican.es/course/view.php?id=13) - Univ. de Cantabria 207 | * [Conectando el futuro con fibra óptica](https://miriadax.net/web/conectando-el-futuro-con-fibra-optica-5-edicion-_prueba) 208 | * [Desarrollo de sistemas de información (2013)](https://ocw.unican.es/course/view.php?id=99) 209 | * [Sistemas de Información y ordenadores, Parte 1: Sistemas de información para la empresa](https://www.edx.org/course/sistemas-de-informacion-y-ordenadores-upvalenciax-sic101-1x) 210 | * [Sistemas de Información y ordenadores, Parte 2: Hardware](https://www.edx.org/course/sistemas-de-informacion-y-ordenadores-upvalenciax-sic101-2x) 211 | * [Sistemas de Información y ordenadores, Parte 3: Desarrollo de software](https://www.edx.org/course/sistemas-de-informacion-y-ordenadores-upvalenciax-sic101-3x) 212 | * [Sistemas de Información y ordenadores, Parte 4: Programación](https://www.edx.org/course/sistemas-de-informacion-y-ordenadores-upvalenciax-sic101-4x) 213 | * [Sistemas Multimedia (2009)](https://poliformat.upv.es/portal/tool/f682ea53-3e5c-411c-0097-a0a16d5fb6a9?panel=Main) 214 | * [Sistemas Operativos 'chmod - bash' (2014)](https://campusvirtual.ull.es/ocw/course/view.php?id=105) 215 | * [Sistemas Operativos (2016)](http://ocw.uji.es/curso/1514152) 216 | * [Técnicas informáticas -estudios de gestión y administración pública- (2012)](https://ocw.ua.es/es/ingenieria-y-arquitectura/tecnicas-informaticas-para-estudios-de-gestion-y-administracion-publica-2012.html) 217 | 218 | 219 | ### Videojuegos 220 | 221 | * [Desarrollo de Apps sin saber programación](https://campusvirtual.ull.es/ocw/course/view.php?id=128) 222 | * [Diseño, organización y evaluación de videojuegos y gamificación](https://miriadax.net/web/diseno-organizacion-y-evaluacion-de-videojuegos-y-gamificacion-3-edicion-_201604220800) 223 | * [Introducción a la gamificación sobre casos prácticos](https://miriadax.net/web/introduccion-a-la-gamificacion-a-traves-de-casos-practicos) 224 | * [Introducción al desarrollo de videojuegos con Unity](https://www.edx.org/course/introduccion-al-desarrollo-de-upvalenciax-uny201-x-1) 225 | * [Introducción al desarrollo de videojuegos con Unity3D (2016)](http://ocw.uji.es/curso/1434149) 226 | * [Introducción al diseño de videojuegos](https://miriadax.net/web/introduccion-al-diseno-de-videojuegos-2-edicion-) 227 | * [Robots y videojuegos en las aulas: Scratch y Arduino](https://miriadax.net/web/robots-videojuegos-aulas-scratch-arduino-profesores-3ed) 228 | * [Scratch. Una introducción a la programación](https://www.coursera.org/learn/a-programar) 229 | 230 | 231 | ### Web & Webmaster 232 | 233 | * [Búsqueda y Gestión de la Información en la Web](https://miriadax.net/web/busqueda-y-gestion-de-la-informacion-en-la-web-3-edicion-) 234 | * [Encontrando tesoros en la red](https://miriadax.net/web/encontrando-tesoros-en-la-red-4-edicion-) 235 | * [La Web Semántica](https://www.coursera.org/learn/web-semantica) 236 | * [Publicidad en línea. Campañas en Facebook y Adwords](https://miriadax.net/web/publicidad-en-linea-campanas-en-facebook-y-adwords-2-edicion-) 237 | * [Redacción en Internet](https://miriadax.net/web/redaccion-en-internet-2-edicion-) 238 | * [SEO. Posicionamiento natural en buscadores](https://miriadax.net/web/seo-posicionamiento-natural-en-buscadores-2-edicion-) 239 | -------------------------------------------------------------------------------- /free-programming-books-es.md: -------------------------------------------------------------------------------- 1 | ### Index 2 | 3 | * [0 - Meta-Listas](#0---meta-listas) 4 | * [1 - Agnósticos](#1---agnósticos) 5 | * [Algoritmos y Estructuras de Datos](#algoritmos-y-estructuras-de-datos) 6 | * [Base de Datos](#base-de-datos) 7 | * [Ciencia Computacional](#ciencia-computacional) 8 | * [Cursos Masivos en Línea](#cursos-masivos-en-línea) 9 | * [Metodologías de desarrollo de software](#metodologías-de-desarrollo-de-software) 10 | * [Misceláneos](#misceláneos) 11 | * [Paradigmas de Programación](#paradigmas-de-programación) 12 | * [Sistemas Operativos](#sistemas-operativos) 13 | * [Android](#android) 14 | * [C](#c) 15 | * [C++](#c-1) 16 | * [Coffeescript](#coffeescript) 17 | * [Emacs](#emacs) 18 | * [Ensamblador](#ensamblador) 19 | * [Erlang](#erlang) 20 | * [Git](#git) 21 | * [Github](#github) 22 | * [Haskell](#haskell) 23 | * [HTML & CSS](#html--css) 24 | * [Java](#java) 25 | * [JavaScript](#javascript) 26 | * [AngularJS](#angularjs) 27 | * [D3](#d3js) 28 | * [jQuery](#jquery) 29 | * [node.js](#nodejs) 30 | * [React](#react) 31 | * [LaTeX](#latex) 32 | * [Linux](#linux) 33 | * [.NET (C# Visual Studio)](#net-c--visual-studio) 34 | * [NoSQL](#nosql) 35 | * [MongoDB](#mongodb) 36 | * [Perl](#perl) 37 | * [Perl 6 / Raku](#perl-6--raku) 38 | * [PHP](#php) 39 | * [Python](#python) 40 | * [Django](#django) 41 | * [Web2py](#web2py) 42 | * [R](#r) 43 | * [Ruby](#ruby) 44 | * [Ruby on Rails](#ruby-on-rails) 45 | * [Scala](#scala) 46 | * [Scratch](#scratch) 47 | * [SQL](#sql) 48 | * [Subversion](#subversion) 49 | * [SVG](#svg) 50 | 51 | 52 | ### 0 - Meta-Listas 53 | 54 | * [Aprender Python](http://python.org.ar/wiki/AprendiendoPython) - Python Argentina 55 | * [Apuntes Completos de Desarrollo Web](http://jorgesanchez.net) - Jorge Sánchez 56 | * [Desarrollo de Aplicaciones Web - Temario Completo](https://github.com/statickidz/TemarioDAW#temario-daw) - José Luis Comesaña (Github) 57 | * [Desarrollo de Aplicaciones Web y Sistemas Microinformáticos y Redes](https://javiergarciaescobedo.es) - Javier García Escobedo 58 | * [Gitbook - Libros útiles en español](https://github.com/DpdC/gitbook-biblioteca-impresionante-en-espanol#gitbook---biblioteca-de-libros-en-español--) (Github) 59 | * [Múltiples Cursos y Enlaces de Tecnología Informática](http://elvex.ugr.es) - Fernando Berzal 60 | * [OpenLibra - Biblioteca recopilatorio de libros libres](https://openlibra.com/es/collection) 61 | * [Universidad Autónoma de Mexico - Plan (2016)](http://fcasua.contad.unam.mx/apuntes/interiores/plan2016_1.php) 62 | 63 | 64 | ### 1 - Agnósticos 65 | 66 | #### Algoritmos y Estructuras de Datos 67 | 68 | * [Algoritmos y Programación (Guía para docentes)](http://www.eduteka.org/pdfdir/AlgoritmosProgramacion.pdf) (PDF) 69 | * [Apuntes de Algoritmos y Estructuras de Datos](https://openlibra.com/en/book/download/apuntes-de-algoritmos-y-estructuras-de-datos) (PDF) 70 | * [Breves Notas sobre Análisis de Algoritmos](http://lya.fciencias.unam.mx/jloa/publicaciones/analisisdeAlgoritmos.pdf) (PDF) 71 | * [Fundamentos de Informática y Programación](http://robotica.uv.es/Libro/Indice.html) (HTML) 72 | * [Temas selectos de estructuras de datos](http://lya.fciencias.unam.mx/jloa/publicaciones/estructurasdeDatos.pdf) (PDF) 73 | * [Teoría sintáctico-gramatical de objetos](http://www.bubok.es/libros/219288/Teoria-sintacticogramatical-de-objetos) (Bubok) 74 | 75 | 76 | #### Base de Datos 77 | 78 | * [Apuntes de Base de Datos 1](http://rua.ua.es/dspace/bitstream/10045/2990/1/ApuntesBD1.pdf) (PDF) 79 | * [Base de Datos (2005)](http://www.uoc.edu/masters/oficiales/img/913.pdf) - Mercedes Marqués (PDF) 80 | * [Base de Datos (2011)](https://openlibra.com/es/book/download/bases-de-datos-2) - Mercedes Marqués (PDF) 81 | * [Base de Datos Avanzadas (2013)](https://openlibra.com/es/book/download/bases-de-datos-avanzadas) - Aramburu & Sanz Blasco (PDF) 82 | * [Diseño Conceptual de Bases de Datos](https://openlibra.com/es/book/download/diseno-conceptual-de-bases-de-datos) (PDF) 83 | 84 | 85 | #### Ciencia Computacional 86 | 87 | * [Breves Notas sobre Autómatas y Lenguajes](http://lya.fciencias.unam.mx/jloa/publicaciones/automatasyLenguajes.pdf) (PDF) 88 | * [Breves Notas sobre Teoría de la Computación](http://lya.fciencias.unam.mx/jloa/publicaciones/teoria.pdf) (PDF) 89 | 90 | 91 | #### Cursos Masivos en Línea 92 | 93 | * [Cursos de Programación Online Organizados](https://github.com/DpdC/biblioteca-espanol-gratis/blob/master/cursos-programacion-gratis.md#Índice) (Github) 94 | 95 | 96 | #### Metodologías de desarrollo de software 97 | 98 | * [Compendio de Ingeniería del Software](http://www.navegapolis.com/files/cis.pdf) (PDF) 99 | * [Diseño Ágil con TDD](http://www.carlosble.com/downloads/disenoAgilConTdd_ebook.pdf) (PDF) 100 | * [Ingeniería de Software: Una Guía para Crear Sistemas de Información](https://web.archive.org/web/20150824055042/http://www.wolnm.org/apa/articulos/Ingenieria_Software.pdf) (PDF) 101 | * [Scrum & Extreme Programming (para programadores)](https://web.archive.org/web/20140209204645/http://www.cursosdeprogramacionadistancia.com/static/pdf/material-sin-personalizar-agile.pdf) (PDF) 102 | * [Scrum y XP desde las trincheras](http://www.proyectalis.com/wp-content/uploads/2008/02/scrum-y-xp-desde-las-trincheras.pdf) (PDF) 103 | 104 | 105 | #### Misceláneos 106 | 107 | * [97 cosas que todo programador debería saber](http://97cosas.com/programador/) (HTML) 108 | * [Docker](https://github.com/brunocascio/docker-espanol#docker) (Github) 109 | * [El camino a un mejor programador](http://emanchado.github.io/camino-mejor-programador/downloads/camino_2013-01-19_0688b6e.html) (HTML) [(PDF, ePub)](http://emanchado.github.io/camino-mejor-programador/) 110 | * [Introducción a Docker](https://www.rediris.es/tecniris/archie/doc//TECNIRIS47-1b.pdf) (PDF) 111 | * [Programación de videojuegos SDL](http://libros.metabiblioteca.org/bitstream/001/271/8/Programacion_Videojuegos_SDL.pdf) (PDF) 112 | 113 | 114 | #### Paradigmas de Programación 115 | 116 | * [Programación Funcional (1996)](http://www.staff.science.uu.nl/~fokke101/courses/fp-sp.pdf) (PDF) 117 | 118 | 119 | #### Sistemas Operativos 120 | 121 | * [Fundamentos de Sistemas Operativos](http://sistop.org/pdf/sistemas_operativos.pdf) - Gunnar Wolf et al (PDF) 122 | * [Sistemas Operativos](http://exa.unne.edu.ar/depar/areas/informatica/SistemasOperativos/sistope2.PDF) - Dr. David Luis la Red (PDF) 123 | 124 | 125 | ### Android 126 | 127 | * [Curso Android](http://www.hermosaprogramacion.com/android) (HTML) 128 | * [Manual de Programación Android v.2.0](http://ns2.elhacker.net/timofonica/manuales/Manual_Programacion_Android_v2.0.pdf) - Salvador Gómez Oliver (PDF) 129 | 130 | 131 | ### C 132 | 133 | * [GNU/Linux: Programación de Sistemas](http://www.alcancelibre.org/filemgmt_data/files/programaciongnulinux.pdf) (PDF) 134 | * [Introducción a la programación con C](http://repositori.uji.es/xmlui/bitstream/handle/10234/24306/s29.pdf) (PDF) (descarga directa) 135 | 136 | 137 | ### C++ 138 | 139 | * [Aprenda C++ avanzado como si estuviera en primero](http://www4.tecnun.es/asignaturas/Informat1/AyudaInf/aprendainf/cpp/avanzado/cppavan.pdf) (PDF) 140 | * [Aprenda C++ básico como si estuviera en primero](http://www4.tecnun.es/asignaturas/Informat1/AyudaInf/aprendainf/cpp/basico/cppbasico.pdf) (PDF) 141 | * [Ejercicios de programación creativos y recreativos en C++](http://antares.sip.ucm.es/cpareja/libroCPP/) (HTML) 142 | 143 | 144 | ### Coffeescript 145 | 146 | * [Coffeescript, un pequeño gran libro](https://leanpub.com/coffeescript) - Javi Jiménez (Leanpub cuenta requerida) 147 | 148 | 149 | ### Ensamblador 150 | 151 | * [Lenguaje Ensamblador para PC](https://pacman128.github.io/static/pcasm-book-spanish.pdf) - Paul A.Carter (PDF) 152 | 153 | 154 | ### Erlang 155 | 156 | * [Programación en Erlang](https://es.wikibooks.org/wiki/Programaci%C3%B3n_en_Erlang) - WikiLibros 157 | 158 | 159 | ### Emacs 160 | 161 | * [Una Introducción a Emacs Lisp en Español](http://savannah.nongnu.org/git/?group=elisp-es) (HTML) 162 | 163 | 164 | ### Git 165 | 166 | * [Git Immersion en Español](https://esparta.github.io/gitimmersion-spanish) 167 | * [Git. La guía simple](http://rogerdudler.github.io/git-guide) (HTML) 168 | * [Gitmagic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/es) 169 | * [Pro Git](http://git-scm.com/book/es/) 170 | 171 | 172 | ### Github 173 | 174 | * [Github Simple](https://github.com/MrOutis/GitHub-Simple#github-simple) (Github) 175 | 176 | 177 | ### Haskell 178 | 179 | * [¡Aprende Haskell por el bien de todos!](http://aprendehaskell.es/main.html) (HTML) 180 | * [Piensa en Haskell (ejercicios de programación funcional)](http://www.cs.us.es/~jalonso/publicaciones/Piensa_en_Haskell.pdf) (PDF) 181 | 182 | 183 | ### HTML & CSS 184 | 185 | * [CSS avanzado](http://librosweb.es/libro/css_avanzado) Javier Eguíluz (HTML) [(PDF)](https://openlibra.com/es/book/download/css-avanzado) 186 | * [CSS3 y JavaScript avanzado](https://openlibra.com/es/book/download/css3-y-javascript-avanzado) (PDF) 187 | * [Diseño de Interfaces Web](http://interfacesweb.github.io/unidades/) (HTML) 188 | * [Estructura con CSS](http://es.learnlayout.com) (HTML) 189 | * [Guía Completa de CSS3](https://openlibra.com/es/book/download/guia-completa-de-css3) - Antonio Navajas (PDF) 190 | * [Introducción a CSS](http://librosweb.es/libro/css/) - Javier Eguíluz (HTML) [(PDF)](https://openlibra.com/es/book/download/introduccion-a-css) 191 | 192 | 193 | ### Java 194 | 195 | * [Aprendiendo Java y POO (2008)](https://openlibra.com/es/book/download/aprendiendo-java-y-poo) (PDF) 196 | * [Desarrollando con Java 8: Poker](https://ia601504.us.archive.org/21/items/DesarrollandoConJava8Poker/DesarrollandoConJava8Poker.pdf) -David Pérez Cabrera (PDF) 197 | * [Desarrollo de proyectos informáticos con Java](http://www3.uji.es/~belfern/libroJava.pdf) (PDF) 198 | * [Ejercicios de Programación en Java](https://www.arkaitzgarro.com/java/) - F.M. Pérez Montes (PDF) 199 | * [Notas de Introducción al Lenguaje de Programación Java (2004)](http://lya.fciencias.unam.mx/jloa/publicaciones/introduccionJava.pdf) - Jorge L. Ortega Arjona (PDF) 200 | * [Pensando la computación como un científico (con Java)](http://www.ungs.edu.ar/cm/uploaded_files/publicaciones/476_cid03-Pensar%20la%20computacion.pdf) (PDF) 201 | * [PlugIn Apache Tapestry: desarrollo de aplicaciones y páginas web](https://picodotdev.github.io/blog-bitix/assets/custom/PlugInTapestry.pdf) (PDF) [(ePub, Mobi, HTML)](https://picodotdev.github.io/blog-bitix/2014/02/libro-sobre-desarrollo-de-aplicaciones-con-apache-tapestry/) 202 | * [Prácticas d Java (2009)](https://openlibra.com/es/book/download/practicas-de-java) (PDF) 203 | * [Preparando JavaSun 6 - OCPJP6](https://github.com/PabloReyes/ocpjp-resumen-espanol#ocpjp6-resumen-español) - Pablo Reyes Almagro (Github) [(PDF)](https://github.com/PabloReyes/ocpjp-resumen-espanol/blob/master/OCPJP6%20Resumen.pdf) 204 | * [Programación en Java](http://elvex.ugr.es/decsai/java/) (HTML) 205 | * [Tutorial básico de Java EE](http://static1.1.sqspcdn.com/static/f/923743/14770633/1416082087870/JavaEE.pdf) (PDF) 206 | * [Tutorial introducción a Maven 3](http://static1.1.sqspcdn.com/static/f/923743/15025126/1320942755733/Tutorial_de_Maven_3_Erick_Camacho.pdf) - Erick Camacho (PDF) 207 | 208 | 209 | ### JavaScript 210 | 211 | * [Guía de Javascript 'Mozilla'](https://developer.mozilla.org/es/docs/Web/JavaScript/Guide) (HTML) 212 | * [Introducción a AJAX](http://librosweb.es/libro/ajax) (HTML) [(PDF)](https://openlibra.com/es/book/download/introduccion-ajax) 213 | * [Introducción a JavaScript](http://librosweb.es/libro/javascript) (HTML) [(PDF)](https://openlibra.com/es/book/download/introduccion-a-javascript) 214 | * [Jardín de JavaScript](http://bonsaiden.github.io/JavaScript-Garden/es) (HTML) 215 | * [JavaScript, ¡Inspírate!](https://leanpub.com/javascript-inspirate) (Leanpub cuenta requerida) 216 | * [JavaScript Para Gatos](https://jsparagatos.com) (HTML) 217 | * [Manual de JavaScript](https://desarrolloweb.com/manuales/manual-javascript.html#capitulos20) (HTML) 218 | 219 | 220 | #### AngularJS 221 | 222 | * [Cómo aprender AngularJS](http://raulexposito.com/documentos/como-aprender-angularjs/) (HTML) 223 | 224 | 225 | #### D3.js 226 | 227 | * [Tutorial de D3](http://gcoch.github.io/D3-tutorial/index.html) (HTML) 228 | 229 | 230 | #### jQuery 231 | 232 | * [Fundamentos de jQuery](https://librosweb.es/libro/fundamentos_jquery) (HTML) [(PDF)](https://openlibra.com/es/book/download/fundamentos-de-jquery) 233 | * [Manual de jQuery](http://mundosica.github.io/tutorial_hispano_jQuery/) (HTML) 234 | 235 | 236 | #### Node.js 237 | 238 | * [Introducción a Node.js a través de Koans](http://nodejskoans.com) 239 | 240 | 241 | #### React 242 | 243 | * [Desarrollo de Aplicaciones Web con React.js y Redux.js](https://leanpub.com/react-redux) (PDF, EPUB, MOBI) 244 | 245 | 246 | ### LaTeX 247 | 248 | * [La introducción no-tan-corta a LaTeX 2ε](http://osl.ugr.es/CTAN/info/lshort/spanish/lshort-a4.pdf) (PDF) 249 | 250 | 251 | ### Linux 252 | 253 | * [Bases de la programación en Bash](http://xinfo.sourceforge.net/documentos/bash-scripting/bash-script-2.0.html) (HTML) 254 | * [BASH Scripting Avanzado: Utilizando declare para definición de tipo](https://web.archive.org/web/20150307181233/http://library.originalhacker.org:80/biblioteca/articulo/ver/123) (descarga directa) 255 | * [El Manual de BASH Scripting Básico para Principiantes](https://es.wikibooks.org/wiki/El_Manual_de_BASH_Scripting_B%C3%A1sico_para_Principiantes) - WikiLibros 256 | * [El manual del Administrador de Debian](https://debian-handbook.info/browse/es-ES/stable/) (HTML) [(PDF, ePub, Mobi)](https://debian-handbook.info/get/now/) 257 | 258 | 259 | ### .NET (C# / Visual Studio) 260 | 261 | * [El lenguaje de programación C#](http://dis.um.es/~bmoros/privado/bibliografia/LibroCsharp.pdf) (PDF) 262 | * [Guía de Arquitectura N-capas Orientadas al Dominio](https://blogs.msdn.microsoft.com/cesardelatorre/2010/03/11/nuestro-nuevo-libro-guia-de-arquitectura-n-capas-ddd-net-4-0-y-aplicacion-ejemplo-en-disponibles-para-download-en-msdn-y-codeplex) (HTML) 263 | 264 | 265 | ### NoSQL 266 | 267 | #### MongoDB 268 | 269 | * [El pequeño libro MongoDB](https://github.com/uokesita/the-little-mongodb-book) 270 | * [MongoDB en español: T1, El principio](https://dpdc.gitbooks.io/mongodb-en-espanol-tomo-1/content) - Yohan Graterol (Gitbook) (:construction: *en proceso*) 271 | 272 | 273 | ### PHP 274 | 275 | * [Manual de estudio introductorio al lenguaje PHP procedural](https://web.archive.org/web/20140209203630/http://www.cursosdeprogramacionadistancia.com/static/pdf/material-sin-personalizar-php.pdf) (PDF) 276 | * [PHP y Programación orientada a objetos](https://styde.net/php-y-programacion-orientada-a-objetos/) (HTML) 277 | * [POO y MVC en PHP](http://www.bubok.es/libros/205199/POO-y-MVC-en-PHP) (Bubok) 278 | * [Programación web avanzada: ajax y google maps](http://rua.ua.es/dspace/bitstream/10045/13176/9/04-ajaxphp.pdf) (PDF) 279 | * [Silex, el manual oficial](http://librosweb.es/libro/silex) (HTML) 280 | * [Symfony 1.4, la guía definitiva](http://librosweb.es/libro/symfony_1_4) (HTML) [(PDF)](https://openlibra.com/es/book/download/symfony-la-guia-definitiva) 281 | * [Symfony 2.4, el libro oficial](http://librosweb.es/libro/symfony_2_4/) (HTML) [(PDF)](https://openlibra.com/es/book/download/manual-de-symfony2-ver-2-0-12) 282 | 283 | 284 | ### Perl 285 | 286 | * [Tutorial Perl](http://es.tldp.org/Tutoriales/PERL/tutoperl-print.pdf) (PDF) 287 | * [Tutorial Perl](http://kataix.umag.cl/~ruribe/Utilidades/Tutorial%20de%20Perl.pdf) (PDF) 288 | * [Tutoriales de Perl](http://perlenespanol.com/tutoriales/) (HTML) 289 | 290 | 291 | ### Perl 6 / Raku 292 | 293 | * [Piensa en Perl 6](https://uzluisf.gitlab.io/piensaperl6/) (PDF) 294 | 295 | 296 | ### Python 297 | 298 | * [Aprenda a pensar como un programador (con Python)](https://argentinaenpython.com/quiero-aprender-python/aprenda-a-pensar-como-un-programador-con-python.pdf) (PDF) 299 | * [Doma de Serpientes para Niños: Aprendiendo a Programar con Python](http://code.google.com/p/swfk-es/) (HTML) 300 | * [Inmersión en Python](http://es.diveintopython.net/toc.html) (HTML) 301 | * [Inmersión en Python 3](https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/inmersionenpython3/inmersionEnPython3.0.11.pdf) (PDF) (descarga directa) 302 | * [Introducción a la programación con Python](http://repositori.uji.es/xmlui/bitstream/handle/10234/24305/s23.pdf) (PDF) 303 | * [Introducción a Programando con Python](http://opentechschool.github.io/python-beginners/es_CL/) (HTML) 304 | * [Python instantáneo (1999)](http://www.arrakis.es/~rapto/AprendaPython.html) (HTML) 305 | * [Python para ciencia e ingeniería](https://github.com/mgaitan/curso-python-cientifico#curso-de-python-para-ciencias-e-ingenierías) (Github) 306 | * [Python para principiantes](http://librosweb.es/libro/python) (HTML) [(PDF)](https://web.archive.org/web/20150421012120/http://www.cursosdeprogramacionadistancia.com/static/pdf/material-sin-personalizar-python.pdf) 307 | * [Python para todos](https://launchpadlibrarian.net/18980633/Python%20para%20todos.pdf) (PDF) 308 | 309 | 310 | #### Django 311 | 312 | * [Tutorial de Django Girls](https://tutorial.djangogirls.org/de/) (1.11) (HTML) (:construction: *in process*) 313 | 314 | 315 | #### Web2py 316 | 317 | * [Web2py - Manual de Referencia Completo, 5a Edición](http://www.web2py.com/books/default/chapter/41) (HTML) 318 | 319 | 320 | ### Ruby 321 | 322 | * [Aprende a programar con Ruby](http://rubysur.org/aprende.a.programar) (Gitbook) 323 | * [La Guía de Estilos de Ruby](https://github.com/alemohamad/ruby-style-guide/blob/master/README-esLA.md#preludio) (Github) 324 | * [Ruby en 20 minutos](https://www.ruby-lang.org/es/documentation/quickstart) (HTML) 325 | * [Ruby tutorial o como pasar un buen rato programando](http://rubytutorial.wikidot.com/introduccion) (HTML) 326 | 327 | 328 | #### Ruby on Rails 329 | 330 | * [Introducción a Rails](http://rubysur.org/introduccion.a.rails/) (Gitbook) 331 | 332 | 333 | ### R 334 | 335 | * [Cartas sobre Estadística de la Revista Argentina de Bioingeniería](http://cran.r-project.org/doc/contrib/Risk-Cartas-sobre-Estadistica.pdf) (PDF) 336 | * [Generacion automática de reportes con R y LaTeX](http://cran.r-project.org/doc/contrib/Rivera-Tutorial_Sweave.pdf) (PDF) 337 | * [Gráficos Estadísticos con R](http://cran.r-project.org/doc/contrib/grafi3.pdf) (PDF) 338 | * [Introducción a R](http://cran.r-project.org/doc/contrib/R-intro-1.1.0-espanol.1.pdf) (PDF) 339 | * [Introducción al uso y programación del sistema estadístico R](http://cran.r-project.org/doc/contrib/curso-R.Diaz-Uriarte.pdf) (PDF) 340 | * [Métodos Estadísticos con R y R Commander](http://cran.r-project.org/doc/contrib/Saez-Castillo-RRCmdrv21.pdf) (PDF) 341 | * [Optimización Matemática con R: Volúmen I](http://cran.r-project.org/doc/contrib/Optimizacion_Matematica_con_R_Volumen_I.pdf) (PDF) 342 | * [R para Principiantes](http://cran.r-project.org/doc/contrib/rdebuts_es.pdf) (PDF) 343 | 344 | 345 | ### Scala 346 | 347 | * [Manual de Scala para programadores Java](http://www.scala-lang.org/docu/files/ScalaTutorial-es_ES.pdf) (PDF) 348 | * [Scala con Ejemplos](https://github.com/ErunamoJAZZ/ScalaByExample-es) *(:construction: En proceso)* 349 | 350 | 351 | ### Scratch 352 | 353 | * [Informática Creativa](https://github.com/programamos/GuiaScratch) (PDF) 354 | 355 | 356 | ### SQL 357 | 358 | * [Manual de SQL](http://jorgesanchez.net/manuales/sql/intro-sql-sql2016.html) (HTML) 359 | * [Tutorial de SQL](http://www.desarrolloweb.com/manuales/9/) (HTML) 360 | 361 | 362 | ### Subversion 363 | 364 | * [Control de versiones con Subversion](http://svnbook.red-bean.com/nightly/es/index.html) (HTML) 365 | 366 | 367 | ### SVG 368 | 369 | * [Scalable. Un libro sobre SVG](https://leanpub.com/scalable/) (Leanpub cuenta requerida) 370 | --------------------------------------------------------------------------------