forked from iissnan/iissnan.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmarks.html
296 lines (284 loc) · 10.8 KB
/
bookmarks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Bookmarks</title>
<link rel="stylesheet"
href="//fonts.googleapis.com/css?family=Noto Serif:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext">
<link rel="stylesheet" type="text/css" href="assets/css/main.css"/>
<style type="text/css">
body {
font-family: 'Noto Serif', "PingFang SC", "Microsoft Jhenghei", "Microsoft YaHei", sans-serif;
}
h1 {
margin-top: 50px;
text-align: center;
}
.bookmarks {
display: flex;
flex-wrap: wrap;
margin: 50px 5%;
width: 90%;
}
.bookmarks section {
padding: 20px;
flex-basis: 33.3%;
box-sizing: border-box;
border: 1px solid #eee;
}
.bookmarks section:nth-of-type(2n - 1) { background: #fafafa; }
.bookmarks ul { padding: 0 15px; }
.bookmarks ul li {
position: relative;
margin: 10px 0;
list-style: none;
}
.bookmarks ul li:before {
content: "";
position: absolute;
width: 6px;
height: 6px;
background: #c9ced1;
border-radius: 50%;
left: -13px;
top: 12px;
}
</style>
</head>
<body>
<h1>Bookmarks</h1>
<div class="bookmarks">
<section>
<h3 id="angular">AngularJS</h3>
<ul>
<li>
<a href="https://github.com/johnpapa/angular-styleguide">
Angular Style Guide
</a>
</li>
<li>
<a href="https://github.com/toddmotto/angular-styleguide" target="_blank">
Angular 1.x styleguide (ES2015)
</a>
</li>
<li>
<a href="https://github.com/mgechev/angularjs-style-guide">
AngularJS Style Guide
</a>
</li>
<li>
<a href="http://teropa.info/blog/2015/10/18/refactoring-angular-apps-to-components.html" target="_blank">
Refactoring Angular Apps to Component Style
</a>
</li>
<li>
<a href="http://angulartestingquickstart.com/" target="_blank">
Angular Unit Testing Quick Start
</a>
</li>
</ul>
</section>
<section>
<h3 id="angular-2-docs">Angular 2</h3>
<ul>
<li>
<a href="https://angular.io/docs/ts/latest/cookbook/a1-a2-quick-reference.html">
Angular 1 to 2 Quick Reference
</a>
</li>
<li>
<a href="https://angular.io/docs/ts/latest/guide/webpack.html">
Webpack: an introduction
</a>
</li>
<li>
<a href="https://angular.io/docs/ts/latest/guide/upgrade.html">
Upgrading from 1.x
</a>
</li>
</ul>
</section>
<section>
<h3 id="fe-documentations">Documentations</h3>
<ul>
<li>
<a href="https://angular.io/docs/ts/latest/" target="_blank">
ANGULAR 2 DOCS
</a>
</li>
<li>
<a href="https://www.typescriptlang.org/docs/index.html" target="_blank">
TypeScript Documentation
</a>
</li>
<li>
<a href="http://webpack.github.io/docs/" target="_blank">
Webpack Documentation
</a>
</li>
<li>
<a href="https://github.com/gulpjs/gulp/blob/master/docs/getting-started.md">
Gulp Documentation
</a>
</li>
<li>
<a href="https://github.com/typings/typings" target="_blank">
The TypeScript Definition Manager
</a>
</li>
<li>
<a href="http://coffeescript.org/#language" target="_blank">
CoffeeScript Language Reference
</a>
</li>
</ul>
</section>
<section>
<h3 id="dev-references">开发参考</h3>
<ul>
<li>
<a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html" target="_blank">
Spring Web MVC framework
</a>
(<a href="http://mvc.linesh.tw/">中文版</a>)
</li>
<li>
<a href="https://www.w3.org/TR/CSS2/" target="_blank">
CSS 2.1 Specification
</a>
</li>
<li>
<a href="http://es5.github.io/" target="_blank">
Annotated ECMAScript 5.1
</a>
</li>
<li>
<a href="http://darobin.github.io/api-design-cookbook/" target="_blank">
Web API Design Cookbook
</a>
</li>
<li>
<a href="http://apievangelist.com/" target="_blank">API Evangelist</a>
</li>
<li>
<a href="https://gist.github.com/staltz/868e7e9bc2a7b8c1f754" target="_blank">
The introduction to Reactive Programming you've been missing
</a>
</li>
</ul>
</section>
<section>
<h3 id="ios-path">iOS Learning Path</h3>
<ul>
<li>
<a href="https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/TheAppLifeCycle/TheAppLifeCycle.html" target="_blank">
The App Life Cycle
</a>
</li>
<li>
<a href="https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/index.html" target="_blank">
Start Developing iOS Apps (Swift)
</a>
</li>
<li>
<a href="https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/" target="_blank">
The Swift Programming Language
</a>
</li>
</ul>
</section>
<section>
<h3 id="awesome">Awesome</h3>
<ul>
<li>
<a href="https://github.com/sindresorhus/awesome" target="_blank">
Awesome - Curated list of awesome lists
</a>
</li>
<li>
<a href="https://github.com/AngularClass/awesome-angular2" target="_blank">
Awesome Angular 2
</a>
</li>
<li>
<a href="https://github.com/matteocrippa/awesome-swift" target="_blank">
Awesome Swift
</a>
</li>
</ul>
</section>
<section>
<h3 id="dev-guides">开发指南</h3>
<ul>
<li>
<a href="http://dev.swiftguide.cn/" target="_blank">
Swift 语言指南
</a>
</li>
<li>
<a href="http://guides.ruby-china.org/index.html" target="_blank">Ruby on Rails 指南</a>
</li>
<li>
<a href="https://www.owasp.org/index.php/Category:OWASP_Guide_Project" target="_blank">
OWASP Guide Project
</a>
</li>
</ul>
</section>
<section>
<h3 id="tutorials-books">教程书籍</h3>
<ul>
<li>
<a href="http://iissnan.com/progit/" target="_blank">
Pro Git
</a>
</li>
<li>
<a href="http://docs.python-guide.org/en/latest/intro/learning/" target="_blank">
Learning Python — The Hitchhiker's Guide to Python
</a>
</li>
<li>
<a href="http://diveintohtml5.info/index.html" target="_blank">
Dive Into HTML5
</a>
</li>
<li>
<a href="http://learnvimscriptthehardway.stevelosh.com/" target="_blank">
Learn VimScript the Hard Way
</a>
</li>
<li>
<a href="http://liubin.org/promises-book/" target="_blank">
JavaScript Promise 迷你书
</a>
</li>
<li>
<a href="https://github.com/substack/stream-handbook">
Stream Handbook
</a>
(<a href="https://github.com/jabez128/stream-handbook">中文版</a>)
</li>
</ul>
</section>
<section>
<h3 id="online-tools">在线工具</h3>
<ul>
<li><a href="http://regexr.com/" target="_blank">RegExr</a></li>
<li><a href="https://regex101.com/" target="_blank">Regex101</a></li>
<li><a href="https://stackedit.io/" target="_blank">StackEdit</a></li>
</ul>
</section>
<section>
<h3 id="tool-references">工具参考</h3>
<ul>
<li><a href="https://developer.chrome.com/devtools/docs/console" target="_blank">Google Chrome - Using the Console</a></li>
<li><a href="https://developer.chrome.com/devtools/docs/shortcuts" target="_blank">Google Chrome - Keyboard Shortcuts</a></li>
</ul>
</section>
</div>
<script type="text/javascript" src="assets/vendors/jquery/index.js"></script>
</body>
</html>