上一页 1 ··· 198 199 200 201 202 203 204 205 206 ··· 341 下一页
摘要: .Web Browser Control – Specifying the IE Version http://www.west-wind.com/weblog/posts/2011/May/21/Web-Browser-Control-Specifying-the-IE-VersionI use ... 阅读全文
posted @ 2015-02-24 15:56 emanlee 阅读(1948) 评论(0) 推荐(0)
摘要: 转义字符描述\(在行尾时)续行符\\反斜杠符号\'单引号\"双引号\a响铃\b退格(Backspace)\e转义\000空\n换行\v纵向制表符\t横向制表符\r回车\f换页\oyy八进制数yy代表的字符,例如:\o12代表换行\xyy十进制数yy代表的字符,例如:\x0a代表换行\other其它的... 阅读全文
posted @ 2015-02-08 20:42 emanlee 阅读(302) 评论(0) 推荐(0)
摘要: Solution 1:Add Unique Index on your table:ALTER IGNORE TABLE `TableA` ADD UNIQUE INDEX (`member_id`, `quiz_num`, `question_num`, `answer_num`);Solut... 阅读全文
posted @ 2015-02-07 21:34 emanlee 阅读(619) 评论(0) 推荐(0)
摘要: python去掉行尾的换行符mystring.strip().replace(' ', '').replace('\n', '').replace('\t', '').replace('\r', '').strip() 阅读全文
posted @ 2015-02-07 20:24 emanlee 阅读(10328) 评论(0) 推荐(0)
摘要: import re re_digits = re.compile(r'(\d+)') def embedded_numbers(s): pieces = re_digits.split(s) # 切成数字与非数字 pieces[1::2] = map(int, pieces[1::2]) # 将... 阅读全文
posted @ 2015-02-03 09:17 emanlee 阅读(3533) 评论(0) 推荐(0)
摘要: 在文件 batch.sql 中写下多个SQL文件source file1.SQLsource file2.SQLsource file3.SQL然后运行 source batch.sql 阅读全文
posted @ 2015-02-02 08:55 emanlee 阅读(5339) 评论(0) 推荐(0)
摘要: rm -rf /usr/local/MATLAB/R2012arm /usr/local/bin/matlab /usr/local/bin/mcc /usr/local/bin/mex /usr/local/bin/mbuild 阅读全文
posted @ 2015-02-01 21:30 emanlee 阅读(3828) 评论(0) 推荐(0)
摘要: # 显示总大小(/下全部文件占用大小)du -sh /* | sort -nr# 显示各文件夹的大小(当前文件夹下各文件夹的大小)du --max-depth=1 阅读全文
posted @ 2015-02-01 20:00 emanlee 阅读(2171) 评论(0) 推荐(0)
摘要: # sorting examples using the mtcars datasetattach(mtcars)# sort by mpgnewdata <- mtcars[order(mpg),]# sort by mpg and cylnewdata <- mtcars[order(mpg, 阅读全文
posted @ 2015-01-28 15:09 emanlee 阅读(3486) 评论(0) 推荐(0)
摘要: 出现错误:Jan 23, 2015 4:19:21 PM org.apache.catalina.core.StandardWrapperValve invokeSEVERE: Servlet.service() for servlet [DisplayChart] in context with ... 阅读全文
posted @ 2015-01-23 17:20 emanlee 阅读(1145) 评论(0) 推荐(0)
上一页 1 ··· 198 199 200 201 202 203 204 205 206 ··· 341 下一页