编程知识大杂烩

以下资料完全是随手记录,没有任何顺序或关联,需要用直接^F找就行了。

1. ps aux指令详解

http://blog.csdn.net/hanner_cheung/article/details/6081440

2. Linux下配置Apache php

http://lelong.iteye.com/blog/904125

3. shell定义变量

http://see.xidian.edu.cn/cpp/html/1494.html

4. shell编程的if else

http://lxsym.blog.51cto.com/1364623/866331/

5. shell逻辑运算

http://www.cnblogs.com/chengmo/archive/2010/10/01/1839942.html

6. LAMP架构安装顺序

http://blog.csdn.net/hguisu/article/details/7298973

7. mysql启动和停止

http://www.cnblogs.com/cy163/archive/2009/08/25/1553972.html

8. init.d启动脚本

http://www.cnblogs.com/gzggyy/archive/2013/01/28/2879768.html

9. 为何要放弃php.ini中的register_globals特性

http://php.net/manual/zh/security.globals.php

10. php编码规范,仅供参考

http://blog.163.com/wang_7380031@126/blog/static/559058702011587357943/

11. php循环详解

http://www.cnblogs.com/echo-something/archive/2013/02/26/2933139.html

12. php中的引用

http://blog.csdn.net/hguisu/article/details/7454801

13. Copy-on-write思想简介

http://baike.baidu.com/view/10185904.htm

14. vim查看行号

http://happyolucky.blog.163.com/blog/static/12235640020096235012610/

15. vim彩色配置

http://www.cnblogs.com/softwaretesting/archive/2012/01/10/2317820.html

16. python中set的各种操作

http://blog.csdn.net/business122/article/details/7541486

17. python中glob模块通配符的使用

http://blog.csdn.net/cnmilan/article/details/9323687

18. grep命令详解

http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2856896.html

19. free命令详解

http://blog.csdn.net/wwww1988600/article/details/20545969

20. iostat查看IO情况

http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2858810.html

21. nload查看网络流量

http://369369.blog.51cto.com/319630/805726

22, .htaccess文件的作用

http://www.php100.com/html/program/apache/2013/0905/5488.html

23. httpd.conf配置详解

http://www.cnblogs.com/sunky/articles/1409267.html

24. php中使用mysql(已然过时)

http://www.cnblogs.com/JamyWong/archive/2009/06/03/1495499.html

25. mysql各种语句(早晚得背熟,面试必考)

http://www.cnblogs.com/picaso/archive/2012/05/17/2505895.html

26. 数据库索引的最左前缀原则(面试被问到,果然是读书太少)

http://yuri-liuyu.iteye.com/blog/979508

27. 神器awk,原来作者之一就是AC自动机的发明者

http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2858470.html

28. php中的随机数rand()

http://developer.51cto.com/art/200912/166361.htm

29. php中mysql和mysqli的区别

http://www.jb51.net/article/28103.htm

30. apache上安装wordpress

http://www.cnblogs.com/xiaofengkang/archive/2011/11/16/2251608.html

31. libc是个好东西

版本不同可能有所差异,在/lib/i386-linux-gnu/下找到libc-x.xx.so,将其重命名为其他名字后会有特别惊喜。

执行此操作前,请提前准备好linux启动盘一个。

32. httpd.conf中AllowOverride配置的意义

http://www.cnblogs.com/xiaochaohuashengmi/archive/2011/04/24/2026524.html

33. windows下的文件拷到linux下会有权限问题,需要手动改成755和644

find -type f | while read item; do chmod 644 $item; done

find -type d | while read item; do chmod 755 $item; done

34. google的html和css代码规范

http://www.cnblogs.com/2050/archive/2012/04/26/2470947.html

35. HTML validator

http://validator.w3.org/#validate_by_uri+with_options

36. HTML syntaxes

http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html

37. CSS validator

http://jigsaw.w3.org/css-validator/

38. vim中的编码问题

http://blog.csdn.net/challenge_c_plusplus/article/details/11898487

39. js/css/html压缩工具

http://tool.oschina.net/jscompress?type=3

40. html5标签属性大全(差很多,这也能叫大全)

http://blog.csdn.net/zhangguoliang521/article/details/8226449

41. html5标签大全(不知道全不全)

http://blog.sina.com.cn/s/blog_7d8f158301017t25.html

42. html转义字符的理解

http://www.codesky.net/article/201403/182200.html

43. 正则表达式详解一篇

http://www.cnblogs.com/helloczh/articles/1648029.html

44. 最近买了本html5教程,结果发现写得很不规范,于是找了一个查过时标签的网站

http://www.monmonkey.com/rumenpian/html/

45. 很不错的html转义字符码表

http://114.xixik.com/character/

46. 2014年8月8日,词汇量测试,难怪做阅读有一堆生词,英语优势已荡然无存

http://testyourvocab.com/result?user=4335515

47. 2015年4月13日,词汇量测试,没什么变化

http://testyourvocab.com/result?user=5139549

48. W3school的python re模块

http://www.w3cschool.cc/python/python-reg-expressions.html

49. Python的dict模块

http://blog.csdn.net/wangran51/article/details/8440848

50. Python用struct模块处理二进制

http://www.cnblogs.com/gala/archive/2011/09/22/2184801.html

51. Burrows-Wheeler变换压缩文本

http://www.cnblogs.com/xudong-bupt/p/3763814.html

52. Python【map、reduce、filter】内置函数使用说明

http://www.cnblogs.com/zhoujinyi/archive/2013/06/07/3121976.html

53. python中xrange和range的异同

http://ciniao.me/article.php?id=17

54. python自定义排序,cmp函数用法

http://www.w3cschool.cc/python/func-number-cmp.html

55. python时间处理

http://niewj.iteye.com/blog/1679100

56. python中timedelta模块

http://liuzhijun.iteye.com/blog/1874020

57. python中strptime函数

http://www.w3cschool.cc/python/att-time-strptime.html

58. In case you need some number sequences

http://oeis.org/

59. latex数学符号表

http://www.mohu.org/info/symbols/symbols.htm

60. latex方程组,大括号

http://blog.sina.com.cn/s/blog_5033f3b40101hrfd.html

61. latex中的空格

http://blog.sina.com.cn/s/blog_4ddef8f80100iwwv.html

62. 原根

http://en.wikipedia.org/wiki/Primitive_root_modulo_n

63. 编辑距离

http://en.wikipedia.org/wiki/Levenshtein_distance

64. Stern-Brocot sequence

http://oeis.org/A002487

65. 四边形不等式,动态规划降维

http://blog.163.com/lqp18_31/blog/static/54182769200991910199644/

66. 石子归并,经典问题

http://fanhq666.blog.163.com/blog/static/81943426201062865551410/

67. Boyer-Moore Vote Algorithm

https://en.wikipedia.org/wiki/Boyer-Moore_Majority_Vote_Algorithm

68. 引用占空间吗?

http://bbs.chinaunix.net/thread-3574497-1-1.html

69. AC自动机学习

http://blog.csdn.net/kk303/article/details/6912508

70. C++11,shared_ptr

http://www.cnblogs.com/hujian/archive/2012/12/10/2810754.html

71. LaTeX的自定义命令

http://blog.csdn.net/hencoff/article/details/7355356

72. LaTeX设置字号和字体

http://blog.csdn.net/xiazdong/article/details/8892070

73. LaTeX的一些宏包

http://blog.chinaunix.net/uid-20289887-id-1710422.html

74. LaTeX的xeCJK宏包

http://www.360doc.com/content/11/1112/15/532901_163797486.shtml

75. LaTeX中的空格

http://www.eefocus.com/sunshine/blog/09-08/175249_cd8d3.html

76. 字体的“衬线”与“无衬线”

http://kb.cnblogs.com/page/192018/

77. 再加上等宽字体

http://blog.sina.com.cn/s/blog_6103a3bd01010qie.html

78. LaTeX中文字带背景色的方法

http://blog.csdn.net/virhuiai/article/details/7873482

79. nim游戏(m堆石子)

http://www.cnblogs.com/crazyapple/archive/2013/04/04/2999433.html

80. NIM-wikipedia

https://en.wikipedia.org/wiki/Nim

81. 可列集

https://en.wikipedia.org/wiki/Countable_set

82. 一致性空间

https://en.wikipedia.org/wiki/Uniform_space

83. 实数完备性

https://en.wikipedia.org/wiki/Completeness_of_the_real_numbers

84. Gestalt psychology

https://en.wikipedia.org/wiki/Gestalt_psychology

85. Almost Everywhere

https://en.wikipedia.org/wiki/Almost_everywhere

86. 智商测试,仅供娱乐

http://www.iqeq.com.cn/upload86/201510101435134504.jpg

87. Gamma Function

https://en.wikipedia.org/wiki/Gamma_function

88. DSL - 领域专用语言

https://en.wikipedia.org/wiki/Domain-specific_language

89. 欧拉反射公式

https://en.wikipedia.org/wiki/Reflection_formula

90. Scale Up and Scale Out

http://www.cnblogs.com/spork/archive/2009/12/29/1634766.html

91. Uniform Continuity

https://en.wikipedia.org/wiki/Uniform_continuity

92. Coq

https://en.wikipedia.org/wiki/Coq

93. Cyber-Physical System

https://en.wikipedia.org/wiki/Cyber-physical_system

 

算法和数据结构学习清单:

BM Algorithm,字符串匹配

Sunday Algorithm,字符串匹配

Treap,树堆

Hungarian Algorithm,不带权二部图最大匹配

Prefix Array,后缀数组

AC Automation,多模式匹配

Dancing Links,跳舞链

FFT,快速傅立叶变换

转载于:https://www.cnblogs.com/zhuli19901106/p/programming-notes.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/375712.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

最长公共前缀

2、最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 示例1 输入: ["flower","flow","flight"] 输出: "fl"示例2 输入: ["dog","racecar",…

devexpress中gridcontrol头部添加垂直线(右边框)

winform开发,用devexpress中的gridcontrol控件,头部默认是3D样式,当客户希望像内容一样扁平化显示且需要添加垂直线(右边框)时恶梦开始了。。经过一阵摸索发现可以这样解决: 1.设置GridControl的GridView控件的PaintStyleName属性…

UITableView知识梳理须知—(一)

1、UITableView掌握 1> 设置UITableView的dataSource、delegate 2> UITableView多组数据和单组数据的展示 3> UITableViewCell的常见属性 4> UITableView的性能优化(cell的循环利用) 5> 自定义Cell 2、什么是UITableView 在i…

Yarn中的几种状态机

1 概述 为了增大并发性,Yarn采用事件驱动的并发模型,将各种处理逻辑抽象成事件和调度器,将事件的处理过程用状态机表示。什么是状态机? 如果一个对象,其构成为若干个状态,以及触发这些状态发生相互转移的事…

反转字符串里的单词

4、反转字符串里的单词 给定一个字符串,逐个反转字符串中的单词 示例1: 输入: "the sky is blue", 输出: "blue is sky the".说明: 无空格字符构成一个单词。 输入字符串可以在前面或者后面包含多余的空格&#xff0…

正整数

题目链接:http://acm.hust.edu.cn/vjudge/contest/view.action?cid84077#problem/A 题目: Description A magic island Geraldion, where Gerald lives, has its own currency system. It uses banknotes of several values. But the problem is, the s…

360 webscan中防注入跨站攻击的核心

//get拦截规则 $getfilter "\\<.javascript:window\\[.{1}\\\\x|<.*(&#\\d?;?)?>|<.*(data|src)data:text\\/html.*>|\\b(alert\\(|confirm\\(|expression\\(|prompt\\(|benchmark\s*?\\(\d?|sleep\s*?\\([\d\.]?\\)|load_file\s*?\\()|<[…

POJ 2115 C Looooops(扩展欧几里得)

辗转相除法&#xff08;欧几里得算法&#xff09; 时间复杂度&#xff1a;在O(logmax(a, b))以内 int gcd(int a, int b) {if (b 0) return a;return gcd(b, a % b); }扩展欧几里得算法 时间复杂度和欧几里得算法相同 int extgcd(int a, int b, int& x, int& y) {int …

分支管理(转载)

转自&#xff1a;http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/0013743862006503a1c5bf5a783434581661a3cc2084efa000 分支就是科幻电影里面的平行宇宙&#xff0c;当你正在电脑前努力学习Git的时候&#xff0c;另一个你正在另一个平行…

匹配括号

输入&#xff1a; 仅包含{,},(,),[,]的字符串输出&#xff1a; 如果括号匹配输出&#xff1a;YES 否则输出&#xff1a;NOSolution&#xff1a; #include<iostream> #include<string> #include<stack> using namespace std;bool check(const string&)…

总线接口与计算机通信

微机中总线一般有内部总线、系统总线和外部总线。 内部总线是微机内部各外围芯片与处理器之间的总线&#xff0c;用于芯片一级的互连&#xff1b; 系统总线是微机中各插件板与系统板之间的总线&#xff0c;用于插件板一级的互连&#xff1b; 外部总线则是微机和外部设备之间的总…

uva 12442 . Forwarding Emails

“... so forward this to ten other people, to prove that you believe the emperor has new clothes.”Aren’t those sorts of emails annoying?Martians get those sorts of emails too, but they have an innovative way of dealing with them.Instead of just forwardi…

大数相加

输入&#xff1a; 两个用字符串表示的大整数 如a1111111111111,b222222222222222 输出&#xff1a; 两个数的和 Solution&#xff1a; #include<iostream> #include<algorithm> #include<string>using namespace std;int add(const char&,const char&…

Linux的进程与服务(一)

启动的配置文件/etc/inittab&#xff0c;修改完配置文件以后 init q立即生效 # Default runlevel. The runlevels used by RHS are: # 0 - halt (Do NOT set initdefault to this) # 1 - Single user mode # 2 - Multiuser, without NFS (The same as 3, if you do not h…

Linux 修改swap虚拟内存大小

swap是内存的交换区&#xff1b;换句话说&#xff0c;如果内存不够用了&#xff0c;那么系统会在硬盘上存储一些内存中不常用的数据&#xff0c;之后将这部分数据在存储中析构掉&#xff1b;这样内存就又有剩余空间可以运行东东啦&#xff0c;这个过程也就是所谓的交换&#xf…

统计文章中的单词

输入&#xff1a; 字符串&#xff0c;其中可能包含空格&#xff0c;TAB&#xff0c;回车等&#xff0c;规定&#xff0c;仅字母数字和单引号算作单词部分 输出&#xff1a; 单词的个数 Solution&#xff1a; #include<iostream> #include<string>using namespac…

迈向世界 拓展未来

一切都会过去&#xff0c;只有真理永存&#xff0c;只有愿意越过事实前进一步的人&#xff0c;才能理解事实&#xff0c;这就是科学。时代在发展&#xff0c;科技更是日新月异彻底改变着我们的生活方式。现在的我们就是跟着科技发展的脚步&#xff0c;奔着梦想&#xff0c;一直…

JS - 跳转页面

<!-- 第一种&#xff1a; --><script type"text/javascript">window.location.href "login.jsp?backurl" window.location.href;</script><!-- 第二种&#xff1a; --><script type"text/javascript"&g…

分享一个用安卓手机就能引导pc安装linux系统办法

1、首先安卓手机下载软件DriveDroid.apk http://pan.baidu.com/s/1qW4pbT6 2、下载linux镜像文件放手机存储卡存储&#xff0c;放到Download/images/以下 3、打开软件会自己主动读取这个目录以下镜像&#xff0c;也能够在软件里面下载须要的镜像文件 4、软件设置usb连接模式 5、…

SharePoint 2013 开发——其他社交功能

博客地址&#xff1a;http://blog.csdn.net/FoxDave上一篇讲了如何获取用户配置文件的相关属性&#xff0c;它属于SharePoint 2013社交功能的一个小的构成部分。社交功能是SharePoint 2013改进的一大亮点。可以在现有网站上开启社交功能或者新建一个专门用于社交用途的社区网站…