-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
975 lines (471 loc) · 25.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Geek Woodworker</title>
<meta name="author" content="靖天">
<meta name="Generator" content="Jekyll & Octopress (http://octopress.org)">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://ifq.github.com/">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<script src="/javascripts/octopress.min.js" type="text/javascript"></script>
<link href="/atom.xml" rel="alternate" title="Geek Woodworker" type="application/atom+xml">
<!--Fonts from Google's Web font directory at http://google.com/webfonts -->
<link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
<!-- 9jBDGwX2G-7pQ39zs-wElUxm5Tg -->
<meta name="alexaVerifyID" content="9jBDGwX2G-7pQ39zs-wElUxm5Tg" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33860711-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<link href="/octopress-favicon.png" rel="icon">
</head>
<body >
<header role="banner"><hgroup>
<h1><a href="/">Geek Woodworker</a></h1>
<h2>一个热爱木工的软件工程师</h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:ifq.github.com" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main">
<li><a href="/">主页</a></li>
<li><a href="/archives">所有文章</a></li>
<li><a href="/blog/categories">类别</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2013/05/12/jewelrybox-for-wk/">一个小盒子的诞生</a>
</h1>
<p class="meta">
<time datetime="2013-05-12T00:00:00+08:00" pubdate data-updated="true">May 12<span>th</span>, 2013</time>
• <a rel="bookmark" href="/blog/2013/05/12/jewelrybox-for-wk/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
如果你有看过我之前的<a href="http://ifq.github.io/blog/2013/03/23/cage-for-kira/">blog</a> 我正在做一个龙猫的柜笼。不过好友结婚,我决定自己做个小礼物送给他们–一个用来装戒指之类小东西的盒子,inspired by Roy Underhill‘s TV show. 你可能也看过underhill的节目,一个传统的美国人,留着两撇胡子,风趣而充满干劲。在一期节目里,他专门教大家怎么做这样一个带锁扣的小盒子。不过他是拿这个盒子装动物油脂的(油脂用来涂抹刨子底部或者锯刃,起到润滑的作用)。不过我觉得这么精巧的盒子用来装猪油太浪费了,于是绿檀的戒指盒就诞生了。
</p>
<p>
<img class="" src="/rc/2013-05-12/IMG_5587.JPG" width="800" height="600" alt="靖天绿檀戒指盒V2.0">
</p>
</div>
<footer>
<p><a class="comments-link" href="/blog/2013/05/12/jewelrybox-for-wk/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2013/05/12/jewelrybox-for-wk/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2013/05/12/jewelrybox-for-wk/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2013/05/01/emacs-modify/">最近修缮了下emacs</a>
</h1>
<p class="meta">
<time datetime="2013-05-01T00:00:00+08:00" pubdate data-updated="true">May 1<span>st</span>, 2013</time>
• <a rel="bookmark" href="/blog/2013/05/01/emacs-modify/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
emacs这东西,深啊。
身边没有人交流,孤独啊。
很多功能都是凑合着用,焦急啊。
趁着五一优化了一下配置,清爽啊。
</p>
<div id="outline-container-1" class="outline-2">
<h2 id="sec-1">magit</h2>
<div class="outline-text-2" id="text-1">
<p> 公司一直还没导入git,所以一直也没去尝试。最近貌似要导入了,于是认真学
习了下。另外看了youtube上linus对subversion的强烈鄙视,subversion顿时
一无是处啊。
</p>
<p>
公司还在用svn,因此考虑本地用git管理代码,于是发现了git-svn。一个分支
下多个branch,本地空间立马节省了许多,管理的代码也清晰了。之前为了解一
个bug,需要下一份特定版本的代码,修改之后又不一定commit。本地的修改越
积越多,占有空间不说,时间长了还不知道改了什么。
</p>
<p>
导入了git,相应的emacs下也就导入了相应的mode,magit。绑定F10到
magit-status,M-F10 到 Magit-log。目前用起来感觉还是很爽。本地的脚本、
配置也终于使用SCM管理起来了,心里舒坦多了。
</p>
<p>
如果你也和我一样,还没有用过分布式的版本控制,建议你试试git。
</p>
</div>
</div>
<div id="outline-container-2" class="outline-2">
<h2 id="sec-2">auto-complete</h2>
<div class="outline-text-2" id="text-2">
<p> 之前陆陆续续用过几次AC mode,但是由于各种的问题(要么是速度奇慢,要么
是和YASnippet冲突神马的)又懒得解决就放弃了。这次重新编译了 24.3 的
emacs之后,决定重新试试。。
</p>
<p>
和gccsense,自动不全结构体成员的功能还是弄不起来。不知道gccsense的配
置还有哪里不对。暂时还是配合gtags来进行补全。目前没有经常编码,所以
需求不是很高,所以又偷懒了。速度慢的问题也没有了,原因不明。。
</p>
<p>
总之先用用看把。
</p>
</div>
</div>
<div id="outline-container-3" class="outline-2">
<h2 id="sec-3">smex</h2>
<div class="outline-text-2" id="text-3">
<p> 使用ido的模式为 M-x 补全的功能,挺实用。推荐!
</p>
<p>
“` elisp 配置代码
(require ‘smex) ; Not needed if you use package.el
(smex-initialize) ; Can be omitted. This might cause a (minimal) delay
; when Smex is auto-initialized on its first run.
(global-set-key (kbd “M-x”) ‘smex)
(global-set-key (kbd “M-X”) ‘smex-major-mode-commands)
;; This is your old M-x.
(global-set-key (kbd “C-c C-c M-x”) ‘execute-extended-command)
“`
</p>
<p>
算我孤陋寡闻,才知道<a href="https://github.com/technomancy/emacs-starter-kit">emacs-starter-kit</a>。 要是一开始学emacs的时候知道
这么好的初学者工具该多好啊。smex也是包含在其中的工具。
</p>
</div>
</div>
<div id="outline-container-4" class="outline-2">
<h2 id="sec-4">emacs-color-theme-solarized</h2>
<div class="outline-text-2" id="text-4">
<p> 这个也是<a href="https://github.com/technomancy/emacs-starter-kit">emacs-starter-kit</a> 里包含的东西,是emacs的主题。之前emacs23的
时候还是用扩展的 color-theme.el,现在可以不用那个了,直接用系统自带
的。这个theme的配色考虑的比较全面,看起来很和谐。
</p>
<p>
<img class="" src="/rc/emacs-color-theme.png" width="800" height="600" title="emacs-color-theme-solarized" alt="效果解图">
</p>
</div>
</div>
<div id="outline-container-5" class="outline-2">
<h2 id="sec-5">feng-highlight</h2>
<div class="outline-text-2" id="text-5">
<p> 本来在看idle-highligh-mode,无意间浏览到了shenfeng的<a href="http://shenfeng.me/highlight-thing-under-cursor.html">这篇博客</a>。 试用
了一下感觉不错。
</p>
<p>
在一个词上 M-i,即高亮现实所以相同的地方;还可以用M-n/p来上下导航,
M-r来替换。一看就是实用注意者啊,其实这点子我也有想过,但是我基本不
会lisp,所以这种想法都基本上立马忽略。但是有了这种功能确实很爽。
</p>
</div>
</div>
</div>
<footer>
<p><a class="comments-link" href="/blog/2013/05/01/emacs-modify/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2013/05/01/emacs-modify/">View comments »</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2013/04/20/noppoo-keyboard/">Noppoo Keyboard</a>
</h1>
<p class="meta">
<time datetime="2013-04-20T00:00:00+08:00" pubdate data-updated="true">Apr 20<span>th</span>, 2013</time>
• <a rel="bookmark" href="/blog/2013/04/20/noppoo-keyboard/">Permalink</a>
</p>
</header>
<div class="entry-content"></div>
<footer>
<p><a class="comments-link" href="/blog/2013/04/20/noppoo-keyboard/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2013/04/20/noppoo-keyboard/">View comments »</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2013/03/23/cage-for-kira/">龙猫柜笼制作系列-1</a>
</h1>
<p class="meta">
<time datetime="2013-03-23T00:00:00+08:00" pubdate data-updated="true">Mar 23<span>rd</span>, 2013</time>
• <a rel="bookmark" href="/blog/2013/03/23/cage-for-kira/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
首先澄清,这里说的龙猫,其实跟猫没有关系。很多朋友见了都说:哪里是猫,明明是老鼠嘛。实际是它确实是鼠,学名美洲栗鼠,哺乳纲啮齿目豪猪亚目毛丝鼠科动物。因为样子和宫崎骏动画中的龙猫造型酷似,所以被人们叫做龙猫。
</p>
<p>
<img class="" src="/rc/2013-03-26/IMG_5245.JPG" width="800" height="600" title="龙猫吃草图" alt="咱家的龙猫kira">
</p>
<p>
<img class="" src="/rc/2013-03-26/IMG_5250.JPG" width="800" height="600" title="龙猫吃草图" alt="吃草卖萌两不误">
</p>
</div>
<footer>
<p><a class="comments-link" href="/blog/2013/03/23/cage-for-kira/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2013/03/23/cage-for-kira/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2013/03/23/cage-for-kira/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2013/01/16/bedlamp/">悬挂式床头灯</a>
</h1>
<p class="meta">
<time datetime="2013-01-16T00:00:00+08:00" pubdate data-updated="true">Jan 16<span>th</span>, 2013</time>
• <a rel="bookmark" href="/blog/2013/01/16/bedlamp/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
床头一直缺个灯,看书不方便,但是一直也没买。原因是有了木工这个爱好之后,什么东西都琢磨着用木头能不能做。于是一直在想用木头做一个什么样的床头灯。设计是一个很有意思但有时候会令人头大的事情。有限的工艺和材料下,想做出定制的东西,能满足功能,又要好用,还要尽量新颖。有时候天马行空想了很多方案,最终不是实现不了,就是造价太高,或者不确定做出来的东西是否实用。
</p>
<p>
所以我想很多东西是需要一代一代演化的,做出一个原型,再慢慢改进。以下就是我的第一代悬挂式的床头灯。
</p>
<p>
<img class="" src="/rc/2013-01-16/P1165012.JPG" width="800" height="600" >
</p>
</div>
<footer>
<p><a class="comments-link" href="/blog/2013/01/16/bedlamp/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2013/01/16/bedlamp/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2013/01/16/bedlamp/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2012/11/10/ps-memo/">802.11协议节电学习memo</a>
</h1>
<p class="meta">
<time datetime="2012-11-10T00:00:00+08:00" pubdate data-updated="true">Nov 10<span>th</span>, 2012</time>
• <a rel="bookmark" href="/blog/2012/11/10/ps-memo/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
根据802.11-2012标准中,章节 <code>10.2 Power management</code> 中的描述,目前 802.11协议中存在的节电技术有以下几种:
</p><table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption></caption>
<colgroup><col class="left" /><col class="left" /><col class="left" />
</colgroup>
<thead>
<tr><th scope="col" class="left">节电方式</th><th scope="col" class="left">介绍</th><th scope="col" class="left">引入时间</th></tr>
</thead>
<tbody>
<tr><td class="left">PS-Poll</td><td class="left">通过PS-Poll报文通告AP发送缓存的报文</td><td class="left">802.11</td></tr>
<tr><td class="left">S-APSD</td><td class="left">配合QoS工作,AP按照事先协商的时间片发送缓存报文</td><td class="left">802.11e</td></tr>
<tr><td class="left">U-APSD</td><td class="left">配合QoS工作,STA发送Trigger报文通知AP发送缓存报文</td><td class="left">802.11e</td></tr>
<tr><td class="left">PSMP</td><td class="left">AP通过发送单个PSMP帧i组织所有STA的缓存报文收发</td><td class="left">802.11n</td></tr>
<tr><td class="left">TDSL Peer PSM</td><td class="left">未了解,SDK中未找到</td><td class="left">802.11n(?)</td></tr>
<tr><td class="left">WNM Sleep</td><td class="left">协议中可选内容,SDK中未找到</td><td class="left">未知</td></tr>
<tr><td class="left">SM Power Save</td><td class="left">通过关闭多条receive chains中一部分来省电</td><td class="left">802.11n</td></tr>
</tbody>
</table>
</div>
<footer>
<p><a class="comments-link" href="/blog/2012/11/10/ps-memo/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2012/11/10/ps-memo/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2012/11/10/ps-memo/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2012/10/29/upgrade-octopress/">更新octopress博客系统后的笔记</a>
</h1>
<p class="meta">
<time datetime="2012-10-29T00:00:00+08:00" pubdate data-updated="true">Oct 29<span>th</span>, 2012</time>
• <a rel="bookmark" href="/blog/2012/10/29/upgrade-octopress/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
octopress的博客系统使用有一段时间了。总体很满意,发博客也渐渐上手了。但是也还有些小问题困扰。比如导入过往blog之后,总共的post量比较大,每次generate的时候耗时很长;比如comment数量总是显示为零。
</p>
<p>
关于前一个问题,目前还没有找到很好的解决方案,再等等看octopress自己会不会改进这个问题吧。关于comment数量的显示,查到这个bug实际已经解决,但是需要升级到2.1 的branch才行(之前是master分支,是2.0)。于是对博客系统进行了升级,过程这里不复述了,可以参考<a href="http://octopress.org/docs/updating/">官方指南</a> 。但是要注意merge的时候自己定义的一些改动会不会被覆盖,样式表、页脚链接之类。
</p>
<p>
最终结果,comment的问题解决了,theme最后换回了classic界面。。大众一点也好,UI更友好。后边空闲的时候可以加点logo之类的装饰下。以下是几点memo,供参考。
</p>
<ul>
<li>upgrade octopress <br/>
如果你使用 <code>git pull octopress 2.1</code> 更新时,提
示没有相应的 repo,那么说明你和我一样,需要以下的命令首先把octopress
添加到remote的repo列表。
<figure class='code'><div class='highlight'><table><td class='gutter'><pre class='line-numbers'><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class='plain'><span class='line'>git remote add octopress https://github.com/imathis/octopress.git</span></code></pre></td></tr></table></div></figure>
</li>
</ul>
</div>
<footer>
<p><a class="comments-link" href="/blog/2012/10/29/upgrade-octopress/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2012/10/29/upgrade-octopress/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2012/10/29/upgrade-octopress/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2012/10/28/roubo-workbench-5/">Roubo Style Workbench - 靖天木工桌 5/5</a>
</h1>
<p class="meta">
<time datetime="2012-10-28T00:00:00+08:00" pubdate data-updated="true">Oct 28<span>th</span>, 2012</time>
• <a rel="bookmark" href="/blog/2012/10/28/roubo-workbench-5/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
敢鸭子上架,尽管有各种的问题,但是总装的时刻还是来了~ 上周末终于把 End vise 和 leg vise 都装上了;所有腿部的横梁也都固定了;靖天木工桌终于站起来了~ 以下的内容比较凌乱,请读者自行缓存并排序~
</p>
<p>
腿钳使用两张3cm的板子粘接而成,下面的那根垂直的我不知道该怎么称呼,就叫slide guide吧。。是用木地板的废料做的。
</p>
<p>
<img class="" src="/rc/2012-10-28/PA214446.JPG" width="600" alt="腿钳刚做好的样子">
</p>
<p>
<img class="" src="/rc/2012-10-28/PA214447.JPG" width="600" alt="起初担心那根guide不能很好的垂直于面板,结果却异常的好">
</p>
<p>
等待leg vise粘接的过程中,开始安装end vise。考虑尽量加大夹持深度,所以vise没有直接装在桌面底面,而是加了6cm的木块垫低。(实践证明效果不怎么好)
</p>
<p>
<img class="" src="/rc/2012-10-28/PA214448.JPG" width="600" alt="end vise 装上的效果,此时还缺少一边的夹持面">
</p>
</div>
<footer>
<p><a class="comments-link" href="/blog/2012/10/28/roubo-workbench-5/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2012/10/28/roubo-workbench-5/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2012/10/28/roubo-workbench-5/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2012/10/20/roubo-workbench-4/">Roubo Style Workbench - 靖天木工桌 4/5</a>
</h1>
<p class="meta">
<time datetime="2012-10-20T00:00:00+08:00" pubdate data-updated="true">Oct 20<span>th</span>, 2012</time>
• <a rel="bookmark" href="/blog/2012/10/20/roubo-workbench-4/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
This is just a quick update about my prograss.
</p>
<p>
这两周速度比较慢,其实就做了一件事情–开榫眼。大小共12个榫眼。
</p>
<p>
<img class="" src="/rc/2012-10-18/PA144348.JPG" width="600" title="开好的榫眼" alt="先用钻头,再用凿子。只可惜当时还没有用上在淘宝买的新钻头,不然应该会快一些">
</p>
</div>
<footer>
<p><a class="comments-link" href="/blog/2012/10/20/roubo-workbench-4/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2012/10/20/roubo-workbench-4/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2012/10/20/roubo-workbench-4/">继续阅读 →</a></p>
</footer>
</article>
<article >
<header>
<h1 class="entry-title">
<a href="/blog/2012/10/09/roubo-workbench-3/">Roubo Style Workbench - 靖天木工桌 3/5</a>
</h1>
<p class="meta">
<time datetime="2012-10-09T00:00:00+08:00" pubdate data-updated="true">Oct 9<span>th</span>, 2012</time>
• <a rel="bookmark" href="/blog/2012/10/09/roubo-workbench-3/">Permalink</a>
</p>
</header>
<div class="entry-content"><p>
十一结束了,木工桌的雏形也呈现出来了。不过上班之后进度也慢下来了,不知道这个月能不能搞定了。十一后边两天的进展先跟大家说说。
</p>
<p>
<img class="" src="/rc/2012-10-07/PA044124.JPG" width="600" title="刨桌腿" alt="四个桌腿粘好了,刨成四方是一个大工程">
</p>
<p>
由于粘合之前只刨了粘接的面,所以粘好的腿是各种扭曲的。不过比想象中轻松的是这种没有刨光的木料其实也不难刨,当时买的时候还有点犹豫。外边卖的成品的木方,没有刨过的木料尺寸会更大点,比较适合做腿。
</p>
<p>
<img class="" src="/rc/2012-10-07/PA054125.JPG" width="600" title="四面刨好的桌腿" alt="经过5,6个小时的战斗,四个腿终于分两天搞定了">
</p>
</div>
<footer>
<p><a class="comments-link" href="/blog/2012/10/09/roubo-workbench-3/#disqus_thread" data-disqus-identifier="http://ifq.github.com/blog/2012/10/09/roubo-workbench-3/">View comments »</a></p>
<p><a rel="full-article" href="/blog/2012/10/09/roubo-workbench-3/">继续阅读 →</a></p>
</footer>
</article>
<div class="pagination">
<a class="prev" href="/blog/page/2/">← Older</a>
<a href="/archives/">Blog Archives</a>
</div>
</div>
<aside class="sidebar">
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="/blog/2013/05/12/jewelrybox-for-wk/">一个小盒子的诞生</a>
</li>
<li class="post">
<a href="/blog/2013/05/01/emacs-modify/">最近修缮了下emacs</a>
</li>
<li class="post">
<a href="/blog/2013/04/20/noppoo-keyboard/">Noppoo Keyboard</a>
</li>
<li class="post">
<a href="/blog/2013/03/23/cage-for-kira/">龙猫柜笼制作系列-1</a>
</li>
<li class="post">
<a href="/blog/2013/01/16/bedlamp/">悬挂式床头灯</a>
</li>
</ul>
</section>
<section>
<h1>Categories</h1>
<ul id="category-list">
<li><a href='/blog/categories/binary'>binary (10)</a></li><li><a href='/blog/categories/cool'>cool (1)</a></li><li><a href='/blog/categories/handtool'>handtool (4)</a></li><li><a href='/blog/categories/ieee802-11'>IEEE802.11 (1)</a></li><li><a href='/blog/categories/legacy'>legacy (279)</a></li><li><a href='/blog/categories/octopress'>octopress (2)</a></li><li><a href='/blog/categories/orgmode'>orgmode (2)</a></li><li><a href='/blog/categories/other'>other (1)</a></li><li><a href='/blog/categories/woodworking'>woodworking (14)</a></li><li><a href='/blog/categories/workbench'>workbench (5)</a></li>
</ul>
</section>
<section>
<h1>Recent Comments</h1>
<div id="dsq-recentcomments" class="dsq-widget"><script type="text/javascript" src="http://disqus.com/forums/ifq/recent_comments_widget.js?hide_avatars=1"></script></div>
</section>
<section>
<iframe frameborder="0" scrolling="no" src="http://show.v.t.qq.com/index.php?c=show&a=index&n=Jingtianwang&w=0&h=548&fl=2&l=30&o=25&co=4&cs=C0C0C0_F2F2F2_4E5959_99A4AD" width="100%" height="548"></iframe>
</section>
</aside>
<center><a href="http://www.freedomain.co.nr/" title="Free Domain Name"><img src="http://ecozooa.imdrv.net/soof62.gif" alt="Free Domain Name" style="width:88px;height:31px;border:0;" /></a><a href='http://www.urlfan.com/?via=b' ><img src='http://i.urlfan.com/?r=7ec49' border=0></a><a href="https://plus.google.com/115086707443303900229" rel="publisher">在 Google+ 上关注我们</a></center>
</div>
</div>
<footer role="contentinfo">Copyright © 2013
靖天
(一个热爱木工的软件工程师)
</footer>
<script src="/javascripts/slash.js"></script>
<script type="text/javascript">
var disqus_shortname = 'ifq';
var disqus_developer = '0';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
</body>
</html>