跳至主要内容

博文

目前显示的是 十二月, 2015的博文

工具党:Routers

Router 是一种常见的木工工具,主要有两种—— plunge router 和 fixed router。 根据 [laopi 的博客](http://blog.wenxuecity.com/myblog/34276/200912/26860.html) 介绍, > 顾名思义,fix router就是router的bit在切割的过程中不能上下移动,plunger router可以, > fix router有一个可以微调的机构,固定在router table上以后,可以慢慢调节bit的高度, > plunge的虽然也可以用于router table,不过因为完全是靠手的压力来调节,实际用起来很困难, > 现在的很多都会带两种base,这样一个router可以当2个使用,不过我建议还是各买一个, > 一个功率大的固定在router table上,另一个用于其他的用途,这样减少了很多使用上的麻烦, > 因为plunge的可以在某种程度上替代fix的,而fix却不能代替plunge的,所以, > 如果你的预算只能买一个,那就只能买plunge的。 Router 的功率越大价格就越高。在使用直径大的 bit (钻头)的时候,功率越大效果就越好。 不过功率越大也就意味着手动控制难度越高,最好是安置在 Router Table 上使用。 Router 可以搭配很多 bits 来使用,不同的 bit 作用不一,而且尺寸也可能大不同——通常 使用 bit 的直径来衡量,术语是 shank。在使用直径较小的 bit 的时候,可以设定在较高的转速, 反之若是使用直径较大的 bit 那么应当配合较低的转速。大部分的 router 的转速都是可以调节的。 关于 router bits,laopi 建议开始买一套基本款,价格便宜量又足。此后如果发现缺少哪一种可以慢慢添置。以下还是摘录自 laopi 的文章: 市场上router bit的种类非常多,价格差别也大,买上几百个可能还会发现没有买全,router bit的区别除了牌子以外,还有 1. 材质 现在的可能至少都是号称carbide tipped,很少有high steel的了,有些还是全部carbide的,价格很贵,不过carbide本身很脆,掉到地上很可能就一分...

工具党:圆锯探究

Bunnings 上的锯子一堆一堆的,各式各样都有。作为有志于学习手工技术的工具党,自然免不了钻研一番。 ![Circular Saw](http://www.skiltools.com/Parts-And-Service/PublishingImages/CircularSaw1.jpg) 今天花了点儿时间看 Circular Saw (圆锯)相关的资料,总结整理如下—— > As a rule of thumb, the depth of cut is equal to one third of the blade diameter, > plus a bit! For example, depending on the brand, a 185mm circular saw will cut > to a depth of about 64mm to 66mm, a 235mm circular saw will cut to a depth of > around 83mm to 85mm and a 160mm model will be in the vicinity of 54 mm. 简单来说,先看圆锯的锯片,通常直径为 185mm 的锯片可以切割的木料深度可达约 60mm,这意味着可以用来 切割 bench top (厨房料理台面板,通常都很厚实)这样的厚度,对于家用来说应该是足够了。 另外值得一提的是,随着圆锯一起购入的锯片通常都不会很优秀,如果在切割的时候觉得不顺手或是很费力,不妨 另外购入价格高一些的锯片,毕竟是一份价钱一分货…… 有人推荐了 [Diablo 的锯片](http://www.bunnings.com.au/diablo-184mm-40t-circular-saw-blade-_p6370355)。 从品牌来看,Bosch 和 Markita 都算是不错的。此外,如果锯片直径一样,那么功率越大理论上切割起来应该越高效。 ![Makita 1800W 185mm](https://2ecffd01e1ab3e9383f0-07db7b9624bbdf022e3b5395236d5cf8.ssl.cf4.rackcdn.com/Product-190x190/0cd65f9b-750...

VIM Bundle - a plugins manager

[Vundle](https://github.com/VundleVim/Vundle.vim) 是一个为 VIM 设计的插件管理器, 这个名字其实就是 VIM Bundle 的缩写。 第一步是下载 Vundle.vim 文件,可以直接从 GitHub 上克隆: $ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 首先要加载 Vundle,要为 VIM 的 runtime path 添加指向 Vundle.vim 的路径, filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins " call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'gmarik/Vundle.vim' 接着指定需要哪些插件 (plugins) " The following are examples of different formats supported. " Keep Plugin commands between vundle#begin/end. " plugin on GitHub repo Plugin 'tpope/vim-fugitive' " plugin from http://vim-scripts.or...