-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmark.html
376 lines (287 loc) · 14.2 KB
/
bookmark.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!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">
<!-- Favicon Icon -->
<link rel="shortcut icon" type="image/x-icon" href="/assets/images/favicon.png">
<title>Bookmarks</title>
<meta name="description"
content="记录湘江鸿技术与生活的点点滴滴">
<link rel="canonical" href="http://lht1936.github.io/bookmark.html">
<link rel="alternate" type="application/rss+xml" title="湘江鸿的博客" href="http://lht1936.github.io/feed.xml">
<script type="text/javascript" src="/bower_components/jquery/dist/jquery.min.js"></script>
<!-- Third-Party CSS -->
<link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="/bower_components/octicons/octicons/octicons.css">
<link rel="stylesheet" href="/bower_components/hover/css/hover-min.css">
<link rel="stylesheet" href="/bower_components/primer-markdown/dist/user-content.min.css">
<link rel="stylesheet" href="/assets/css/syntax.css">
<link href="https://cdn.bootcss.com/gitalk/1.2.2/gitalk.css" rel="stylesheet">
<!-- My CSS -->
<link rel="stylesheet" href="/assets/css/common.css">
<!-- CSS set in page -->
<link rel="stylesheet" href="/assets/css/sidebar-post-nav.css">
<!-- CSS set in layout -->
<script type="text/javascript" src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
</head>
<body>
<header class="site-header">
<div class="container">
<a id="site-header-brand" href="/" title="湘江鸿">
<span class="octicon octicon-mark-github"></span> 湘江鸿
</a>
<nav class="site-header-nav" role="navigation">
<a href="/"
class=" site-header-nav-item hvr-underline-from-center"
target=""
title="Home">
Home
</a>
<a href="/archives"
class=" site-header-nav-item hvr-underline-from-center"
target=""
title="Archives">
Archives
</a>
<a href="/bookmark"
class=" selected site-header-nav-item hvr-underline-from-center"
target=""
title="Bookmark">
Bookmark
</a>
<a href="/open-source"
class=" site-header-nav-item hvr-underline-from-center"
target=""
title="Open-Source">
Open-Source
</a>
<a href="/about"
class=" site-header-nav-item hvr-underline-from-center"
target=""
title="About">
About
</a>
</nav>
</div>
</header>
<div class="content">
<section class="jumbotron geopattern" data-pattern-id="Bookmarks">
<div class="container">
<div id="jumbotron-meta-info">
<h1>Bookmarks</h1>
<span class="meta-info">
<span class="mega-octicon octicon-repo"></span> To mark useful libs - tools - books
</span>
</div>
</div>
</section>
<script>
$(document).ready(function(){
$('.geopattern').each(function(){
$(this).geopattern($(this).data('pattern-id'));
});
});
</script>
<article class="post container" itemscope itemtype="http://schema.org/BlogPosting">
<div class="row">
<div class="col-md-9 markdown-body">
<h2 id="java">Java</h2>
<ul>
<li><a href="https://dom4j.github.io/">Dom4j</a> - Flexible XML framework</li>
<li><a href="https://github.com/google/gson">Gson</a> - Google Library to support JSON</li>
<li><a href="http://x-stream.github.io/index.html">Xstream</a> - Serialize objects to XML and back again</li>
<li><a href="https://jaxb.java.net/">JAXB</a> - Java Architecture for XML Binding</li>
</ul>
<h2 id="android">Android</h2>
<ul>
<li><a href="https://github.com/nostra13/Android-Universal-Image-Loader">Universal-Image-Loader</a> - Powerful and flexible library for loading, caching and displaying images</li>
<li><a href="http://greendao-orm.com/">greenDAO</a> - greenDAO is a light and fast ORM solution that maps objects to SQLite databases</li>
<li><a href="http://greenrobot.github.io/EventBus/">EventBus</a> - Android optimized event bus that simplifies communication</li>
</ul>
<h2 id="php">PHP</h2>
<ul>
<li><a href="https://github.com/j4mie/idiorm/">Idiorm</a> - A lightweight nearly-zero-config object-relational mapper and fluent query builder for PHP5</li>
<li><a href="https://github.com/matteosister/GitElephant">GitElephant</a> - An abstraction layer to manage your git repositories with php</li>
<li><a href="https://github.com/propelorm/Propel">Propel</a> - ORM for PHP5</li>
<li><a href="https://code.google.com/archive/p/simpledom/">SimpleDOM</a> - Built upon SimpleXML and provids DOM methods using SimpleXML’s syntax.</li>
</ul>
<h3 id="symfony">Symfony</h3>
<ul>
<li><a href="https://github.com/nelmio/NelmioApiDocBundle">NelmioApiDocBundle</a> - Generate a decent documentation for your APIs</li>
<li><a href="http://symfony.com/doc/current/bundles/FOSRestBundle/index.html">FOSRestBundle</a> - Creat a REST API with Symfony2</li>
</ul>
<h2 id="javascript">Javascript</h2>
<ul>
<li><a href="http://alvarotrigo.com/fullPage/">fullPage.js</a> - To create fullscreen scrolling websites / single page websites</li>
<li><a href="http://lunrjs.com/">lunr.js</a> - Simple full-text search</li>
<li><a href="http://eragonj.github.io/Trip.js/index.html">Trip.js</a> - Help you customize a tutorial trip easily with more flexibilities</li>
<li><a href="http://momentjs.com/">Moment.js</a> - Parse, validate, manipulate, and display dates in JavaScript.</li>
<li><a href="http://underscorejs.org/">Underscore.js</a> - It provides a whole mess of useful functional programming helpers without extending any built-in objects.</li>
</ul>
<h3 id="angularjs">AngularJs</h3>
<ul>
<li><a href="http://angular.github.io/protractor">Protractor</a> - End-to-end test framework for AngularJS applications</li>
<li><a href="https://github.com/colthreepv/angular-media-player">angular-media-player</a> - Directive for audio and video</li>
<li><a href="http://lorenzofox3.github.io/smart-table-website/">Smart table</a> - Module to easily display data in a table</li>
<li><a href="http://esvit.github.io/ng-table/#/">ng-table</a> - Module to easily display data in a table</li>
<li><a href="https://github.com/tameraydin/ngToast">ngToast</a> - AngularJS toast</li>
<li><a href="http://newaeonweb.com.br/generator-angm/">ANGM-GENERATOR</a> - AngularJS Yeoman Generator</li>
</ul>
<h3 id="nodejs">Node.js</h3>
<ul>
<li><a href="https://github.com/node-modules/utility">utility</a> - A collection of useful utilities</li>
<li><a href="https://github.com/cheeriojs/cheerio">cheerio</a> - Implementation of core jQuery designed specifically for the server</li>
<li><a href="http://mongoosejs.com/">mongoose</a> - elegant mongodb object modeling for node.js</li>
<li><a href="http://visionmedia.github.io/superagent/">SuperAgent</a> - Super Agent is light-weight progressive ajax API</li>
<li><a href="https://github.com/kcbanner/connect-mongo">connect-mongo</a> - MongoDB session store for Express and Connect</li>
<li><a href="https://github.com/expressjs/morgan">Morgan</a> - HTTP request logger middleware for node.js</li>
</ul>
<h2 id="css">CSS</h2>
<ul>
<li><a href="https://connoratherton.com/loaders">loaders.css</a> - Delightful and performance-focused pure css loading animations</li>
<li><a href="http://github.danielcardoso.net/load-awesome/animations.html">Load Awesome</a> - Pure CSS Loaders and Spinners</li>
<li><a href="http://ianlunn.github.io/Hover/">Hover.css</a> - Collection of CSS3 powered hover effects</li>
<li><a href="https://github.com/daneden/animate.css">Animate.css</a> - Bunch of cool, fun, and cross-browser animation.</li>
</ul>
<h2 id="front-end-web-uiframework">Front-end web UI/Framework</h2>
<ul>
<li><a href="http://getbootstrap.com/">Bootstrap</a> - HTML, CSS, and JS framework for developing responsive, mobile first projects on the web</li>
<li><a href="https://material.angularjs.org/latest/">Angular-Material</a> - Implementation of Google’s Material Design Specification</li>
</ul>
<h2 id="fonts">Fonts</h2>
<ul>
<li><a href="https://www.google.com/fonts">Google Fonts</a> - So it’s google fonts :D</li>
</ul>
<h2 id="icons">Icons</h2>
<ul>
<li><a href="https://octicons.github.com/">Github-Octicons</a> - GitHub’s icons</li>
<li><a href="https://fortawesome.github.io/Font-Awesome/">Font-Awesome</a> - Scalable vector icons that can instantly be customized</li>
<li><a href="http://www.iconfont.cn/">Iconfont</a> - Alibaba Icon Library (Chinese)</li>
<li><a href="http://lipis.github.io/flag-icon-css/">flag-icon-css</a> - Country Flags</li>
<li><a href="http://weloveiconfonts.com/">weloveiconfonts</a> - Icon fonts</li>
<li><a href="https://design.google.com/icons/#ic_accessibility">Material Icon</a> - Material icons</li>
</ul>
<h2 id="color">Color</h2>
<ul>
<li><a href="https://www.behance.net/gallery/32154055/Minimalist-Color-Palettes-2015">Minimalist-Color-Palettes</a> - Minimalist Color Palettes</li>
</ul>
<h2 id="tool">Tool</h2>
<ul>
<li><a href="https://www.processon.com/">ProcessOn</a> - UML web app for team (Chinese)</li>
<li><a href="https://www.draw.io/">draw.io</a> - UML web app for team</li>
<li><a href="https://winscp.net/eng/download.php">WinSCP</a> - SFTP, SCP and FTP client for Windows</li>
</ul>
<h2 id="books">Books</h2>
<ul>
<li><a href="https://github.com/tiimgreen/github-cheat-sheet">GitHub Cheat Sheet</a> - GitHub Practical Tips</li>
<li><a href="http://jonas.nitro.dk/git/quick-reference.html">Git Quick Reference</a> - Git Quick Reference</li>
<li><a href="https://geemus.gitbooks.io/http-api-design/content/en/index.html">HTTP API Design Guide</a> - HTTP+JSON API design practices</li>
</ul>
<!-- copyright -->
<div>
<p align="center" style="margin-top: 15px; font-size: 11px;color: #cc0000;">
<strong>(转载本站文章请注明作者和出处 <a href="http://lht1936.github.io">湘江鸿的博客</a>)</strong>
</p>
</div>
<!-- Comments -->
<div class="comment">
<div id="gitalk-container"></div>
<script src="/assets/js/gitalk.min.js"></script>
<script>
var gitalk = new Gitalk({
id: '/bookmark.html',
clientID: '2347868ee370ead4247e',
clientSecret: '4fc5fe85a6458851c4c46f7508ee72940dbb5801',
repo: 'lht1936.github.io',
owner: 'lht1936',
admin: ['lht1936'],
labels: ['gitment'],
perPage: 50,
})
gitalk.render('gitalk-container')
</script>
</div>
</div>
<div class="col-md-3">
<h3>Post Directory</h3>
<div id="post-directory-module">
<section class="post-directory">
<!-- Links that trigger the jumping -->
<!-- Added by javascript below -->
<dl></dl>
</section>
</div>
<script type="text/javascript">
$(document).ready(function(){
$( "article h2" ).each(function( index ) {
$(".post-directory dl").append("<dt><a class=\"jumper\" hre=#" +
$(this).attr("id")
+ ">"
+ $(this).text()
+ "</a></dt>");
var children = $(this).nextUntil("h2", "h3")
children.each(function( index ) {
$(".post-directory dl").append("<dd><a class=\"jumper\" hre=#" +
$(this).attr("id")
+ ">"
+ " - " + $(this).text()
+ "</a></dd>");
});
});
var fixmeTop = $('#post-directory-module').offset().top - 100; // get initial position of the element
$(window).scroll(function() { // assign scroll event listener
var currentScroll = $(window).scrollTop(); // get current position
if (currentScroll >= fixmeTop) { // apply position: fixed if you
$('#post-directory-module').css({ // scroll to that element or below it
top: '100px',
position: 'fixed',
width: 'inherit'
});
} else { // apply position: static
$('#post-directory-module').css({ // if you scroll above it
position: 'inherit',
width: 'inherit'
});
}
});
$("a.jumper").on("click", function( e ) {
e.preventDefault();
$("body, html").animate({
scrollTop: ($( $(this).attr('hre') ).offset().top - 100)
}, 600);
});
});
</script>
</div>
</div>
</article>
</div>
<footer class="container">
<div class="site-footer">
<div class="site-footer-icons">
<a target="_blank" href="https://weibo.com/u/1260208131">
微博
</a>
<a target="_blank" href="https://github.com/lht1936">
Github
</a>
</div>
<div class="scrolltop">
<a href="javascript:window.scrollTo(0,0)" >TOP</a>
</div>
<div class="rss">
<a href="/feed.xml"><span class="octicon octicon-rss" style="color:orange;"></span></a>
Power by <a href="https://github.com/DONGChuan/Yummy-Jekyll">Yummy Jekyll</a>
</div>
</div>
<!-- Third-Party JS -->
<script type="text/javascript" src="/bower_components/geopattern/js/geopattern.min.js"></script>
<!-- My JS -->
<script type="text/javascript" src="/assets/js/script.js"></script>
<!---->
<script type="text/javascript" src="http://tajs.qq.com/stats?sId=66018191" charset="UTF-8"></script>
</footer>
</body>
</html>