cue文件(cuesheet)是指光盘映像(镜像)辅助文件或称标记文件,按照文本文件格式编制。它在刻录光盘映像文件时,起很重要的作用。它可以指挥刻录软件刻什么格式,刻录那些内容,从哪里开始,到哪里结束,附加什么信息等等、等等。有了cue文件,既可以减少刻录的准备工作以提高刻录效率,又可以保证刻录的准确性。
Continue reading CUE 文件格式
难死人不偿命!苹果8大笔试题及答案
苹果公司在招聘员工时,会向求职者问一些“可汗学院”(Khan Academy)提出的考验智商的谜题。你 可能没听说过“可汗学院”,但“可汗学院”的谜题被苹果采用一定是有其道理的。可汗学院由孟加拉裔美国人萨尔曼•可汗(Salman Kahan)创立,是一家由谷歌和比尔&梅琳达•盖茨基金会背后支持的教育性非营利组织,主旨在于利用网络影片进行免费授课,目前已经有关于数 学、历史、金融、物理、化学、生物、天文学等科目的内容。
Continue reading 难死人不偿命!苹果8大笔试题及答案
XP PPT resolustion
要大于96 dpi分辨率导出图片需添加注册表值:
1. 退出PPT
2. 运行regedit
3. 展开下面项:
HKEY_CURRENT_USERSoftwareMicrosoftOffice11.0PowerPointOptions
4. 选中“Options”项,在“编辑”菜单上指向“新建”,然后单击“DWORD”值
5. 键入ExportBitmapResolution, 然后按Enter
6. 选中ExportBitmapResolution,修改键值为300
7. 单击”十进制“,单击确定,退出注册表
ubuntu gedit3.4 乱码
gedit3.x版本设置
终端输入:
sudo apt-get install dconf-tools
dconf-editor /*不要加sudo,不然普通用户无权限调用这个配置*/
展开org/gnome/gedit/preferences/encodings
auto-detected的value中加入’GB18030′,加在uft8后面;
show-in-menu的value中加入’GB18030′
现在,您的 gedit 应该能够顺利打开 GB18030 编码的文本文件了。
gedit 3.X版本命令设置: gsettings set org.gnome.gedit.preferences.encodings auto-detected “[‘UTF-8′,’GB18030′,’GB2312′,’GBK’,’BIG5′,’CURRENT’,’UTF-16′]”
若提示没有auto-detected值则用candidate-encodings代替
有些文本是ISO8859,将‘ISO-8859-15‘也加入候选列。
mp3 linux 乱码
Install 宋体 on ubuntu
cd /usr/share/fonts/truetype
sudo mkdir cnfonts
sudo cp /home/*/*.ttf /usr/share/fonts/truetype/cnfonts/
sudo fc-cache -fv
sudo reboot
Continue reading Install 宋体 on ubuntu
Emotional Meaning of Colors
Have you ever been at a presentation where you could hardly make out what was on the screen because the presenter used colors that made it hard to tell what was text and what was background? Have you ever done this in one of your presentations?
Continue reading Emotional Meaning of Colors
Enable Hibernation in Ubuntu 12.04
Before enabling hibernation, please try to test whether it works correctly by running sudo pm-hibernate in a terminal. The system will try to hibernate. If you are able to start the system again then you are more or less safe to add an override.
Continue reading Enable Hibernation in Ubuntu 12.04
md5 python 2
#coding:utf-8
#python 检测文件MD5值
#python version 2.6
Continue reading md5 python 2
md5 python
#!/usr/bin/env python
#-*-coding:utf8-*-
”’
md5sum in Python
Author: Seven
Date: 2010/09/23
Support: seven.ling7@hotmail.com
”’
Continue reading md5 python