2013年5月

Windows8修改账户目录

Windows8下的用户目录如果为中文名,可能会造成某些软件不能正常使用。

开启Administrator账户

计算机(右键) - 管理 - 本地用户和组 - 用户QQ截图20130528214826.png

更改目录名称和注册表

使用Administrator账户登录,修改 /Users/[中文] 为 /Users/[English],若遇到文件夹正在被使用的情况可以使用procexp查出进程并结束。QQ截图20130528214657.png

修改注册表, Win + r , regedit

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Profilelist
// 找到下面的 ProfileImagePath 修改成上面刚改过的英文路径。

设置权限

/Users/[English] (右键)- 安全 - (选中用户)编辑QQ截图20130528220300.png

至此全部搞定。

cython将python转换为c

选择

之前使用过pyinstaller打包python程序,但是遇到读取相对路径下的配置文件的问题,而且这些只是预编译成python的2进制码。

选择cython和pyinstaller的原因主要考虑的是批量部署的方便性。cython能直接将python翻译成c,然后编译,在安全性上有了一定的保障。

安装cython

选择最简单的安装方法,使用pip包管理

pip install cython
# 在网上找的一个脚本,感觉很好用的,这里直接编译成可执行程序
mkcython.sh -e main.py

mkcython.sh.zip

pygments生成图片中的中文

先上图片:preview.png

非要中英文都有的字体么

说实话,原生的“中英文都有的”字体,都不是很适合用来显示代码。而网上有个雅黑和consolas的混合字体,但感觉对字体的依赖性比较大

pygments有个好处,就是本来就支持高亮的结果存为图片,于是要对其进行修改,让他用不用的字体来渲染中文和英文。

code = '''
#!/usr/bin/env python
# encoding: utf-8

from pygments import highlight
from pygments.lexers import PythonLexer
from pygments.formatters import ImageFormatter
# 可以有中文么a可以的
code = ""
content = highlight(code, PythonLexer(), ImageFormatter(font_name = 'WenQuanYi Zen Hei'))
with open('a.png', 'wb') as handle:
	handle.write(content)
	handle.close()
'''.decode('utf-8')
# content = highlight(code, PythonLexer(), ImageFormatter(font_name = 'Consolas', line_numbers = False, font_size = 20))
content = highlight(code, PythonLexer(), ImageFormatter(font_name = 'Consolas', cfont_name = 'Microsoft Yahei', line_numbers = False, font_size = 20, cfont_size = 13))
with open('a.png', 'wb') as handle:
	handle.write(content)
	handle.close()

我修改了一下image的生成,在原来的基础上加了两个参数cfont_name, cfont_size

原理就是分离出中文,然后使用中文字体渲染,而英文使用英文字体渲染。

[Laravel4] 实战之短网址

数据库表结构

CREATE TABLE `u_links` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) NOT NULL DEFAULT '',
  `hash` varchar(32) NOT NULL,
  `hits` int(10) unsigned NOT NULL DEFAULT '0',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

虽然理论上url可以很长,但是这里约束一下255

目录结构

这里仅列出需要动到的目录和文件

app/config             配置文件目录
app/controllers        控制器
app/models             模型
app/views              视图
app/lib                自己建的,方便放一些公用库
app/routes.php         路由

代码

对于短网址的算法不再说明,网上很多,这里使用base62来处理

配置文件

app/config/app.php

  1. 打开debug
  2. 修改时区为'Asia/Shanghai'
  3. 修改key,可使用artisan生成php artisan key:generate

app/config/database.php

  1. 修改mysql的配置

定路由

// 显示首页
Route::get('/', 'HomeController@index');
// 网址转向
Route::get('{shorten}', 'HomeController@redirect')
	->where('shorten', '[0-9A-z]+');
// 网址点击统计
Route::get('{shorten}!', 'HomeController@show')
	->where('shorten', '[0-9A-z]+');

控制器

由于HomeController本身就存在,所以我们不需要生成或新建。 这里我们会用到base62的库,附件中会给出QQ20130519-2.png

贴代码:

public function index() {
	$shorten = '';
	$url = Input::get('url');
	if (!is_null($url)) {
		$validator = Validator::make(compact('url'), [
				'url' => 'required|max:255|url',
			]);
		if ($validator->fails())
			return Redirect::to('/')->withInput()->withErrors($validator->errors());
		$hash = md5($url);
		$link = Link::whereHash($hash)->first();
		if (!$link)
			$link = Link::create(compact('url', 'hash'));
		$shorten = \Lib\Base62::encode($link->id);
	}
	return View::make('home.index')
				->with(compact('url', 'shorten'));
}
public function redirect($shorten) {
	$id = \Lib\Base62::decode($shorten);
	$link = Link::find($id);
	if ($link) {
		$link->increment('hits');
		return Redirect::to($link->url, 301);
	}
	App::abort(404);
}
public function show($shorten) {
	$id = \Lib\Base62::decode($shorten);
	$link = Link::find($id);
	if ($link) {
		return View::make('home.show')
					->with($link->toArray());
	}
	App::abort(404);
}

Base62.zip

[Laravel4] 安装

安装composer

# 由于使用的MAMP,指定php
export PATH=/Applications/MAMP/bin/php/php5.4.10/bin:$PATH

mkdir /Applications/composer
cd /Applications/composer

curl -sS https://getcomposer.org/installer | php
mv composer{.phar,}
# PATH加路径
vi ~/.zshrc
# :/Applications/composer
. ~/.zshrc

安装laravel4

# 用git://没成功,可能是公司端口的原因
git clone -b develop https://github.com/laravel/laravel.git l4
cd l4
composer install

2013/06/22 22:37更新

不加--prefer-dist的话安装下来有100多M

composer create-project laravel/laravel . --prefer-dist