debian wine frozen throne

debian wine frozen throne download source from http://www.winehq.org/download/ sudo apt-get install flex sudo apt-get install bison ./tools wine “Frozen Throne.exe” -opengl

wine

wine 卸载wine中已经安装的软件 到程序的目录里面 1 wine 卸载程序.exe wine,是一款优秀的Linux系统平台下的模拟器软件,用来将Window

JMS

JMS jms即Java消息服务 (Java Message Service) 应用程序接口是一个Java平台中关于面向消息中间件 (MOM) 的API,用于在两个应用程序之间,或分布式系统中发送消息

rt.jar 源码

rt.jar 源码 http://topic.csdn.net/u/20110125/10/06139927-2e44-4c76-b41c-fa7ea3206dd3.html java全部源代码,src.zip中没有的,在openjdk里的源代码加到eclipse里面.. 本来想问的.现在摸索出来了..可以到

雅各布天梯

雅各布天梯 圣经中有这样一个故事: 雅各布梦见天使上下天堂的梯子是闪闪发光的,后人便把这梦想中的梯子,称之为雅各布天梯。该展品由变压器、羊角电极

python mixin

python mixin 什么是Mixin设计模式 mixin设计模式可以看做是多继承的一种。那么首先,咱们谈谈为什么会出现多继承这种语法。 汽车和飞机他们都同属于交

golang JSON

golang JSON read field from json 1 2 import "github.com/tidwall/gjson" gjson.Get(jsonStr, "foo.bar.status").String() go json string 格式化 1 2 3 var str bytes.Buffer _ = json.Indent(&str, []byte(data), "", " ") fmt.Println("formated: ", str.String()) time.Time 序列化 https://www.cnblogs.com/chenqionghe/p/13409556.html 1 2 3 4 5 6 json.Marshal(struct { *User Password bool `json:"password,omitempty"` }{ User: user, }) 1 2 3 4 json.Marshal() // 序列化 + 格式化 resp2, _

msysgit

msysgit Choose the Run Git from the Windows Command Prompt option Choose the Checkout as-is, commit as-is option

nexus OSS

nexus OSS 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 # docker docker run \ -d \ --name nexus \ -p 30081:8081 \ -p 30083:8083 \ -v /etc/localtime:/etc/localtime:ro \ -v nexus-data:/nexus-data \ -e INSTALL4J_ADD_VM_PARAMS="-Xms128m -Xmx512m -XX:MaxDirectMemorySize=256m" \ sonatype/nexus3:3.65.0 # podman podman run \ -d \ --name nexus \ -p 30081:8081 \ -p 30083:8083 \ -v /etc/localtime:/etc/localtime:ro \

libvirt, virsh

libvirt, virsh libvirt virsh: command line utility 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 # archlinux install libvirt sudo pacman -S libvirt virt-install sudo pacman -S iptables-nft dnsmasq dmidecode systemctl status libvirtd sudo systemctl enable libvirtd

Brasero

Brasero Brasero是类Unix系统下的一个自由的光盘刻录程序,作为cdrtools,growisofs以及libburn (可选) 的图形化前端 (

Moving The Ctrl Key

Moving The Ctrl Key http://emacswiki.org/emacs/MovingTheCtrlKey Microsoft Windows AutoHotkey On Windows you can use the AutoHotkey program which uses “scripts” to remap the keyboard. This method has a couple benefits. One is scripts can be compiled to a stand alone .exe file which can be executed on a machine that doesn’t have AutoHotkey. Another is, the key re-mapping can be set to only apply in emacs; the caps lock key will behave normaly in every other program.

git 冲突解决, conflict, <<< === >>>

git 冲突解决, conflict, «< === »> 远程文件覆盖本地文件 git pull 出现冲突后丢弃本地冲突文件修改,采用远程文件覆盖本地文件 1 2 git checkout git checkout test/src/main/resources/spring-shiro.xml 方法二 git pull 出现冲突后可以暂

PCMCIA

PCMCIA PCMCIA是英文"PERSONAL COMPUTER MEMORY CARD INTERNATIONAL ASSOCIATION"的缩写,PCMCIA定义了三种不同型式的卡,它PC

javac, java

javac, java 1 2 3 4 5 public class Foo{ public static void main(String[] args) { System.out.println("foo"); } } 1 2 javac Foo.java java Foo https://zhuanlan.zhihu.com/p/36529847

java -cp

java cp http://quicker.iteye.com/blog/856722 java -cp .;c:dir1lib.jar Test -cp 和 -classpath 一样,是指定类运行所依赖其他类的路径,通常是类库,jar包之类,需要全路径到jar包,windows上分号”

fd, 文件描述符

fd, 文件描述符 查看系统级文件描述符/FD 限制 1 2 cat /proc/sys/fs/file-max sysctl -a | grep fs.file-max 查看 shell 级 fd 数 限制 1 2 3 4 # 用户 shell 里创建的进程的 fd 数限制 ulimit -a|grep 'open files' ulimit -Hn ulimit -Sn 查看某一运