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

Skip to content

Commit 654424d

Browse files
committed
update C_CPP j2ee and add asm
1 parent 52f56e9 commit 654424d

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

Asm学习之路.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
* 汇编网: http://www.asmedu.net/
2+
* 看雪学院: http://www.pediy.com/default.php
3+
* 看雪安全论坛: http://bbs.pediy.com/
4+
* MARS (MIPS Assembler and Runtime Simulator): http://courses.missouristate.edu/KenVollmar/MARS/
5+
* SPIM A MIPS32 Simulator: http://pages.cs.wisc.edu/~larus/spim.html
6+
* dosbox: http://www.dosbox.com/
7+
* The MASM32 SDK: http://www.masm32.com/
8+
* WinMIPS64: http://indigo.ie/~mscott/
9+
* OllyDbg: http://www.ollydbg.de/
10+
* winasm.net: http://www.winasm.net/
11+
* The Go tools for Windows + Assembler: http://www.godevtool.com/
12+
* Yasm: http://yasm.tortall.net/
13+
* NASM: http://www.nasm.us/
14+
* flat assembler: http://www.flatassembler.net/
15+
* IDA: https://www.hex-rays.com/products/ida/index.shtml
16+
* 鱼C工作室: http://www.fishc.com/

C_CPP学习之路.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
* The International Obfuscated C Code Contest: http://www.ioccc.org/
1919
* The C++ Standard Library - A Tutorial and Reference: http://www.cppstdlib.com/
2020

21+
* C 语言常见问题集: http://c-faq-chn.sourceforge.net/ccfaq/
22+
2123
* http://www.boost.org/
2224
* Ncurses: http://invisible-island.net/ncurses/ncurses.html
2325
* GMP: https://gmplib.org/
@@ -35,7 +37,18 @@
3537
* EasyX Library for C++: http://www.easyx.cn/
3638
* EGE(Easy Graphics Engine): http://xege.org/
3739
* PC-lint for C/C++: http://www.gimpel.com/html/pcl.htm
38-
40+
* CLucene - a C++ search engine: https://sourceforge.net/projects/clucene/
41+
* C and C++ Code Counter(CCCC): https://sourceforge.net/projects/cccc/
42+
* Translate STL 2 C Language: https://sourceforge.net/projects/tstl2cl/
43+
* Dev-C++: https://sourceforge.net/projects/orwelldevcpp/
44+
* C Unit Testing Framework: https://sourceforge.net/projects/cunit/
45+
* CppUnit - C++ port of JUnit: https://sourceforge.net/projects/cppunit/
46+
* Log library for C++: https://sourceforge.net/projects/log4cpp/
47+
* log4cplus: https://sourceforge.net/projects/log4cplus/
48+
* TinyXML: https://sourceforge.net/projects/tinyxml/
49+
* Borland-style CONIO: https://sourceforge.net/projects/conio/
50+
* cppcheck: https://sourceforge.net/projects/cppcheck/
51+
* DISLIN: https://www.mps.mpg.de/dislin/
3952

4053
# Eclipse CDT
4154

@@ -44,6 +57,19 @@
4457
* 也可以在Eclipse的MarketPlace中搜索CDT,但是需要注意搜到的CDT版本是否与Eclipse版本匹配。
4558

4659

60+
# CodeBlocks
61+
62+
* http://www.codeblocks.org/
63+
* cbp2make: http://forums.codeblocks.org/index.php/topic,13675.msg92163.html#msg92163
64+
* cbMakefileGen plugin: http://forums.codeblocks.org/index.php/topic,6241.0.html
65+
* CodeBlocks插件开发指南(一): http://www.cppblog.com/lymons/archive/2010/04/17/112850.html
66+
67+
# Other IDEs
68+
69+
* http://www.codelite.org/
70+
* http://anjuta.org/
71+
72+
4773
# CMake
4874

4975
* https://cmake.org/
@@ -76,6 +102,7 @@
76102
* Part II. GTK+ Widgets and Objects: https://developer.gnome.org/gtk3/stable/gtkobjects.html
77103
* GNOME 开发者中心: https://developer.gnome.org/
78104
* http://ftp.gnome.org/pub/gnome/
105+
* Vala - Compiler for the GObject type system: https://wiki.gnome.org/Projects/Vala
79106

80107
* Cairo: http://www.cairographics.org/
81108
* GTK-Doc: http://www.gtk.org/gtk-doc/
@@ -87,6 +114,7 @@
87114
* 在gtk+程序中显示中文说明: http://blog.chinaunix.net/uid-222028-id-2658485.html
88115
* Gtk对于通常的gui程序,大家想做的事就是做一点事件处理(包括各种计算、文件操作等),然后在界面上显示出来: http://www.cnblogs.com/cy163/archive/2007/06/16/785341.html
89116
* GTK+2.0 中的容器控件与布局技巧: http://www.ibm.com/developerworks/cn/linux/l-gtk/part1/
117+
* GTK编程: http://jianlee.ylinux.org/Computer/C/gtk%E7%BC%96%E7%A8%8B.html
90118

91119

92120
# QT
@@ -143,7 +171,6 @@
143171
* C++ 工程实践(7):iostream 的用途与局限: http://blog.csdn.net/solstice/article/details/6612179
144172
* 指针的大小: http://shansun123.iteye.com/blog/398601
145173
* 使用doxygen为C/C++程序生成中文文档(上): http://blog.csdn.net/fmddlmyy/article/details/1663898
146-
* CodeBlocks插件开发指南(一): http://www.cppblog.com/lymons/archive/2010/04/17/112850.html
147174
* C/C++指针原理: http://blog.csdn.net/column/details/c-pointer.html
148175
* C++ STL轻松导学: http://morningspace.51.net/resource/stlintro/stlintro.html?s=85fee499fe8534afc1f76ceceb0d41ff
149176
* Linux 桌面应用技术专题: http://www.ibm.com/developerworks/cn/linux/theme/desktop/index.html

J2EE学习之路.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,10 @@ JavaDoc: https://storm.apache.org/javadoc/apidocs/index.html
742742
* http://axis.apache.org/axis2/java/core/
743743

744744

745+
# cpDetector
746+
747+
* https://sourceforge.net/projects/cpdetector/
748+
745749
# SSH相关
746750

747751
## Struts

0 commit comments

Comments
 (0)