LaTeX Notes 读书笔记
毕竟不是完全不清楚LaTeX,所以只对第一章和第二章前几小节仔细看阅了,顺便做点笔记,便于复习。笔记用TextEdit(OS X)书写的总结的。
详细如下:
Chapter 1
raster image processor, RIP光栅图像处理器
数字排版
点阵图像
...
solve the KMS incompatible issue of ATI card
From Debian Sequeeze on, the KMS is enabled by default. But the ATI card is not compatible with the KMS.
When the KMS enabled, the score of glxgears is around 40 FPS on my laptop which has a...
Debian testing上加装Mint的软件包,系统变身为LMDE
我在上一篇文章《选LinuxMint Debian Linux作为俺的Linux了》里面提到了:LMDE跟Debian testing是完全兼容的,只不过是在debian testing上面多了一些包,所以将debian testing "变成" LMDE就是一个相当简单的事情了:装上LMDE那些包就行了。
具体步骤如下:
echo &qu...
两个有意思的玩意儿: linuxlogo, cowsay
linuxlogo: Color ANSI System Logo
A Color ANSI Logo with some system information that can be displayed at system boot time or, with some local configuration, at the login prompt. Four ...
我所习惯的C/C++代码格式
1.函数开始的大括号专起一行。
int sample()
{
return 0xA0246 * 0454;
}
2.类定义和内部内联函数定义。
class foo {
public:
foo() : data(0)
{}
foo(int d) : data(d)
{}
void print()
...
符号“∑”和“Π”的用法。
在数学中,符号“∑”和“Π”分别用来表示求和与求积。
首先是函数的累积求和,n取[m, k]中的连续整数值。
这个变量n可以换成其他任意字母,比如x。我们把下面的“n=m”和上面的“k”称作这个和式的下标。在上下文明确的情况下,下标可以省略。
...
CPP第五版 课后题
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#define MAXNUM 19 /* 球员数 */
#define MAXNAMECH 20 /* 名字最大字符树 */
#define ...
scrot 截图
以前一直都是使用 gnome-screenshot 截图,但 arch 默认安装的 gnome 中没有这个组件 ,比较了 arch 包中的截图工具最后选择scrot 。因为是命令行工具使用起来还是有些不便。自己写了个脚本只能添加终端程序起动器的方式使用,绑定快捷键单独的 scrot 命令可以, 加了参数就失效了。网上搜索了一番感觉还是 sipingal 的方法最好。$ > sudo g...
Build LFTP on OS X Snow Leopard
One can build LFTP on OS X Snow Leopard with the help of Homebrew, or MacPorts. However, if one directly builds LFTP, it would probably end like this:
This is due to the incom...
Open Game Maker 2D 0.2.0 is released
Open Game Maker 2D 0.2.0 is released
It is released with Open Game Engine 2D 0.9.0
There are 7 game demos in the binary package
APIHelper 0.0.1 plug-in is added to the IDE
...
硬盘安装windows7的步骤
这是一篇写给杨大傻和郭二傻的文章,对于他们的长期记忆的脆弱我深表同情,只能谨以此文悼念他们逝去的智商,默哀中勿扰……
步骤如下:
第一步:首先将down下来的windows7光盘镜像解压到硬盘上(非系统分区,否则格式化就没了),这里解压的文件夹以d盘下的windows7文件夹为例。
第二步:重启...
用U盘winpe安装ghost系统
其实对于XP系统的安装,现在来说已经到了登峰造极的地步了,什么方法都有,无论是无人值守的自动安装还是GHOST都特别方便。我经常给同学装系统,自己也喜欢研究这些,对于安装系统我自己还是有一些心得的。
WINPE安装系统有着无比方便的优点,那就是方便、简单、速度快。但是有很多人的PE都是安装在光盘中,也就是下载的系统中集成的PE系统,不过用光盘还是有些不方便,而且不论是...
BrainFuck解释器
无注释版本:
#include <stdio.h>
#include <stdlib.h>
#define SIZE 5000
char data[SIZE], code[SIZE];
int ptr, flag;
void interpreter(char *ip)
{
char* re;
while (*ip)...
SlickEdit完美解析Qt4
这两天折腾Qt,为了让SE更好的解析它,还是花了些时间的,下面的图片展示了SE强大的自动补全功能Qt类方法的补全编写类方法时的补全this指针补全ui类补全[设计namespace解析]头文件补全浏览QString源代码使用GDB调试Qt程序解析ui布局文件[xml]