Archive for 三月, 2008

刚买的A650

用A650随便乱拍的东西。

Comments (2)

远程桌面超出最大终端数解决

相信很多朋友都试过,远程桌面超出最大终端连接数的烦恼。以前,我们只能给机房打电话,他们帮忙重启一下机器。

前段时间发现,只要用远程桌面自带的命令就可以进了。

mstsc /v:IP /console

上面的命令只适用于XP等系统。Windows7的换成
mstsc /v:IP /admin

Comments (1)

规则表达式的修饰符

在使用正则的时候,同样的规则使用不同的修饰符会得到不同的效果。为了方便,我把修饰符相关的资料写了出来。
Read the rest of this entry »

评论

Tinymce File Manager and Image Manager

发现一个好的文件、图片与Tinymce结合的程序。
程序连接如下:
http://www.hotscripts.com/Detailed/69858.html
Read the rest of this entry »

Comments (8)

以秒运行Crontab

在Liux或BSD下,Crontab可以实现以秒运行程序的。

格式如下:

1 minute 1
1,5 minutes 1 and 5
* any minute
*/5 any minute that is divisible by 5

1:2 second 2 of minute 1
1:2,5:10 second 2 of minute 1 and second 10 of minute 5
*:3 second 3 of any minute
*:*/5 any second that is divisible by 5

只是设置分钟那里跟平时的不大一样,其他部分一样。

Comments (4)

ultraedit 13 注册码

  1. Name: icycool and everybody
  2. Code: K7V0U-O6Q6W-E6J9Q-H2C9P-XW24V-0J441

经测试使用正常!

Comments (1)

freebsd 简单配置

/etc/make.conf

  1. FETCH_CMD=wget -c -t 1
  2. DISABLE_SIZE=yes
  3. MASTER_SITE_OVERRIDE= \
  4. ftp://ftp.freebsdchina.org/pub/FreeBSD/ports/distfiles/ \
  5. ftp://ftp.hk.freebsd.org/pub/FreeBSD/ports/distfiles/ \
  6. ftp://ftp.kr.freebsd.org/pub/FreeBSD/ports/distfiles/

/etc/rc.conf

  1. accf_data_load="YES"
  2. accf_http_load="YES"

/etc/vi.exrc

  1. set ruler
  2. set tabstop=4
  3. set shiftwidth=4
  4. set showmode
  5. set autowrite

/etc/sysctl.conf

  1. kern.ipc.nmbclusters=65536
  2. kern.ipc.somaxconn=16384
  3. kern.maxfiles=131072
  4. kern.maxfilesperproc=104856
  5. kern.threads.max_threads_per_proc=4096
  6. vfs.ufs.dirhash_maxmem=67108864
  7. kern.ipc.shmmax=134217728
  8. net.inet.tcp.msl=5000

/boot/loader.conf

  1. kern.ipc.maxsockets="131072"
  2. kern.ipc.maxpipekva="104857600"

评论