1
0
mirror of https://github.com/namibia/free-programming-books.git synced 2024-05-28 20:10:49 +00:00
Commit Graph

166 Commits

Author SHA1 Message Date
Hamming
0b35d6b212 Update free-programming-books-zh.md (#3063)
* Update free-programming-books-zh.md

fixed  [nutz](https://github.com/EbookFoundation/free-programming-books/issues/2529)

* Update free-programming-books-zh.md

Modify sort ,  [nutz](https://github.com/EbookFoundation/free-programming-books/issues/2529)

* Update free-programming-books-zh.md

Modify sort
2018-12-14 09:54:37 -05:00
Sekito Lv
5f91f9fe16 Add Excel - VBA ebook repo. (#3079)
* Add Excel-vba Ebook repo.

* Add VBA Eboob Repo. and fix incorrect menu link.

* fix Wrong format line
2018-12-10 23:26:56 -05:00
chai2010
7f86f0f4cd add C/C++面向WebAssembly编程 (#3049) 2018-11-03 13:24:31 -04:00
chai2010
0cb269406c Update free-programming-books-zh.md (#2946)
* Update free-programming-books-zh.md

* Update free-programming-books-zh.md

Sort by unicode
2018-08-16 09:25:53 -04:00
hateonion
1fac54fc5e Add react-bits resources. (#2944)
* add react-bits en/sc

* Add react bits author

* Move react-bits from courses to books
2018-08-13 22:39:52 -04:00
hateonion
6dda380c23 Translate You don't know Javascript (#2943)
* Update free-programming-books-zh.md

Translate You don't know Javascript

* FIx lint error

* Fix lint

* Fix lint
2018-08-10 11:04:16 -04:00
Ryan D Holm
dda3b341fb Scratch foreign language guides (#2939)
* Adding Harvard GSE Scratch Book

* Adding foreign language for scratch guide from harvard graduate school of edu

* linting
2018-08-06 11:28:27 -04:00
borgified
2583ac2369 bad links removal needs verification 2018-05-02 (#2815)
* remove broken links

* remove broken links

* remove broken links

* fix broken links

* fix broken links

* fix broken links

* fix broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* remove broken links

* replace dead link
2018-05-15 14:03:32 -04:00
yangygao
2bcdbb68dd Update free-programming-books-zh.md (#2821)
Update Django 中文文档
2018-05-15 09:39:41 -04:00
litebeyond
7599672691 fixed the changed url (#2801)
the url of Shell introduce book named The Linux Command Line 中文版 is changed, deleted the "zh"
2018-04-12 12:49:28 -04:00
飞雪无情
d7f10d618e Added Go In Action Notes by flysnow (#2724)
* add go in action notes

* fix go in action notes title

* fix Alphabetical ordering

* fix zh charter order

* remove non-english resource
2018-02-14 21:45:03 -05:00
eshellman
eaac4e5faf
wrong type of whitespace (#2653) 2017-11-24 10:48:00 -05:00
Tuan Nguyen
c7ce1d8c7b 2626: add translated versions of django girls (#2643) 2017-11-12 16:02:59 -05:00
Bestony
8215527240 Delete Book which not free now (#2610)
Delete Book which not free now
2017-10-23 10:20:35 -04:00
Jackson Isaac
0253e08841 Fix Broken Links (#2603)
* Replace homepage with GitHub repository link

problem-sets-competitive-programming.md: Replace homepage
link of problembook with github repository link which contains
downloadable pdf links.

* Remove broken links

Remove broken links and update available links from
web.archive.org.

* Update broken link with updated link.

Update the description for the updated link.

* Update broken links with links from web.archive.org

Remove dead links.

* Restore path to original link instead of web.archive.org

The link seems to be working fine. It was not loading
on my network, probably due to regional restrictions.

* Remove github link which is no longer maintained.

Github link consisted of list of Big Data resources.
The repository has been deleted by the user.
Hence deleting the entry.
2017-10-23 09:53:01 -04:00
YouTuQiong
d565f340db Update free-programming-books-zh.md (#2571)
* Update free-programming-books-zh.md

* added back blank line to satisfy the linter
2017-10-09 12:26:59 -04:00
zhongjiajie
b64a0a9333 add two books in -zh list in python section (#2550)
* add two books in `-zh` list in `Python` section

* https -> http on explore-python link
2017-10-02 10:39:42 -04:00
刘家轶
0ad3ddd891 Old site has stoped updating (#2376)
* the old site has not update so this is the new one

* remove trailing slash from url to satisfy travis
2017-10-01 22:21:28 -04:00
邹成
1778451c1b Add regular expression tutorial (#2536)
* 添加正则表达教程

* Update free-programming-books-zh.md
2017-09-20 10:10:33 -04:00
Larry
1015a26ca9 update a link (#2518) 2017-09-01 09:24:35 -04:00
nivort
e7657dae6b 1. Domain name http://reactjs.cn was sold and it is not related to re… (#2516)
* 1. Domain name http://reactjs.cn was sold and it is not related to react js for now. So I change it to another available site.

2. Tweak React to React.js

* fix ordering
2017-08-28 21:50:46 -04:00
zhongjiajie
761995f12c add three book in free-programming-books-zh.md Python section (#2514)
Thanks for the contribution!
* add three book in free-programming-books-zh.md `Python` section

* order of adjustment

* remove the book in english and add author
2017-08-22 11:16:00 -04:00
李罗奥
004316ab56 (zh)PHP composer and laravel and Vue.js (#2498)
* add PHP composer zh doc and laravel zh doc

add PHP composer zh doc and laravel zh doc

* add Vue.js zh doc

* add chinese PSR,Yii,Phalcon doc

PSR is PHP Standard Recommendations.Yii and Phalcon is PHP Framework.

* Sort by unicode

* Sort by unicode

```php
public function utf8_array_asort(&$array) {
        if (!isset($array) || !is_array($array)) {
            return false;
        }
        foreach ($array as $k => $v) {
            $array[$k] = iconv('UTF-8', 'GBK//IGNORE', $v);
        }
        asort($array);
        foreach ($array as $k => $v) {
            $array[$k] = iconv('GBK', 'UTF-8//IGNORE', $v);
        }

        return true;
    }
```

* sort by remark-lint-alphabetize-lists

* Fix travis-ci warning
2017-08-10 10:59:28 -04:00
飞鸿影~
a061d8709a Update PHP and Shell. (#2265)
@52fhy Thanks for being a contributor to F-P-B! Next time, remember to check the Travis CI output, it makes it much easier for the maintainers.

* Update PHP and Shell.

* update python and php

* update shell

* fix number of blank lines between sections
2017-05-19 11:18:00 -04:00
zcq100
c19cb958f7 添加 Ruby on Rails Guide (#2352)
* 添加 Ruby on Rails Guide

添加 Ruby on Rails 简体中文指南

* add a line

* change order

* remove tailing slash

* add sinatra link
2017-05-10 21:13:00 -04:00
杨_小_小_小_小_明
78bc97dfd4 add postgreSQL 9.4 9.5 9.6 chinese translate document (#2350) 2017-05-10 11:43:03 -04:00
HuMeng
c9b8dd0fcd add: 计算机图形学 (#2339)
* add: 计算机图形学

* code review

* code lint
2017-04-23 14:43:56 +02:00
Devinsuit
0d1d654a28 Update broken links (#2318)
* Update broken links

* Add pdf indication
2017-04-02 16:52:21 +02:00
eshizhan
bec6d343c0 Update Disque link (#2289) 2017-03-11 15:05:55 +01:00
Victor Felder
ba6168f070
Fix some formatting 2017-03-04 16:32:20 +01:00
Devinsuit
1de033f50d Update broken links (#2271)
* Update broken links

* Small fix

* Update broken link
2017-02-18 16:08:12 +01:00
victor felder
1eeed8f5f6 Remove problematic links (#2235)
* Remove problematic links

* Fix according to comments

* Formatting
2017-01-15 22:21:48 +01:00
Victor Felder
da12d9250b Merge branch 'pr/2161' 2017-01-02 21:09:03 +01:00
Victor Felder
6bc0d454f5 Fix ordering 2017-01-02 21:08:55 +01:00
ctolib
1892480e95 Update free-programming-books-zh.md (#2167) 2016-12-04 11:10:23 +01:00
芒果
651ecf9676 Update free-programming-books-zh.md
增加一个在线教育网站。
2016-11-10 10:04:23 +08:00
jollen
7db1f52001 Add a new "Node.js Fullstack" ebook (#2133)
* Update free-programming-books-zh.md

* Update free-programming-books-zh.md
2016-11-03 23:02:14 +01:00
Victor Felder
2e467c3117 Merge branch 'pr/2068' 2016-10-02 12:31:37 +02:00
Victor Felder
166109fed3 Fix formatting 2016-10-02 12:31:33 +02:00
Victor Felder
582d1eea52 Merge branch 'pr/2051' 2016-10-02 12:11:40 +02:00
Victor Felder
11704f2812 Fix ordering 2016-10-02 12:11:33 +02:00
Judas.n
283ef8fcb4 Fix the anchor can't click(To free-programming-books-zh) (#2050)
* Fix the anchor can't click(To free-programming-books-zh)
2016-10-02 12:09:03 +02:00
minoriwww
eb0ae7d7d2 Update free-programming-books-zh.md 2016-09-06 10:51:55 +08:00
nkypy
d0c724a437 add some chinese translations of elixir and phoenix 2016-08-20 21:05:20 +08:00
Judas.n
771e83bbc1 Add a link to IntelliJ IDEA IDE Tutorial(Simplified Chinese) (#2027) 2016-08-18 23:25:08 +02:00
Victor Felder
d49599e6f3 Remove trailing slash 2016-08-01 14:49:43 +02:00
sjtu-lyj
53e29f00f4 update real world's haskell zh url 2016-07-11 19:30:42 +08:00
Devinsuit
43294d1362 Update link Rust by Example #1970 (#1995) 2016-07-07 19:32:00 +02:00
Ruben
d0a0d4cf2b Overwork Mk2 (#1969)
* Angular Course added closes #1690

* Inroduction to Rx closes #1817

* Overwork on free-prpgramming-books-zh.md

* Done #1948

* Deleted not-freely obtainable ebook closes #1930
2016-07-04 00:21:28 +02:00
Victor Felder
0952a717cb Fix ordering 2016-04-30 16:58:59 +02:00