Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2b9df8c

Browse files
committed
update
1 parent 6cf0761 commit 2b9df8c

File tree

6 files changed

+25
-24
lines changed

6 files changed

+25
-24
lines changed

Golang学习之路.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1+
* https://golang.org/
12
* Go (programming language): https://en.wikipedia.org/wiki/Go_%28programming_language%29
3+
* Go语言圣经(中文版): http://shinley.com/
4+
* Go 学习笔记: https://github.com/qyuhen/book
5+
* the-way-to-go_ZH_CN: https://github.com/Unknwon/the-way-to-go_ZH_CN
6+
* The-Golang-Standard-Library-by-Example: https://github.com/polaris1119/The-Golang-Standard-Library-by-Example
7+
* Go 标准库 中文参考: http://www.kancloud.cn/wizardforcel/golang-stdlib-ref/121475
8+
* GoClipse: https://github.com/GoClipse/goclipse
9+
* liteide: https://github.com/visualfc/liteide
10+
11+
* Go Search: http://go-search.org/
12+
* Go Walker: https://gowalker.org/
13+
* GoDoc: http://godoc.org/
214
* Golang中国: http://www.golangtc.com/
315
* Go语言入门: http://www.yiibai.com/go/go_start.html
4-
* Go语言中文网: http://studygolang.com/
16+
* Go语言中文网: http://studygolang.com/
17+
* GOROOT 和 GOPATH: http://my.oschina.net/achun/blog/134002
18+
* 搭建Go开发及调试环境(LiteIDE + GoClipse) -- Windows篇: http://www.cnblogs.com/custa/p/3913526.html
19+
* Go语言内存模型: http://www.cnblogs.com/sevenyuan/archive/2013/04/18/3029388.html

J2EE学习之路.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,16 @@
7070
* java byte与char互转原理: http://www.cnblogs.com/bluespot/archive/2008/10/23/1318155.html
7171
* Java永久代去哪儿了: http://www.infoq.com/cn/articles/Java-PERMGEN-Removed?utm_campaign=infoq_content&
7272
* Web Service描述语言 WSDL 详解: http://www.blogjava.net/libin2722/articles/159469.html
73+
* WebService之WSDL和SOAP实例(基于JAVA): http://di201yao.iteye.com/blog/310292
7374
* Virtual Memory Usage from Java under Linux, too much memory used: http://stackoverflow.com/questions/561245/virtual-memory-usage-from-java-under-linux-too-much-memory-used/561450#561450
7475
* Java直接内存与非直接内存性能测试: http://www.cnblogs.com/xing901022/p/5243657.html
7576
* Java直接(堆外)内存使用详解: http://www.cnblogs.com/xing901022/p/5248934.html
7677
* JVM调优总结(转): http://www.cnblogs.com/jiangxinnju/p/5655535.html
7778
* 理解OAuth 2.0: http://www.ruanyifeng.com/blog/2014/05/oauth_2_0.html
79+
* Spring框架的反序列化远程代码执行漏洞分析(转): http://www.cnblogs.com/jiangxinnju/p/5697050.html
80+
* 用 Java 技术创建 RESTful Web 服务: http://www.ibm.com/developerworks/cn/web/wa-jaxrs/index.html
81+
* Need to suppress “Warning: running an XSLT 1.0 stylesheet with an XSLT 2.0 processor” in Tomcat std out log file: http://stackoverflow.com/questions/4445481/need-to-suppress-warning-running-an-xslt-1-0-stylesheet-with-an-xslt-2-0-proce
82+
* Java 授权内幕: http://www.ibm.com/developerworks/cn/java/j-javaauth/
7883

7984

8085
## IDE

Java学习之路.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5178,29 +5178,7 @@ Content inside the nested layer.
51785178

51795179
您可以设置层在页面上的位置属性。这些属性包括左边和顶部(分别对应x和y坐标),Z轴(也称为堆叠顺序),和可见性。如需要更多信息,请参看设置层属性。
51805180

5181-
# 清理无用的CSS样式的几个工具
51825181

5183-
在我们写样式的时候,页面的CSS在经历几个版本的修改之后,可能有些样式已经用不到了,或许将某些样式更名了而原来的忘了删除,总之页面中可能存在着一些无用的样式。这些无用的浪费了一些服务器空间和带宽消耗,也会增大我们的维护成本。那么有没有一些办法来清理那些无用的样式呢?今天就让我们来了解一下几个比较有用的工具。
5184-
5185-
Dust-Me selectors
5186-
5187-
Dust-Me是一个很有用也很好用的Firefox插件,它可以分析到你的页面中调用的所有CSS文件并分析那些在页面中没有被用到。支持本地和远程样式文件,包括使用link标签、< ?xml-stylesheet?>处理指令、@import语句等方式引入的样式文件;(但是不支持页面中的style块和内联样式),支持IE条件注释中引入的样式文件;可以检查一个页面,也可以检查整个网站;支持CSS1选择器、大部分CSS2和CSS3选择器;理解通用的CSS hack,比如 “* html #fuck-ie”将会被认为是”html #fuck-ie”;支持Firefox 3.5和Firefox 3.0,事实上得益于FF 3.5的js引擎的改进,FF 3.5中的性能比FF 3.0要高50%。
5188-
5189-
Page Speed
5190-
5191-
Page Speed是Google提供的一个前端性能分析工具,有些类似于YSlow,但是提供了一些比较个性且很有用的工具,比如Remove unused CSS。Page Speed和YSlow一样依赖Firebug。
5192-
5193-
CSS Redundancy Checker
5194-
5195-
CSS Redundancy Checker 是一个免费的在线应用,可以检查所有的使用某个CSS文件的页面中无用的样式。可以同时检查某一个样式在多个页面中的使用情况。该工具的不足是虽然一次能检查多个HTML页面,但每次只能检查一个CSS文件,而且还要手动输入。
5196-
5197-
IntelliJ IDEA
5198-
5199-
IntelliJ IDEA 这是一个颇强大的IDE,类似于DreamWeaver,不过在国内用的不多。该软件包括一个即时代码分析工具(On-the-fly Code Analysis),可以分析CSS文件中未用到的class和id。
5200-
5201-
Expression Web
5202-
5203-
Expression Web作为微软的新一代网站开发工具,还是有很多人使用的,其CSS Report功能可以检查未用到需要被清除的CSS(我的确没有使用EW开发过网站,希望使用该软件的童鞋可以帮忙确认一下这一点)。
52045182

52055183
# 网站设计中揪出网页的无效链接
52065184

Linux学习之路.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
* htop: https://sourceforge.net/projects/htop/
5050
* iftop: http://www.ex-parrot.com/~pdw/iftop/
5151
* Iotop: http://guichaz.free.fr/iotop/
52+
* 串口传输文件 lrzsz: http://www.cnblogs.com/lidabo/p/4780866.html
5253
* 基于CentOS的Linux基本网络配置,包括网卡eth0、DNS、Host等: http://www.cnblogs.com/rooney/archive/2012/03/24/2415144.html
5354

5455
## Shell 快捷键

OJ.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@
1111
* http://acm.zju.edu.cn/onlinejudge/
1212
* HDU Online Judge System: http://acm.hdu.edu.cn/
1313
* ACdream Online Judge: http://acdream.info/
14-
* UVa Online Judge: https://uva.onlinejudge.org/
14+
* UVa Online Judge: https://uva.onlinejudge.org/
15+
* codeforces: http://codeforces.com/

frontend学习之路.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* W3School: http://www.w3school.com.cn/index.html
66
* 前端开发框架对比:http://www.ibm.com/developerworks/cn/web/1404_wangfx_jsframeworks/
77
* 当我说前端基础时,我在说什么? —— 最近几年在前端圈的观察和反思: http://weibo.com/p/1001603933000810243086
8+
* 清理无用的CSS样式的几个工具(转): http://www.cnblogs.com/jiangxinnju/p/5697644.html
89

910
## Tools
1011

0 commit comments

Comments
 (0)