1、ps到pdf
gswin32c -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -otest.pdf test.ps
2、xps到pdf
gxpswin32-xxx.exe -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=test.pdf test.xps
Learn and share.
1、ps到pdf
gswin32c -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -otest.pdf test.ps
2、xps到pdf
gxpswin32-xxx.exe -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=test.pdf test.xps
今天配置Emacs时,发现Emacs无法使用SBCL,其默认为lisp。
会报下面的错误:
Searching for program: no such file or directory, lisp
这个问题可以用一个变通的方法解决,在Emacs路径下建立下面的文件:
lisp.bat
@rem start sbcl D:\CommonLisp\sbcl-1.1.17\sbcl.exe --core "D:\CommonLisp\sbcl-1.1.17\sbcl.core"
然后就可以使用啦。
还是linux下面简单一些,符号链接直接搞定:
ln -s /usr/bin/clisp /usr/bin/lisp
今天打开Evernote后更新失败,并提示:
Synchronization failed. Invalid username or password.
除了升级了一下,还真没做什么,准备退出再登陆,又怕本地修改丢失,查了下,最后发现:
关闭Evernote后,运行命令行
Evernote.exe /NoLastLogin
重新登录就好啦:)
ADT:
https://dl-ssl.google.com/android/eclipse/
DLTK:
http://download.eclipse.org/technology/dltk/updates/
PyDev:
http://pydev.org/updates
EPIC:
http://e-p-i-c.sf.net/updates
PDT:
http://download.eclipse.org/tools/pdt/updates/2.0
http://download.eclipse.org/tools/pdt/updates/3.0/milestones/
指定JDK
eclipse.exe -vm D:\JavaJDK\jdk1.7.0_06\bin\javaw.exe
用记事本将xml文件另存为UTF-8格式,使用XML解析器解析时总出现::::1:1:0:Content is not allowed in prolog的错误。
用vim查看文件内容,发现在文件头多出了0xfe0xff。
删除,问题解决。