上一页 1 ··· 198 199 200 201 202 203 204 205 206 ··· 341 下一页
摘要: 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 阅读(10326) 评论(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 阅读(3531) 评论(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 阅读(3827) 评论(0) 推荐(0)
摘要: # 显示总大小(/下全部文件占用大小)du -sh /* | sort -nr# 显示各文件夹的大小(当前文件夹下各文件夹的大小)du --max-depth=1 阅读全文
posted @ 2015-02-01 20:00 emanlee 阅读(2163) 评论(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)
摘要: 实例 定义和用法shape 属性与 coords 属性配合,可以规定区域的尺寸、形状和位置。详细解释:shape 属性用于定义图像映射中对鼠标敏感的区域的形状:圆形(circ 或 circle)多边形(poly 或 polygon)矩形(rect 或 rectangle)shape 属性的... 阅读全文
posted @ 2015-01-22 16:10 emanlee 阅读(1016) 评论(0) 推荐(0)
摘要: HTML vertical text (Safari, Firefox, Chrome, and Opera).vText { -moz-transform: rotate(-90deg) translate(0, 100%); -moz-transform-origin: 0% 100%;... 阅读全文
posted @ 2015-01-22 15:25 emanlee 阅读(4962) 评论(0) 推荐(1)
上一页 1 ··· 198 199 200 201 202 203 204 205 206 ··· 341 下一页