(oublié de le faire plus tôt) Conflicts: free-programming-books-fr.mdpull/1044/head
commit
e0f5abe6e8
30 changed files with 1755 additions and 822 deletions
@ -0,0 +1,13 @@ |
||||
# editorconfig.org |
||||
root = true |
||||
|
||||
[*] |
||||
indent_style = space |
||||
indent_size = 4 |
||||
end_of_line = lf |
||||
charset = utf-8 |
||||
trim_trailing_whitespace = true |
||||
insert_final_newline = true |
||||
|
||||
[*.md] |
||||
trim_trailing_whitespace = false |
@ -0,0 +1,56 @@ |
||||
# Contribute to the lists |
||||
Hello dear friend, welcome! |
||||
This guide details how to contribute to this repository. |
||||
|
||||
|
||||
## Contributor license agreement |
||||
By submitting code you agree to the [LICENSE](https://github.com/vhf/free-programming-books/blob/master/LICENSE) of this repository. |
||||
|
||||
|
||||
## All the steps you need |
||||
1. First of all, what you want to add should be actually 'Free'. Don't mistake "An easy link to Download a book" with "Free". |
||||
2. If you don't know how to work with git or github, just simply go to [Wiki: Contribution](https://github.com/vhf/free-programming-books/wiki/Contribution) and read the rest. |
||||
3. We have 3 kinds of lists. Make sure you know where you're adding the link: |
||||
|
||||
+ **Books** : PDF, HTML, DJVU, ePub, a gitBook.io based site, a Git repo, etc. |
||||
+ **Courses** : A course is a well designed learning material which was made by an organized group and is availabe for a long time where there is no interactive tool embeded in the site. e.g.: [OpenCourseWare](http://ocw.mit.edu/), [PHPAcademy](https://phpacademy.org), etc. |
||||
+ **Interactive Tutorials** : An application which helps you learn, by actually typing syntax. e.g.: [Codecademy](http://www.codecademy.com/), [Try Github](http://try.github.io/), etc. |
||||
|
||||
4. We prefer small commits rather than one large commit in a pull request. If you don't have the time to make small commit, add an issue with all the links included and we'll add them for you. |
||||
5. Use our standard for formatting the .md file. Check it out: [Formatting](#formatting) |
||||
6. Please try to use alphabetic order. |
||||
|
||||
|
||||
### Formatting |
||||
+ All lists are `.md` files. Try to learn Github's Markdown syntax. It's simple! |
||||
+ All the lists start with an Index, the idea is to show all of sections and subsections there, so it's important to have an index for each section. Right now it's alphabetized, so please use alphabetic order. |
||||
+ Sections are using level 3 heading (in HTML is `<h3>`, in Markdown is `###`), and subsections are using level 4 (in HTML is `<h4>`, in Markdown is `####`). |
||||
|
||||
The idea is to have |
||||
+ `2` empty lines between last suggested book & new header |
||||
+ `0` empty line between header & first book of that very section. |
||||
+ `0` empty line between each book in 1 section. |
||||
+ `1` empty line at the end of each `.md` file. |
||||
|
||||
Like this example: |
||||
```markdown |
||||
[...] |
||||
* [Essential Pascal Version 1 and 2](http://www.marcocantu.com/epascal/) |
||||
|
||||
|
||||
###DTrace |
||||
* [IllumOS Dynamic Tracing Guide](http://dtrace.org/guide/preface.html) |
||||
* [Some Other Book](http://so.me/other/book.html) |
||||
|
||||
BAD : * [IllumOS Dynamic Tracing Guide](http://dtrace.org/guide/preface.html)(PDF) |
||||
GOOD: * [IllumOS Dynamic Tracing Guide](http://dtrace.org/guide/preface.html) (PDF) |
||||
|
||||
BAD : * [IllumOS Dynamic Tracing Guide](http://dtrace.org/guide/preface.html)- Robert |
||||
GOOD: * [IllumOS Dynamic Tracing Guide](http://dtrace.org/guide/preface.html) - Robert |
||||
|
||||
``` |
||||
|
||||
|
||||
And that's it! Simple, easy and lovely... |
||||
|
||||
We hope you contribute to this great repository. :+1: |
@ -1,35 +1,32 @@ |
||||
TODO |
||||
=== |
||||
|
||||
+ ☐ : Add new books |
||||
+ ☑ : Wiki |
||||
+ ☑ : How to Contribute |
||||
+ ☑ : Link to License |
||||
+ ☑ : Readme.md |
||||
+ ☑ : Better symantics |
||||
+ ☑ : Links to other Files |
||||
+ ☑ : Description |
||||
+ ☑ : Link to License |
||||
+ ☐ : Getting the word out there. |
||||
+ ☐ : Graphic Pack |
||||
+ ☑ : Share links of tw,fb,gp,li,... |
||||
+ ☐ : Alphabetizing the entries in the pages |
||||
+ ☐ : bg |
||||
+ ☐ : de |
||||
+ ☐ : es |
||||
+ ☐ : en |
||||
+ ☑ : fa_IR |
||||
+ ☐ : fr |
||||
+ ☐ : it |
||||
+ ☐ : ja |
||||
+ ☐ : ko |
||||
+ ☐ : pt_BR |
||||
+ ☐ : pt_PT |
||||
+ ☐ : ru |
||||
+ ☐ : tr |
||||
+ ☐ : zh |
||||
+ ☐ : javascript framework |
||||
|
||||
Map: |
||||
☑ : Done |
||||
☐ : In progress |
||||
- [ ] Add new books |
||||
- [x] Wiki |
||||
- [x] How to Contribute |
||||
- [x] Link to License |
||||
- [x] Readme.md |
||||
- [x] Better symantics |
||||
- [x] Links to other Files |
||||
- [x] Description |
||||
- [x] Link to License |
||||
- [ ] Getting the word out there. |
||||
- [ ] Graphic Pack |
||||
- [x] Share links of tw,fb,gp,li,... |
||||
- [ ] Alphabetizing the entries in the pages |
||||
- [ ] bg |
||||
- [ ] de |
||||
- [x] es |
||||
- [ ] en |
||||
- [x] fa_IR |
||||
- [ ] fr |
||||
- [ ] it |
||||
- [ ] ja |
||||
- [ ] ko |
||||
- [ ] pt_BR |
||||
- [ ] pt_PT |
||||
- [x] ru |
||||
- [ ] tr |
||||
- [ ] zh |
||||
- [ ] javascript framework |
||||
- [ ] courses |
||||
|
@ -0,0 +1,75 @@ |
||||
###Index |
||||
* [Assembly](#assembly) |
||||
* [C++](#c) |
||||
* [Databases](#databases) |
||||
* [Haskell](#haskell) |
||||
* [HTML / CSS](#html--css) |
||||
* [iOS](#ios) |
||||
* [Java](#java) |
||||
* [JS](#js) |
||||
* [OCaml](#ocaml) |
||||
* [Oracle PL/SQL](#oracle-plsql) |
||||
* [Python](#python) |
||||
* [Ruby](#ruby) |
||||
|
||||
|
||||
###Assembly |
||||
* [Introduction To Reverse Engineering Software](http://opensecuritytraining.info/IntroductionToReverseEngineering.html) |
||||
* [Introductory Intel x86: Architecture, Assembly, Applications, & Alliteration](http://opensecuritytraining.info/IntroX86.html) |
||||
|
||||
|
||||
###C++ |
||||
* [Google's C++ Course](https://developers.google.com/edu/c++/) |
||||
* [Introduction to C++](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-096-introduction-to-c-january-iap-2011/) (MIT's opencourseware) |
||||
* [LearnCpp.com C++ Tutorial](http://www.learncpp.com/) |
||||
|
||||
|
||||
###Databases |
||||
* [Database Systems](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-830-database-systems-fall-2010/) (MIT's opencourseware) |
||||
* [Introduction to Databases](https://class.stanford.edu/courses/Engineering/db/2014_1/about) (Stanford University) |
||||
|
||||
|
||||
###Haskell |
||||
* [CIS 194: Introduction to Haskell](http://www.seas.upenn.edu/~cis194/) - Brent Yorgey |
||||
* [CS240h: Functional Systems in Haskell](http://www.scs.stanford.edu/11au-cs240h/notes/) - Bryan O'Sullivan |
||||
* [C9 : Functional Programming Fundamentals](http://channel9.msdn.com/Series/C9-Lectures-Erik-Meijer-Functional-Programming-Fundamentals) - Erik Meijer |
||||
|
||||
###HTML / CSS |
||||
* [Code a personal splash page in 1 hour: A Hands-on Intro to HTML & CSS](http://www.thefirehoseproject.com/lessons/splash-page) |
||||
* [Learn HTML5 Programming From Scratch](https://www.udemy.com/learn-html5-programming-from-scratch/) |
||||
|
||||
|
||||
###iOS |
||||
* [AppCoda Complete iOS Tutorial](http://www.appcoda.com/ios-programming-course/) |
||||
* [Developing iOS 7 Apps for iPhone and iPad](https://itunes.apple.com/us/course/developing-ios-7-apps-for/id733644550) |
||||
|
||||
|
||||
###Java |
||||
* [Central Connecticut State University, Introduction to CS Using Java](http://chortle.ccsu.edu/CS151/cs151java.html) |
||||
* [Introduction to Java](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-092-introduction-to-programming-in-java-january-iap-2010/) |
||||
* [Princeton Algorithms, Part 1](https://www.coursera.org/course/algs4partI) |
||||
* [Princeton Algorithms, Part 2](https://www.coursera.org/course/algs4partII) |
||||
* [Problem Solving With Java](https://www.udacity.com/course/cs046) |
||||
|
||||
|
||||
###JS |
||||
* [Egghead.io](https://egghead.io/) |
||||
* [LearnStreet Walkthrough](https://www.learnstreet.com/lessons/study/javascript) |
||||
|
||||
|
||||
###OCaml |
||||
* [Cornell's Data Structures and Functional Programming](http://www.cs.cornell.edu/courses/cs3110/) |
||||
|
||||
|
||||
###Oracle PL/SQL |
||||
* [Steven Feuerstein's PL/SQL Obsession - Videos and Presentations](http://www.toadworld.com/platforms/oracle/w/wiki/8243.plsql-obsession.aspx) |
||||
|
||||
|
||||
###Python |
||||
* [Berkeley's Structure and Interpretation of Computer Programs](http://www-inst.eecs.berkeley.edu/~cs61a/) |
||||
* [Google's Python Course](https://developers.google.com/edu/python/) |
||||
* [Introduction to Computer Science and Programming](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00sc-introduction-to-computer-science-and-programming-spring-2011/) (MIT's opencourseware) |
||||
|
||||
|
||||
###Ruby |
||||
* [RubyMonk - Interactive Ruby tutorials](http://rubymonk.com) |
@ -0,0 +1,5 @@ |
||||
###Podcasty |
||||
|
||||
* [CZpodcast](http://java.cz/article/czpodcast) |
||||
* [DevMinutes](http://devminutes.cz/) |
||||
* [Brus kódu](http://bruskodu.cz/) - pro frontend vývojáře |
@ -0,0 +1,8 @@ |
||||
###Index |
||||
* [Ruby](#ruby) |
||||
|
||||
|
||||
###Ruby |
||||
* [Podcast] - [5by5 - Ruby on Rails Podcast](http://5by5.tv/rubyonrails) |
||||
* [Podcast] - [ENVY LABS - Ruby5](http://ruby5.envylabs.com/) |
||||
* [Podcast] - [Ruby Rogues](http://rubyrogues.com/) |
@ -0,0 +1,101 @@ |
||||
###Index |
||||
* [Bash](#bash) |
||||
* [Git](#git) |
||||
* [Java](#java) |
||||
* [Language Agnostic](#language-agnostic) |
||||
* [Algoritmy a datové struktury](#algoritmy-a-datove-struktury) |
||||
* [Bezpečnost](#bezpecnost) |
||||
* [Matematika](#matematika) |
||||
* [Právo](#pravo) |
||||
* [Regulární výrazy](#regularni-vyrazy) |
||||
* [Sítě](#site) |
||||
* [LaTeX](#latex) |
||||
* [Linux](#linux) |
||||
* [Distribuce](#distribuce) |
||||
* [OpenSource](#opensource) |
||||
* [PHP](#php) |
||||
* [Python](#python) |
||||
* [Ruby](#ruby) |
||||
* [TeX](#tex) |
||||
* [XML](#xml) |
||||
|
||||
|
||||
###Bash |
||||
* [Bash očima Bohdana Milara](http://www.root.cz/knihy/bash-ocima-bohdana-milara/stahnout/980/) (PDF) |
||||
|
||||
|
||||
###Java |
||||
* [Java 5.0, novinky jazyka a upgrade aplikací](http://www.root.cz/knihy/java-5-0-novinky-jazyka-a-upgrade-aplikaci/stahnout/1037/) (PDF) |
||||
|
||||
|
||||
###Git |
||||
* [Pro Git](http://www.root.cz/knihy/pro-git/stahnout/1001/) (PDF) |
||||
|
||||
|
||||
###Language Agnostic |
||||
####Algoritmy a datové struktury |
||||
* [Základy algoritmizace](http://www.root.cz/knihy/zaklady-algoritmizace/stahnout/950/) (PDF) |
||||
|
||||
|
||||
####Bezpečnost |
||||
* [Báječný svět elektronického podpisu](http://www.root.cz/knihy/bajecny-svet-elektronickeho-podpisu/) (PDF) |
||||
|
||||
|
||||
####Matematika |
||||
* [Diskrétní matematika](http://math.feld.cvut.cz/habala/teaching/dma.htm) - Petr Habala (PDFs) |
||||
* [Lineární algebra](ftp://math.feld.cvut.cz/pub/olsak/linal/linal.pdf) - Petr Olšák (PDF) |
||||
* [Matematika SŠ](http://www.realisticky.cz/ucebnice.php?id=3) - Martin Krynický (PDFs) |
||||
|
||||
|
||||
####Právo |
||||
* [Internet jako objekt práva](http://www.root.cz/knihy/internet-jako-objekt-prava/) (PDF) |
||||
|
||||
|
||||
####Regulární výrazy |
||||
* [Regulární výrazy](http://www.root.cz/knihy/regularni-vyrazy/) (PDF) |
||||
|
||||
|
||||
####Sítě |
||||
* [Internetový protokol IPv6](http://www.root.cz/knihy/internetovy-protokol-ipv6-treti-vydani/) (PDF) |
||||
|
||||
|
||||
###LaTeX |
||||
* [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) |
||||
|
||||
|
||||
###Linux |
||||
* [Linux: Dokumentační projekt](http://www.root.cz/knihy/linux-dokumentacni-projekt/) (PDF) |
||||
* [Učebnice ABCLinuxu](http://www.root.cz/knihy/ucebnice-abclinuxu/) (PDF) |
||||
|
||||
|
||||
####Distribuce |
||||
* [Mandriva Linux 2008 CZ](http://www.root.cz/knihy/mandriva-linux-2008-cz/) (PDF) |
||||
* [Gentoo Handbook česky](http://www.root.cz/knihy/gentoo-handbook-cesky/) (PDF) |
||||
* [Instalace a konfigurace Debian Linuxu](http://www.root.cz/knihy/instalace-a-konfigurace-debian-linuxu/) (PDF) |
||||
* [SUSE Linux: uživatelská příručka](http://www.root.cz/knihy/suse-linux-uzivatelska-prirucka/) (PDF) |
||||
* [Příručka uživatele Fedora 17](http://www.root.cz/knihy/prirucka-uzivatele-fedora-17/) (PDF) |
||||
|
||||
|
||||
###OpenSource |
||||
* [Tvorba open source softwaru](http://www.root.cz/knihy/tvorba-open-source-softwaru/stahnout/1303/) (PDF) |
||||
* [Katedrála a tržiště](http://www.root.cz/knihy/katedrala-a-trziste/) (PDF) |
||||
|
||||
###PHP |
||||
* [PHP Tvorba interaktivních internetových aplikací](http://www.kosek.cz/php/php-tvorba-interaktivnich-internetovych-aplikaci.pdf) |
||||
|
||||
###Python |
||||
* [Ponořme se do Pythonu 3](http://www.root.cz/knihy/ponorme-se-do-pythonu-3/stahnout/1025/) (PDF) |
||||
* [Učebnice jazyka Python](http://www.root.cz/knihy/ucebnice-jazyka-python/stahnout/920/) (PDF) |
||||
|
||||
|
||||
###Ruby |
||||
* [Ruby Tutoriál](http://www.root.cz/knihy/ruby-tutorial/stahnout/924/) (PDF) |
||||
|
||||
|
||||
###TeX |
||||
* [TeXbook naruby](http://www.root.cz/knihy/texbook-naruby/) (PDF) |
||||
* [První setkání s TeXem](http://www.root.cz/knihy/prvni-setkani-s-texem/) (PDF) |
||||
|
||||
|
||||
###XML |
||||
* [XML pro každého](http://www.root.cz/knihy/xml-pro-kazdeho/) (PDF) |
@ -1,92 +1,91 @@ |
||||
###Index |
||||
|
||||
* [Programozási nyelv független](#programozasi-nyelv-fuggetlen) |
||||
* [Ada](#ada) |
||||
* [Arduino](#arduino) |
||||
* [C++](#c) |
||||
* [HTML / CSS](#html-css) |
||||
* [Java](#java) |
||||
* [LISP](#lisp) |
||||
* [.NET](#net) |
||||
* [PHP](#php) |
||||
* [PowerShell](#powershell) |
||||
* [Python](#python) |
||||
* [Windows Phone](#windows-phone) |
||||
|
||||
###Programozási nyelv független |
||||
|
||||
* [Adatmodellezés](http://mek.oszk.hu/11100/11144/index.phtml) - Halassy Béla (Word, PDF) |
||||
* [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) |
||||
* [Az adatbázistervezés alapjai és titkai](http://mek.oszk.hu/11100/11123/index.phtml) - Halassy Béla (Word, PDF) |
||||
* [Ember, információ, rendszer](http://mek.oszk.hu/11100/11122/index.phtml) - Halassy Béla (Word, PDF) |
||||
* [Formális nyelvek](http://mek.oszk.hu/05000/05099/index.phtml) - Bach Iván (PDF) |
||||
* [Kanban és Scrum mindkettőből a legjobbat](http://www.adaptiveconsulting.hu/dokumentumok) - Henrik Kniberg, Mattias Skarin, ford.: Csutorás Zoltán és Marhefka István (PDF) |
||||
* [Prognyelvek portál](http://nyelvek.inf.elte.hu/index.php) - Felelős oktató: Nyékyné Gaizler Judit (HTML) |
||||
* [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) |
||||
|
||||
###Ada |
||||
|
||||
* [Az Ada programozási nyelv](http://mek.oszk.hu/01200/01256/index.phtml) - Kozics Sándor (PDF) |
||||
|
||||
###Arduino |
||||
|
||||
* [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) |
||||
|
||||
###C++ |
||||
|
||||
* [Fejlett programozási technikák](http://www.ms.sapientia.ro/~manyi/teaching/c++/cpp.pdf) - Antal Margit (PDF) |
||||
|
||||
###HTML / CSS |
||||
|
||||
* [CSS alapjai](http://weblabor.hu/cikkek/cssalapjai1) - Bártházi András (HTML) |
||||
* [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) |
||||
|
||||
###Java |
||||
|
||||
* [CORBA-alapú elosztott alkalmazások](http://mek.oszk.hu/01400/01404/index.phtml) - Csizmazia Balázs (PDF) |
||||
* [Fantasztikus programozás](http://mek.oszk.hu/00800/00889/index.phtml) - Bátfai Mária Erika, Bátfai Norbert (PDF) |
||||
* [Hálózati alkalmazások Java nyelven](http://mek.oszk.hu/01300/01304/index.phtml) - Csizmazia Anikó, Csizmazia Balázs (PDF) |
||||
* [Hálózati alkalmazások készítése: CORBA, Java, WWW](http://mek.oszk.hu/01700/01750/index.phtml) - Csizmazia Balázs (PS) |
||||
* [Java alapú webtechnológiák](http://www.ms.sapientia.ro/~manyi/index_java_techn.html) - Antal Margit (PDF) |
||||
* [Java programozás](http://nagygusztav.hu/java-programozas) - Nagy Gusztáv (PDF) |
||||
* [Objektumorientált programozás](http://www.ms.sapientia.ro/~manyi/teaching/oop/oop.pdf) - Antal Margit (PDF) |
||||
* [Programozás III.](http://www.sze.hu/~varjasin/oktat.html) - Varjasi Norbert (PDF) |
||||
* [RMI](http://mek.oszk.hu/01200/01263/index.phtml) - Dékány Dániel (PDF) |
||||
|
||||
###LISP |
||||
|
||||
* [A LISP programozási nyelv](http://mek.oszk.hu/07200/07258/index.phtml) - Zimányi Magdolna, Kálmán László, Fadgyas Tibor (PDF) |
||||
|
||||
###Linux |
||||
|
||||
* [A GNU/Linux programozása grafikus felületen](http://mek.oszk.hu/05500/05528/index.phtml) - Pere László (PDF) |
||||
* [GNU/Linux segédprogramok használata](http://mek.oszk.hu/08700/08742/index.phtml) - Terék Zsolt (PDF) |
||||
|
||||
###.NET |
||||
|
||||
* [C#](http://mek.oszk.hu/10300/10384/index.phtml) - Reiter István (PDF) |
||||
* [C# programozás lépésről lépésre](http://devportal.hu) - Reiter István (PDF) |
||||
* [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) |
||||
* [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) |
||||
|
||||
###PHP |
||||
|
||||
* [Drupal 7 alapismeretek](http://nagygusztav.hu/drupal-7-alapismeretek) - Nagy Gusztáv (PDF) |
||||
* [Drupal 6 alapismeretek](http://nagygusztav.hu/drupal-6-alapismeretek) - Nagy Gusztáv (PDF) |
||||
* [Webadatbázis-programozás](http://ade.web.elte.hu/wabp/index.html) - Horváth Győző, Tarcsi Ádám (HTML) |
||||
* [Web programozás alapismeretek](http://nagygusztav.hu/web-programozas) - Nagy Gusztáv (PDF) |
||||
|
||||
###PowerShell |
||||
|
||||
* [Microsoft PowerShell 2.0](http://mek.oszk.hu/10400/10402/index.phtml) - Soós Tibor (PDF) |
||||
|
||||
###Python |
||||
|
||||
* [Bevezetés a Pythonba példákkal](http://mek.oszk.hu/08400/08436/index.phtml) - Raphaël Marvie, ford.: Daróczy Péter (PDF) |
||||
* [Bevezetés a wxPythonba](http://mek.oszk.hu/08400/08446/index.phtml) - Jeremy Berthet, Gilles Doge, ford.: Daróczy Péter (PDF) |
||||
* [Python-programozás](http://blog.molnardenes.hu/python-programozas-1-alapfogalmak/) - Molnár Dénes (HTML) |
||||
* [Tanuljunk meg programozni Python nyelven](http://mek.oszk.hu/08400/08435/index.phtml) - Gérard Swinnen, ford.: Daróczy Péter (PDF, ODT) |
||||
|
||||
###Windows Phone |
||||
|
||||
* [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) |
||||
###Index |
||||
* [Programozási nyelv független](#programozasi-nyelv-fuggetlen) |
||||
* [Ada](#ada) |
||||
* [Arduino](#arduino) |
||||
* [C++](#c) |
||||
* [HTML / CSS](#html-css) |
||||
* [Java](#java) |
||||
* [LISP](#lisp) |
||||
* [.NET](#net) |
||||
* [PHP](#php) |
||||
* [PowerShell](#powershell) |
||||
* [Python](#python) |
||||
* [Windows Phone](#windows-phone) |
||||
|
||||
|
||||
###Programozási nyelv független |
||||
* [Adatmodellezés](http://mek.oszk.hu/11100/11144/index.phtml) - Halassy Béla (Word, PDF) |
||||
* [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) |
||||
* [Az adatbázistervezés alapjai és titkai](http://mek.oszk.hu/11100/11123/index.phtml) - Halassy Béla (Word, PDF) |
||||
* [Ember, információ, rendszer](http://mek.oszk.hu/11100/11122/index.phtml) - Halassy Béla (Word, PDF) |
||||
* [Formális nyelvek](http://mek.oszk.hu/05000/05099/index.phtml) - Bach Iván (PDF) |
||||
* [Kanban és Scrum mindkettőből a legjobbat](http://www.adaptiveconsulting.hu/dokumentumok) - Henrik Kniberg, Mattias Skarin, ford.: Csutorás Zoltán és Marhefka István (PDF) |
||||
* [Prognyelvek portál](http://nyelvek.inf.elte.hu/index.php) - Felelős oktató: Nyékyné Gaizler Judit (HTML) |
||||
* [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) |
||||
|
||||
|
||||
###Ada |
||||
* [Az Ada programozási nyelv](http://mek.oszk.hu/01200/01256/index.phtml) - Kozics Sándor (PDF) |
||||
|
||||
|
||||
###Arduino |
||||
* [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) |
||||
|
||||
|
||||
###C++ |
||||
* [Fejlett programozási technikák](http://www.ms.sapientia.ro/~manyi/teaching/c++/cpp.pdf) - Antal Margit (PDF) |
||||
|
||||
|
||||
###HTML / CSS |
||||
* [CSS alapjai](http://weblabor.hu/cikkek/cssalapjai1) - Bártházi András (HTML) |
||||
* [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) |
||||
|
||||
|
||||
###Java |
||||
* [CORBA-alapú elosztott alkalmazások](http://mek.oszk.hu/01400/01404/index.phtml) - Csizmazia Balázs (PDF) |
||||
* [Fantasztikus programozás](http://mek.oszk.hu/00800/00889/index.phtml) - Bátfai Mária Erika, Bátfai Norbert (PDF) |
||||
* [Hálózati alkalmazások Java nyelven](http://mek.oszk.hu/01300/01304/index.phtml) - Csizmazia Anikó, Csizmazia Balázs (PDF) |
||||
* [Hálózati alkalmazások készítése: CORBA, Java, WWW](http://mek.oszk.hu/01700/01750/index.phtml) - Csizmazia Balázs (PS) |
||||
* [Java alapú webtechnológiák](http://www.ms.sapientia.ro/~manyi/index_java_techn.html) - Antal Margit (PDF) |
||||
* [Java programozás](http://nagygusztav.hu/java-programozas) - Nagy Gusztáv (PDF) |
||||
* [Objektumorientált programozás](http://www.ms.sapientia.ro/~manyi/teaching/oop/oop.pdf) - Antal Margit (PDF) |
||||
* [Programozás III.](http://www.sze.hu/~varjasin/oktat.html) - Varjasi Norbert (PDF) |
||||
* [RMI](http://mek.oszk.hu/01200/01263/index.phtml) - Dékány Dániel (PDF) |
||||
|
||||
|
||||
###LISP |
||||
* [A LISP programozási nyelv](http://mek.oszk.hu/07200/07258/index.phtml) - Zimányi Magdolna, Kálmán László, Fadgyas Tibor (PDF) |
||||
|
||||
|
||||
###Linux |
||||
* [A GNU/Linux programozása grafikus felületen](http://mek.oszk.hu/05500/05528/index.phtml) - Pere László (PDF) |
||||
* [GNU/Linux segédprogramok használata](http://mek.oszk.hu/08700/08742/index.phtml) - Terék Zsolt (PDF) |
||||
|
||||
|
||||
###.NET |
||||
* [C#](http://mek.oszk.hu/10300/10384/index.phtml) - Reiter István (PDF) |
||||
* [C# programozás lépésről lépésre](http://devportal.hu) - Reiter István (PDF) |
||||
* [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) |
||||
* [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) |
||||
|
||||
|
||||
###PHP |
||||
* [Drupal 7 alapismeretek](http://nagygusztav.hu/drupal-7-alapismeretek) - Nagy Gusztáv (PDF) |
||||
* [Drupal 6 alapismeretek](http://nagygusztav.hu/drupal-6-alapismeretek) - Nagy Gusztáv (PDF) |
||||
* [Webadatbázis-programozás](http://ade.web.elte.hu/wabp/index.html) - Horváth Győző, Tarcsi Ádám (HTML) |
||||
* [Web programozás alapismeretek](http://nagygusztav.hu/web-programozas) - Nagy Gusztáv (PDF) |
||||
|
||||
|
||||
###PowerShell |
||||
* [Microsoft PowerShell 2.0](http://mek.oszk.hu/10400/10402/index.phtml) - Soós Tibor (PDF) |
||||
|
||||
|
||||
###Python |
||||
* [Bevezetés a Pythonba példákkal](http://mek.oszk.hu/08400/08436/index.phtml) - Raphaël Marvie, ford.: Daróczy Péter (PDF) |
||||
* [Bevezetés a wxPythonba](http://mek.oszk.hu/08400/08446/index.phtml) - Jeremy Berthet, Gilles Doge, ford.: Daróczy Péter (PDF) |
||||
* [Python-programozás](http://blog.molnardenes.hu/python-programozas-1-alapfogalmak/) - Molnár Dénes (HTML) |
||||
* [Tanuljunk meg programozni Python nyelven](http://mek.oszk.hu/08400/08435/index.phtml) - Gérard Swinnen, ford.: Daróczy Péter (PDF, ODT) |
||||
|
||||
|
||||
###Windows Phone |
||||
* [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) |
||||
|
@ -0,0 +1,16 @@ |
||||
###Index |
||||
* [HTML & CSS](#html-css) |
||||
* [Javascript](#javascript) |
||||
* [PHP](#php) |
||||
|
||||
|
||||
###html-css |
||||
* [Belajar HTML dan CSS](http://www.ariona.net/ebook-belajar-html-dan-css/) |
||||
|
||||
|
||||
###javascript |
||||
* [Mengenal Javascript](http://masputih.com/2013/01/ebook-gratis-mengenal-javascript) |
||||
|
||||
|
||||
###php |
||||
* [Tutorial Ebook PHP](http://adf.ly/1847642/http://www.4shared.com/rar/CtmMQ24E/Ebook_Tutorial_PHP.html) |
@ -0,0 +1,42 @@ |
||||
###Index |
||||
* [Ajax](#ajax) |
||||
* [CSS](#css) |
||||
* [HTML](#hmtl) |
||||
* [Java](#java) |
||||
* [JavaScript](#javascript) |
||||
* [MySQL](#mysql) |
||||
* [PHP](#php) |
||||
* [XHTML](#xhtml) |
||||
|
||||
|
||||
###Ajax |
||||
* [Ajax](http://etutoriale.ro/articles/1483/1/Tutorial-Ajax/) |
||||
|
||||
|
||||
###CSS |
||||
* [CSS](http://www.tutorialeweb.net/css/) |
||||
|
||||
|
||||
###HMTL |
||||
* [HTML](http://tutorialehtml.com/htmlt) |
||||
|
||||
|
||||
###Java |
||||
* [Curs practic de Java](http://web.info.uvt.ro/~iordan/PIII/Cristian_Frasinaru-Curs_practic_de_Java.pdf) - Cristian Frasinaru [PDF] |
||||
|
||||
|
||||
###JavaScript |
||||
* [JavaScript](http://www.tutorialeweb.net/javascript/) |
||||
|
||||
|
||||
###MySQL |
||||
* [MySQL](http://profs.info.uaic.ro/~busaco/teach/courses/net/docs/mysql-ro.pdf) |
||||
|
||||
|
||||
###PHP |
||||
* [PHP](http://www.tutorialeweb.net/php/) |
||||
* [PHP](http://php.punctsivirgula.ro) |
||||
|
||||
|
||||
###XHTML |
||||
* [XHTML](http://www.tutorialeweb.net/xhtml/) |
@ -1,36 +1,61 @@ |
||||
###Index |
||||
* [C](#c) |
||||
* [D](#d) |
||||
* [Fortran](#fortran) |
||||
* [Git](#git) |
||||
* [Go](#go) |
||||
* [Java](#java) |
||||
* [JavaScript](#javascript) |
||||
* [LaTeX](#latex) |
||||
* [Linux](#linux) |
||||
* [Matlab](#matlab) |
||||
* [PHP](#php) |
||||
* [Python](#python) |
||||
* [Java](#java) |
||||
* [Rust](#rust) |
||||
|
||||
###C |
||||
|
||||
###C |
||||
* [C Programlama Diline Giris](http://www1.gantep.edu.tr/~bingul/c/index.php) |
||||
* [Sistem Programlama ve İleri C Uygulamaları Kurs Notları](http://www.kaanaslan.com/resource/course_note/download_file.php?file_id=16) |
||||
|
||||
###D |
||||
|
||||
###D |
||||
* [D Programlama Dili](http://ddili.org/ders/d/D_Programlama_Dili.pdf) |
||||
|
||||
|
||||
###Fortran |
||||
* [Fortran Programlama Dili](http://www1.gantep.edu.tr/~bingul/f95/index.php) |
||||
|
||||
###Git |
||||
|
||||
###Git |
||||
* [git - basit rehber](http://rogerdudler.github.io/git-guide/index.tr.html) |
||||
|
||||
###JavaScript |
||||
###Go |
||||
* [Go Turu](http://tur.a.golang.org.tr) |
||||
|
||||
###Java |
||||
* [Java Yazılım Tasarımı](http://tdsoftware.net/2011/09/23/java-yazalim-tasarimi-kitabi-pdf/) |
||||
|
||||
###JavaScript |
||||
* [JavaScript Garden](http://bonsaiden.github.io/JavaScript-Garden/tr) |
||||
|
||||
###LaTeX |
||||
|
||||
###LaTeX |
||||
* [İnce bir LaTeX2ε Elkitabı](http://www.ctan.org/tex-archive/info/lshort/turkish) |
||||
|
||||
####Python |
||||
###Linux |
||||
* [UNIX/Linux Sistem Programlama Kurs Notları](http://www.kaanaslan.com/resource/course_note/course_note.php) |
||||
|
||||
* [Python ile Programlama](http://belgeler.istihza.com/py3/) |
||||
###Matlab |
||||
* [Matlab Programlamaya Giris](http://ismailari.com/blog/matlab-programlamaya-giris/) |
||||
|
||||
####Java |
||||
###PHP |
||||
* [PHP - Laravel 4 Türkçe Dokumantasyon](https://leanpub.com/laravel4-tr) |
||||
|
||||
* [Java Yazılım Tasarımı](http://tdsoftware.net/2011/09/23/java-yazalim-tasarimi-kitabi-pdf/) |
||||
|
||||
###Python |
||||
* [Python ile Programlama](http://belgeler.istihza.com/py3/) |
||||
* [Bilgisayar Bilimcisi Gibi Düşünmek](http://yzgrafik.ege.edu.tr/~tekrei/dersler/bbgd_p/BBGD_PIO.pdf) |
||||
|
||||
###Rust |
||||
* [Rust'a Giriş](http://bit.ly/rustagiris) |
||||
|
@ -1,6 +1,6 @@ |
||||
###Index |
||||
* [Language Agnostic](#language-agnostic) |
||||
|
||||
###Language Agnostic |
||||
|
||||
* [Дизайн патерни - просто, як двері](http://designpatterns.andriybuday.com/) - А. Будай |
||||
###Language Agnostic |
||||
* [Дизайн патерни - просто, як двері](http://designpatterns.andriybuday.com/) - А. Будай |
@ -1,60 +1,105 @@ |
||||
###目录 |
||||
* [在线教育](#在线教育) |
||||
* [软件开发方法](#%e8%bd%af%e4%bb%b6%e5%bc%80%e5%8f%91%e6%96%b9%e6%b3%95) |
||||
* [HTML / CSS](#html--css) |
||||
* [操作系统](#操作系统) |
||||
* [版本控制](#版本控制) |
||||
* [Ruby](#ruby) |
||||
* [Database](#database) |
||||
* [Golang](#golang) |
||||
* [Haskell](#haskell) |
||||
* [HTML / CSS](#html--css) |
||||
* [JavaScript](#javascript) |
||||
* [LaTeX](#latex) |
||||
* [LISP](#lisp) |
||||
* [Haskell](#haskell) |
||||
* [Perl](#perl) |
||||
* [Python](#python) |
||||
* [Ruby](#ruby) |
||||
* [Scala](#scala) |
||||
* [Shell](#shell) |
||||
* [Database](#database) |
||||
* [Visual Prolog](#visual-prolog) |
||||
|
||||
###在线教育 |
||||
|
||||
### 在线教育 |
||||
* [MIT OCW -- 麻省理工学院“开放式课程网页”](http://ocw.mit.edu/courses/translated-courses/simplified-chinese/) |
||||
* [Coursera](https://www.coursera.org/courses?orderby=upcoming&lngs=zh) |
||||
* [Udacity](https://www.udacity.com/) |
||||
* [xuetangX](https://www.xuetangx.com/) |
||||
* [Codecademy](http://www.codecademy.com/?locale_code=zh) |
||||
* [CodeSchool](https://www.codeschool.com/) |
||||
|
||||
|
||||
###软件开发方法 |
||||
### 软件开发方法 |
||||
* [硝烟中的 Scrum 和 XP](http://www.infoq.com/cn/minibooks/scrum-xp-from-the-trenches) |
||||
* [文章《Functional Programming For The Rest of Us》的中文翻译](https://github.com/justinyhuang/Functional-Programming-For-The-Rest-of-Us-Cn) |
||||
|
||||
###HTML / CSS |
||||
* [学习CSS布局](http://zh.learnlayout.com/) |
||||
|
||||
###版本控制 |
||||
### 操作系统 |
||||
* [UNIX TOOLBOX](http://cb.vu/unixtoolbox_zh_CN.xhtml) |
||||
|
||||
|
||||
### 版本控制 |
||||
* [Pro Git](http://git-scm.com/book/zh) |
||||
* [Git magic](http://www-cs-students.stanford.edu/~blynn/gitmagic/intl/zh_cn/) |
||||
* [Git - 简易指南](http://rogerdudler.github.io/git-guide/index.zh.html) |
||||
* [Git 参考手册](http://gitref.justjavac.com/) |
||||
* [沉浸式学 Git](http://igit.linuxtoy.org/index.html) |
||||
|
||||
### Ruby |
||||
* [Ruby 风格指南](https://github.com/JuanitoFatas/ruby-style-guide/blob/master/README-zhCN.md) |
||||
* [Rails 风格指南](https://github.com/JuanitoFatas/rails-style-guide/blob/master/README-zhCN.md) |
||||
* [笨方法学 Ruby](http://lrthw.github.io/) |
||||
* [Ruby on Rails Tutorial 原书第 2 版](http://railstutorial-china.org/) |
||||
|
||||
###Javascript |
||||
### Database |
||||
* [The Little MongoDB Book 中文版](https://github.com/justinyhuang/the-little-mongodb-book-cn) |
||||
* [Redis 设计与实现](http://www.redisbook.com) |
||||
|
||||
|
||||
### Golang |
||||
* [Go Web编程](https://github.com/astaxie/build-web-application-with-golang) |
||||
* [Go编程基础](https://github.com/Unknwon/go-fundamental-programming) |
||||
|
||||
|
||||
### Haskell |
||||
* [Real World Haskell 中文版](http://rwh.readthedocs.org/en/latest/) |
||||
* [Haskell 趣学指南](http://learnyouahaskell-zh-tw.csie.org/) |
||||
|
||||
|
||||
### HTML / CSS |
||||
* [学习CSS布局](http://zh.learnlayout.com/) |
||||
|
||||
|
||||
### Javascript |
||||
* [Javascript Garden](http://bonsaiden.github.io/JavaScript-Garden/zh/) |
||||
* [Javascript 原理](http://typeof.net/s/jsmech/), by Belleve Invis. |
||||
|
||||
|
||||
###LaTeX |
||||
### LaTeX |
||||
* [一份不太简短的 LaTeX2ε 介绍](http://ctan.org/pkg/lshort-zh-cn) |
||||
|
||||
|
||||
### LISP |
||||
* [ANSI Common Lisp 中文翻译版](http://acl.readthedocs.org/en/latest/) |
||||
|
||||
### Haskell |
||||
* [Real World Haskell 中文版](http://rwh.readthedocs.org/en/latest/) |
||||
|
||||
### Perl |
||||
* [Master Perl Today](https://github.com/fayland/chinese-perl-book) |
||||
|
||||
### Python |
||||
* [深入Python](http://woodpecker.org.cn/diveintopython/) |
||||
* [笨办法学 Python](http://sebug.net/paper/books/LearnPythonTheHardWay/) |
||||
|
||||
|
||||
### Ruby |
||||
* [Ruby 风格指南](https://github.com/JuanitoFatas/ruby-style-guide/blob/master/README-zhCN.md) |
||||
* [Rails 风格指南](https://github.com/JuanitoFatas/rails-style-guide/blob/master/README-zhCN.md) |
||||
* [笨方法学 Ruby](http://lrthw.github.io/) |
||||
* [Ruby on Rails Tutorial 原书第 2 版](http://railstutorial-china.org/) |
||||
|
||||
|
||||
### Scala |
||||
* [Effective Scala](http://twitter.github.io/effectivescala/index-cn.html) - Marius Eriksen |
||||
* [Scala 课堂](http://twitter.github.io/scala_school/zh_cn/index.html) (Twitter的Scala中文教程) |
||||
|
||||
|
||||
### Shell |
||||
* [Shell 脚本编程30分钟入门](https://github.com/qinjx/30min_guides/blob/master/shell.md) |
||||
|
||||
### Database |
||||
* [The Little MongoDB Book 中文版](https://github.com/justinyhuang/the-little-mongodb-book-cn) |
||||
|
||||
### Visual Prolog |
||||
* [Visual Prolog 7边练边学](http://wiki.visual-prolog.com/index.php?title=Visual_Prolog_for_Tyros_in_Chinese) |
||||
* [Visual Prolog 7初学指南](http://wiki.visual-prolog.com/index.php?title=A_Beginners_Guide_to_Visual_Prolog_in_Chinese) |
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue