-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookmarks.html
executable file
·204 lines (194 loc) · 7.32 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
<!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="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>
<li>
<a href="http://github.ibireme.com/github/list/ios/" target="_blank">
iOS Repos List
</a>
</li>
</ul>
</section>
<section>
<h3 id="awesome">Awesome</h3>
<ul>
<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>