清理不用的软件包

Nov 05, 2017 03:46:16 PM

sudo pacman -Rns $(pacman -Qtdq)
 

Redshift自动调节屏幕亮度

Nov 04, 2017 06:48:48 PM

Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night.

Redshift 是一个有意思的小程序,它能根据你的环境来调节电脑屏幕的色温。如果你长时间坐在电脑前盯住屏幕,那么使用 Redshift 可使你的眼睛免受更大的伤害。

Archlinux:

yaourt -S redshift

然后添加到自启动

https://github.com/jonls/redshift

R中的排列组合

Feb 26, 2014 04:27:32 PM

组合: 从N中选择K个,用函数 choose(N,K)

阶乘:factorial(N) 

排列:P(N,K)=choose(N,K) * factorial(K)

 

继续阅读

windows下使用aria2c下载

Feb 24, 2014 07:35:37 PM

首先下载aria2c windows版本程序

http://sourceforge.net/projects/aria2/

解压后,复制到系统windows目录下。

在下载目录建立aria2c.bat文件:

@echo on
start aria2c --enable-rpc --rpc-listen-all=true --rpc-allow-origin-all --dir=F:\soft\ --file-allocation=none -s 5 -j 3 -x 5 -c -D

如果你用chrome浏览器,可以安装YAAW插件。

设置YAAW监控地址为: http://127.0.0.1:6800/jsonrpc

如此,打开aria2c.bat,在浏览器里就可以在下载地址右键发送到YAAW。

ubuntu wqy 文泉译

Feb 21, 2014 02:00:12 PM

sudo apt-get install xfonts-wqy ttf-wqy-zenhei ttf-wqy-microhei ttf-dejavu

sudo apt-get install unity-tweak-tool

unity-tweak-tool
#可配置系统,包括字体

sudo使用命令补全功能

Feb 21, 2014 04:12:43 AM

首先安装bash-completion,然后将系统的bashrc复制到用户目录,并添加一条命令:

sudo apt-get install bash-completion
cp /etc/bash.bashrc ~/.bashrc
gedit .bashrc
#添加一行:
source /etc/bash_completion

#关闭,退出终端,重新打开就可以了。

GoAgent_Linux

Jan 11, 2014 01:00:44 PM

这里以ubuntu系统为例,其他Linux系统自行根据对应系统安装命令安装所需模组 ××××简化版××××

Notice: 其他系统可能需要自行解决相关依赖问题

MAC用户可以使用GoAgentXBreakWall

继续阅读

Archlinux 添加 GoAgent 代理

Dec 24, 2013 01:18:14 AM

1.安装软件:
```

yaourt -S openssh

yaourt -S goagent


2.设置:

vi /usr/share/goagent/local/goagent.ini


修改[gae]栏的appid 为申请的AppID,如:

[gae]
appid = yourappid

3.上传:

cd /usr/share/goagent/server/

python2 uploader.zip

```
按照提示输入AppID,Gmail,和专用密码。

4.使用:

启动和停止GoAgent服务

$ sudo systemctl start/stop goagent

设置开机启动
```

systemctl enable/disable goagent

```

VimEditMarkdown

Dec 20, 2013 06:50:40 PM

使用Vim编辑markdown文件,给Vim增加markdown语法识别的支持。

1.安装管理插件的插件 pathogen.vim

```bash
mkdir -p ~/.vim/autoload ~/.vim/bundle; \
curl -Sso ~/.vim/autoload/pathogen.vim \
https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim
```

继续阅读

Ghost On Openshift

Dec 20, 2013 06:43:53 PM

安装Ghost

首先,你需要的是一个Openshift的账号,点我注册。就是填邮箱密码然后登录邮箱激活神马的,就不叙述了。

继续阅读