html 代码清单: [html] view plain copy <script type="text/javascript" src="http://www.youxiaju.com/js/jquery-1.4.2.min.js"></script> <script type="text/jav ...
分类:
Web程序 时间:
2017-01-12 18:23:54
阅读次数:
214
1.字符串处理 1 name = "my name is jiachen" 2 #首字母大写 3 print (name.capitalize()) 4 #统计字母出现次数 5 print (name.count('a')) 6 #居中打印 7 print (name.center(50,'-')) ...
分类:
编程语言 时间:
2017-01-12 17:19:09
阅读次数:
264
Freeware Tools For Linux, http://www.debianhelp.co.uk/tools.htm DNS related DnsstuffGlobal Whois ToolDnsreportDnstoolsPingabilityDNSdoctorName Server ...
分类:
Web程序 时间:
2017-01-12 12:33:39
阅读次数:
4477
01. Ubuntu下安装ipython sudo apt-get install ipython 02. Ubuntu下安装pip $ sudo apt-get install python-pip python-dev build-essential $ sudo pip install --u ...
分类:
编程语言 时间:
2017-01-12 11:33:48
阅读次数:
183
1. Cybrary Cybrary takes the open source concept and applies it to IT training. Many of the courses available through the site are related to security ...
分类:
其他好文 时间:
2017-01-12 11:27:59
阅读次数:
288
把ArrayList集合的字符串存储到文本文件 分析: 1、ArrayList集合存储的是字符串 2、遍历ArrayList,获取数据 3、把数据存储到文本文件 4、由文本文件可知要用字符流 代码 把文本文件的数据存储到ArrayList集合中 分析 1、数据源是文本文件 2、目的地是集合 3、元素 ...
分类:
其他好文 时间:
2017-01-12 11:10:03
阅读次数:
230
// 如果上传的文件不为图片格式, 那么就提示“上传文件格式不正确” if (file.type!="image/jpg" && file.type!="image/jpeg" && file.type!="image/png" && file.type!="image/gif" && file.t ...
分类:
Web程序 时间:
2017-01-12 09:44:08
阅读次数:
237
C#多线程编程 一、使用线程的理由 1、可以使用线程将代码同其他代码隔离,提高应用程序的可靠性。 2、可以使用线程来简化编码。 3、可以使用线程来实现并发执行。 二、基本知识 1、进程与线程:进程作为操作系统执行程序的基本单位,拥有应用程序的资源,进程包含线程,进程的资源被线程共享,线程不拥有资源。 ...
分类:
编程语言 时间:
2017-01-11 14:11:43
阅读次数:
287
原题链接在这里:https://leetcode.com/problems/convert-a-number-to-hexadecimal/ 题目: Given an integer, write an algorithm to convert it to hexadecimal. For nega ...
分类:
其他好文 时间:
2017-01-11 13:07:37
阅读次数:
137