`
文章列表
grep和正则表达式 正则表达式示例表字 符 意 义 示 例* 任意长度的字符串。 a* 表示: 空字符串、aaaa、a…? 长度为0或者1的字符串。 a? 表示: 空字符串和a。+ 长度为一个或者多个的字符串。 a+表示:a、aa、aaaaaa…. 任意字符。 a. 表示:a后跟任意字符。{} 代表上一规则重复数目、{1,1,s}包含一组匹配花括号,里面有两个数字和一个字符,表示在指定次数范围内找到字符。 a{3}表示:三个a、a{1,3}表示:一个到三个a、a{3,} 表示:大于等于三个a、{3,7,a}表示在3到7次重复范围内匹配字符a。[] 集合,代表方括号中任意一个字符。 [ab ...

Ruby的正则表达式

    博客分类:
  • Ruby
http://blog.csdn.net/xianqiang1/article/details/6838088
import org.junit.After; import org.junit.Before; import org.junit.Test; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; import redis.clients.jedis.JedisPoolConfig; import javax.sound.midi.Soundbank; import java.util.*; public class RedisTest { JedisPool pool; ...
IntelliJ IDEA 取消控制台行数限制 在idea7之后的版本中取消了 控制台行数设置 选项,只能通过更改配置文件进行更改 在%安装目录%/bin中找到idea.properties文件,更改idea.cycle.buffer.size项值为disabled,保存,重启idea即可  
UPDATE DB_CORE.tb_user_practice AS prac,test.tb_industry_mapping_temp AS mapping SET prac.position_industry=mapping.position_industry WHERE mapping.industry = prac.industry     更新逗号分割的字符串更新   UPDATE tb_job t,tb_position_mapping tm SET t.position_function = INSERT(t.position_function,POSI ...

resin热部署

不用重启resin直接上传class后立即生效需要在resin.conf中有如下配置: <!--     - For production sites, change dependency-check-interval to something     - like 600s, so it only checks for updates every 10 minutes.    -->  <dependency-check-interval>1s</dependency-check-interval>   dependency-check-interva ...
http://designbeep.com/2011/08/12/12-jquery-infinite-scrollingscroll-read-plugins-for-content-navigation/    

spring mvc转载

http://www.blogjava.net/bolo/archive/2011/06/01/351028.html
Nginx 配置文件详解     user nginx ;   #用户       worker_processes 8;   #工作进程,根据硬件调整,大于等于cpu核数       error_log logs/nginx_error.log crit;   #错误日志       pid logs/nginx.pid;   #pid放置的位置       worker_rlimit_nofile 204800;   #

scala闭包

有这样一个函数, 它接受一个函数(或者说闭包)作为参数:object Timer{  def oncePerSecond(callback: () => unit): unit = {    while (true){      callback()      Thread.sleep(1000)    }  }  def timeFlies(): unit = {     Console.println("Time flies when you're having fun(ctionally)...");  }  def main(args: Array[String ...

play

http://www.021128.net/   http://developer.51cto.com/art/201202/320053.htm

cURL用法

    博客分类:
  • CURL
http://www.ruanyifeng.com/blog/2011/09/curl.html

scala学习

http://ofps.oreilly.com/titles/9780596155957/

性能优化

http://performance.group.iteye.com/
你做过的最有效的提高你的编程水平的一件事情是什么 最近在stackexchange网站上看到了一个非常好的问答,有人问:你做过的最有效的提高你的编程水平的一件事情是什么? 回首作为一个程序员这些年来的生活和职业道路,我 ...
Global site tag (gtag.js) - Google Analytics