备忘录

shell编程入门:http://wiki.ubuntu.org.cn/Shell%E7%BC%96%E7%A8%8B%E5%9F%BA%E7%A1%80

acm:http://pat.zju.edu.cn/contests/pat-a-practise

ubuntu下面的enginx:http://wiki.ubuntu.org.cn/Nginx

shell编程入门:http://see.xidian.edu.cn/cpp/view/6994.html

python中文帮助文档:http://www.pythondoc.com/

linux内核之旅:http://www.kerneltravel.net/

linux内核官网:https://www.kernel.org/

python学习资料:http://dl.dbank.com/c0x7lzd9gg

互联网协议入门:http://www.ruanyifeng.com/blog/2012/05/internet_protocol_suite_part_i.html

python中国:http://www.okpython.com/forum.php

星际译王英汉词典:http://abloz.com/huzheng/stardict-dic/zh_CN/

皮皮书屋:http://www.ppurl.com/

python 之 分割参数getopt:http://andylin02.iteye.com/blog/845355

ubuntu12.04samba服务器配置,亲测可用(转)

linux系统开机启动流程之初学乍练:http://essun.blog.51cto.com/721033/1366045

centos安装openstack:http://lujiesky.blog.51cto.com/332319/1356920

谷歌首页#Google主页:203.208.46.146 www.google.com

openstack cinder :http://www.chenshake.com/openstack-havana-dashboard-to-test-and-use/#Volumes

谷歌:https://s3-ap-southeast-1.amazonaws.com/google.cn/index.html

vim : 相依關係: vim-common (= 2:7.2.330-1ubuntu3) 但 2:7.3.035+hg~8fdc12103333-1ubuntu7 卻將被安裝

ubuntu: apt-get update的时候遇到“Hash Sum mismatch”错误

linux常用c函数(中文版)

如何看路由表!

有线网卡和无线网卡同时上网 优先级切换的设置方法

linux字符设备驱动开发基础知识

led驱动开发:http://blog.csdn.net/mndlyt/article/details/17556831

linux内核定时器的使用:http://www.360doc.com/content/11/1104/21/1317564_161749141.shtml

 SNMP协议开发家园:http://net-snmp.cn/snmp/snmp2_7639.html

snmp资料http://blog.chinaunix.net/uid-23069658-id-3251045.html

net-snmp man:http://www.net-snmp.org/docs/man/

谷歌ip:http://91.213.30.153/

snmp mib:http://blog.chinaunix.net/uid-23069658-id-3251526.html

snmp server and client configure:http://www.debianhelp.co.uk/snmp.htm

snmp4j snmptrap :http://rabby.iteye.com/blog/788020

snmp扩展mib:http://blog.csdn.net/eric_sunah/article/details/19919071

snmptrap:http://www.360doc.com/content/11/0505/13/6377762_114539853.shtml

snmptrap:http://blog.csdn.net/reille/article/details/8712087

在android编程中出现cannot be resolved or is not a field(吐槽一下,这个用百度搜了一堆垃圾出来,后面没办法,只能用google了)

关于变量名前面加m的问题

android ListVeiwDemo:http://blog.csdn.net/centralperk/article/details/7446726

android timepicker修改显示颜色(待测):http://stackoverflow.com/questions/10969513/how-can-i-override-timepicker-to-change-text-color

android:listview:http://bbs.csdn.net/topics/390708102?page=1

数据库:mysql表名在windows下面不区分大小写,在linux下面区分大小写。字段名不区分大小写

a题:https://oj.leetcode.com/

ip首部最短20个字节,最长60个字节

ip首部中有很多是不一样的,16位的总长度,16标识符,16首部校验和,源ip地址,目的ip地址。如果数据有点长还会有更多不一样的字段

 net-snmp 中可以通过man snmptrap和man snmptrapd来查看两个命令的区别

snmptrap:向manager端发送trap消息

snmptrapd:接收trap消息

当然也可以man其他的,像snmp,snmpd等

windows/linux socket编程http://blog.csdn.net/wangyf101/article/details/9790807

c++模板讲解:http://www.cnblogs.com/gaojun/archive/2010/09/10/1823354.html

c中sizeof()是一个运算符计算数组或其他数据类型占内存大小,strlen()是一个函数,返回一个字符串类型的长度,即到的长度

socket编程中分为三类socket

流式套接字(SOCK_STREAM)数据报套接字(SOCK_DGRAM)原始套接字(SOCK_RAW);基于TCP的socket编程是采用的流式套接字。
SOCK_STREAM是基于TCP的,即面向连接的

SOCK_DGRAM是基于UDP的,即面向无连接的

SOCK_RAW这个好像要NB一点可以处理ICMP、IGMP、IP这些协议

总体上是这些区别,具体的还要度娘和谷歌一下

TCIP:Transit Communications Interface Profiles 交通通讯接口配置文件

NTCIP中DMS:Dynamic Message Signs

Any sign system that can change the message presented to the viewer such as VMS, CMS and BOS. It includes the following major components: sign face, sign housing, controller, and, if present, the controller cabinet. Abbreviated DMS

VMS:Variable Message Sign

c语言中没有bool类型

http://www.cnblogs.com/anderslly/archive/2008/05/19/factorial-algorithms.html

酷壳:http://coolshell.cn/articles/12052.html(牛人博客)

Scrapy入门教程:http://www.cnblogs.com/txw1958/archive/2012/07/16/scrapy-tutorial.html

 

向下兼容指的是高版本支持低版本的或者说后期开发的版本支持和兼容早期开发的版本,向上兼容的很少
First和Follow集的计算方法:http://blog.csdn.net/jack_wong2010/article/details/9074951

java
版first和follow集的实现:http://blog.csdn.net/xiangqiao123/article/details/7084035

c
/c++ extern:1.当它与"C"一起连用时,如: extern "C" void fun(int a, int b);则告诉编译器在编译fun这个函数名时按着C的规则去翻译相应的函数名而不是C++的
        2.当extern不与"C"在一起修饰变量或函数时,如在头文件中: extern int g_Int; 它的作用就是声明函数或全局变量的作用范围的关键字,其声明的函数和变量可以在本模块活其他模块中使用,记住它是一个声明不是定义!也就是说B模块(编译单元)要是引用模块(编译单元)A中定义的全局变量或函数时,它只要包含A模块的头文件即可,在编译阶段,模块B虽然找不到该函数或变量,但它不会报错,它会在连接时从模块A生成的目标代码中找到此函数。

java并发编程网:http://ifeve.com/java-concurrency-thread-directory/



吉他教程:http://i.youku.com/u/UNDM1MzI4ODk2/videos


以太网(Ethernet):指的是由Xerox公司创建并由Xerox,Intel和DEC公司联合开发的基带局域网规范。
因特网是一个网络的网络(a network of network)


j
vm:http://blog.csdn.net/yfqnihao/article/details/8289363



leetcode:http://blog.csdn.net/linhuanmars/article/details/20024907

爬虫
:http://scrapy-chs.readthedocs.org/zh_CN/latest/intro/tutorial.html


面试博客:http://blog.csdn.net/v_JULY_v结构之法

麻省理工学院公开课:算法导论

http://v.163.com/special/opencourse/algorithms.html

谷歌:http://googless.jd-app.com/


原文地址:https://www.cnblogs.com/luckygxf/p/3665919.html