~ 我的home目录/ 系统根目录进入home目录:cd \进入跟目录:cd /显示IP信息:ifconfig显示文件列表:ll -h -h统计大小Maven编译:mvn clean deploy -U -Dmaven.test.skip=true dependency:copy-dependen....
分类:
系统相关 时间:
2014-10-27 21:13:43
阅读次数:
268
You can skip the index or value by assigning to_.If you only want the index, drop the ", value" entirely.package main import "fmt"func main() { pow...
分类:
其他好文 时间:
2014-10-27 06:54:42
阅读次数:
224
1. Takevar expr = context.Products .Take(10);var expr = (from p in context.Products select p) .Take(10);SELECT TOP (10) [...
分类:
数据库 时间:
2014-10-26 22:52:05
阅读次数:
350
A var declaration can include initializers, one per variable.If an initializer is present, the type can be omitted; the variable will take the type of...
分类:
其他好文 时间:
2014-10-26 20:59:53
阅读次数:
168
如题:datagrid中,见官方文档:formatterfunctionThe cell formatter function, take three parameter:value: the field value.rowData: the row record data.rowIndex: th...
分类:
Web程序 时间:
2014-10-26 00:14:43
阅读次数:
245
1、首先将mysqld服务停掉2、在命令行中,cd 到mysql的bin目录下,然后执行如下命令 mysqld --skip-grant-tables此时命令行会停止不动,然后你另起一个命令行3、在新的命令行中输入:mysql就可以进入mysql了,然后在在mysql的命令行中输入修改root密码的...
分类:
数据库 时间:
2014-10-25 22:48:03
阅读次数:
178
EverythingWhat is "Everything"?How long will it take to index my files?Does Everything search file contents?Does "Everything" hog my system resources?...
分类:
其他好文 时间:
2014-10-25 22:37:45
阅读次数:
278
BlockingQueue 是接口 阻塞队列常用的方法有:抛出异常特殊值阻塞超时插入add(e)offer(e)put(e)offer(e, time, unit)移除remove()poll()take()poll(time, unit)检查element()peek()不可用不可用实现它的类有:...
分类:
其他好文 时间:
2014-10-25 21:22:50
阅读次数:
206
一、以下脚本可查看局域网中的电脑计算机名和IP,保存以下文本至记事本,后缀改成batCOLOR 0A
CLS
@ECHO Off
Title 查询局域网内在线电脑IP
:send
@ECHO off&setlocal enabledelayedexpansion
ECHO 正在获取本机的IP地址,请稍等...
for /f "tokens=3 skip=2 delims=: " %%i in (...
分类:
其他好文 时间:
2014-10-25 15:59:04
阅读次数:
204
from sys import exitdef gold_room(): print "This room is full of gold. How much do you take?" next = raw_input("> ") if "0" in next or "1" in...
分类:
其他好文 时间:
2014-10-25 15:45:58
阅读次数:
169