-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.xml
3669 lines (3135 loc) · 265 KB
/
index.xml
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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>武眉博</title>
<link>https://huobazi.github.com/</link>
<description>Recent content on 武眉博</description>
<generator>Hugo -- gohugo.io</generator>
<language>zh-cn</language>
<lastBuildDate>Mon, 26 Nov 2012 00:00:00 +0000</lastBuildDate>
<atom:link href="https://huobazi.github.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>OSX 上默认 VIM 不支持 + 寄存器</title>
<link>https://huobazi.github.com/blog/2012/11/26/osx-shang-mo-ren-vim-bu-zhi-chi-plus-ji-cun-qi/</link>
<pubDate>Mon, 26 Nov 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/11/26/osx-shang-mo-ren-vim-bu-zhi-chi-plus-ji-cun-qi/</guid>
<description><p>OSX 上默认 VIM 不支持 + 寄存器,所以从系统剪贴板相互复制东西就麻烦了
所以,我重新装了一下vim</p>
<pre><code class="language-bash">brew install vim
</code></pre>
<p>然后</p>
<pre><code class="language-bash">which vim
</code></pre>
<p>发现还是 /usr/bin</p>
<p>于是,在 .zshrc内 把 /usr/local/bin 加入 PATH 就 ok 了
其实后来想想,把原来的 move 到 old 上去,将 /usr/bin/vim ln 到/usr/local/vim 就 OK 了
或者</p>
<pre><code class="language-bash">brew install macvim --HEAD --override-system-vim
</code></pre>
<p>来安装 macvim 并覆盖系统原来的vim</p>
<p>下来,发现在OSX内用tmux后仍然无法访问+和*寄存器
一直提示 Nothing in + register
SO上找找,发现</p>
<pre><code class="language-bash"> brew install reattach-to-user-namespace
</code></pre>
<p>装这个补丁就可以访问tmux的buffer了
最后贴一下.tmux.conf</p></description>
</item>
<item>
<title>tmux丢失或显示vim的配色</title>
<link>https://huobazi.github.com/blog/2012/11/02/tmux-diu-shi-huo-xian-shi-vimde-pei-se/</link>
<pubDate>Fri, 02 Nov 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/11/02/tmux-diu-shi-huo-xian-shi-vimde-pei-se/</guid>
<description>使用tmux,同时使用vim,发现配色总是和别人截图有差别 在.tmux.conf内设置了
set -g default-terminal &quot;screen-256color&quot; 还是木有作用,最后在SO上找到了解决的办法 在.bashrc内(我是在.zshrc内)添加
alias tmux='tmux -2' 就OK了
参见
http://vim.wikia.com/wiki/256_colors_setup_for_console_Vim http://stackoverflow.com/questions/10158508/lose-vim-colorscheme-in-tmux-mode</description>
</item>
<item>
<title>将MySQL 的数据导入 PostgreSQL</title>
<link>https://huobazi.github.com/blog/2012/09/12/import-data-from-mysql-to-postgresql/</link>
<pubDate>Wed, 12 Sep 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/09/12/import-data-from-mysql-to-postgresql/</guid>
<description><p>开始学习使用PostgreSQL, 先尝试将MySQL数据导入到PostgreSQL</p>
<h2 id="安装postgresql">安装PostgreSQL</h2>
<pre><code class="language-bash">sudo apt-get install postgresql postgresql-client postgresql-contrib
</code></pre>
<p>基本按照<a href="http://kiki.ubuntu.org.cn/PostgreSQL">http://wiki.ubuntu.org.cn/PostgreSQL</a>进行设置就OK了</p>
<h2 id="安装开发工具">安装开发工具</h2>
<pre><code class="language-bash">sudo apt-get install libpq-dev pgadmin3
</code></pre>
<p>PgAdmin3 这是一个桌面 GUI 工具, 可以很方便的管理 PostgreSQL</p>
<h2 id="用到的rubygems">用到的RubyGems</h2>
<p>在 Gemfile 中增加:</p>
<pre><code class="language-ruby">gem &quot;pg&quot;
gem &quot;mysql2&quot;
</code></pre>
<p>然后</p>
<pre><code class="language-bash">bundle install
</code></pre></description>
</item>
<item>
<title>使用AjaxUpload和Carrierwave在Rails Mongoid中批量上传图片</title>
<link>https://huobazi.github.com/blog/2012/08/15/ajaxupload-with-rail-carrierwave-on-mongodb/</link>
<pubDate>Wed, 15 Aug 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/08/15/ajaxupload-with-rail-carrierwave-on-mongodb/</guid>
<description><p><a href="https://github.com/valums/file-uploader">file-uploader</a>是一个用 Javascrit 编写的文件上传 Libary,在这里我使用<a href="https://github.com/jnicklas/carrierwave">CarrierWave</a>和 <a href="https://github.com/mongoid/mongoid">Mongoid</a> 来完成多文件的无刷新上传功能</p>
<h2 id="rubygems">RubyGems</h2>
<pre><code class="language-ruby">gem 'mongoid', '3.0.4'
gem 'carrierwave', '0.6.2'
gem 'carrierwave-mongoid', :github =&gt; 'jnicklas/carrierwave-mongoid', :branch =&gt; 'mongoid-3.0'
gem 'mini_magick', '3.4'
gem 'rack-raw-upload', '1.1.0'
</code></pre>
<h2 id="model">Model</h2>
<pre><code class="language-ruby">class Screenshot
include Mongoid::Document
include Mongoid::Timestamps::Created
include Rails.application.routes.url_helpers
attr_accessible :image
field :image
mount_uploader :image, ScreenshotUploader
end
</code></pre></description>
</item>
<item>
<title>从typecho转换到Octopress了</title>
<link>https://huobazi.github.com/blog/2012/03/06/convert-typecho-to-octopress/</link>
<pubDate>Tue, 06 Mar 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/03/06/convert-typecho-to-octopress/</guid>
<description>人生在于折腾,所以将博客转换到Octopress了
我的博客经历了如下几次变动:
2003年1月,[自己装了个SnowForum],用来写些技术记录之类的东西
&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;&gt;
2004年4月,搬到博客园,以前的记录停止维护,后来数据丢失
&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;&gt;
2009年6月,搬出博客园,转换到Wordpress当时在旧博客上写了script,告知访问者此处停止更新,询问访问者是否停留在当前页,或转向新页面(可能有更新),因此被封号 @_@|||
&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;&gt;
2009年7月,博客又转换到Typecho平台
&mdash;&mdash;&mdash;&mdash;&mdash;&ndash;&gt;
2012年3月,转到Octopress了,一个静态博客生成引擎,现在看到的全都是html页面,我写了几行ruby代码做了转换,在https://github.com/huobazi/typecho-to-octopress,希望对想转换的朋友有用。</description>
</item>
<item>
<title>华为HG232破解一例</title>
<link>https://huobazi.github.com/blog/2012/02/25/hg232/</link>
<pubDate>Sat, 25 Feb 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/02/25/hg232/</guid>
<description>0. 默认超级账户 如果电信没有改过你的猫账户,可以尝试使用下面的信息登陆,如果不可以在进入后面的步骤1和2破解 帐号: telecomadmin 密码:nE7jA%5m (注意大小写)
1. 下载配置文件 猫上插入U盘,下面两种方法都可以,您挑一种吧。
1.1 手工操作&mdash;-乐趣 用猫后面印刷的普通用户useradmin登陆,这个用户登陆进去什么高级全选都木有,但是表着急,我这么干的,浏览器用firefox,如果木有就去下载,然后装上firebug,去看隐藏的html元素吧,把样式表的disply:none;都禁止掉,什么 备份配置文件、启动从U盘加载配置、回复出厂值、日志等等都出来了吧,插入U盘,点击备份按钮,文件就下载下来了。
1.2 连接下载&mdash;-直接 同时通过分析html和javascript代码,我直接把下载地址找到了,如果你不想或者木有firefox&amp;&amp;firebug,那就直接访问: http://192.168.1.1/html/ehomeclient/cfgUSBRestore.cgi?coverusbpath=usb1_1 这是firebug分析抓包后得到的地址,嘿嘿。 配置文件就能成功被备份出了,在U盘根目录生成的e8_Config_backup文件夹里ctce8_HG232.cfg。
2. 解密配置文件 网上有现成的编译好的工具可以直接用,不过作为技术宅男,当然要做点有挑战性的了,我弄了俩,一个javascript写的,一个ruby写的,开源滴,您用着放心哦
2.1 无ruby环境 将代码库里的decrypt.html另存到本地,然后用浏览器打开,在Source里粘贴用ctce8_HG232.cfg文件的内容, 点击解密按钮,就可进行解密,加密同理。
2.2 有ruby环境 如果有ruby运行环境,则可以使用代码库里的decrypt.rb另存到本地来,把要破解或者加密的文件放入相同目录,在命令行运行 ruby decrypt.rb 按照提示做就可以了
2.3 超级管理员密码 到文本编辑软件打开破解后的文件,查找telecomadmin,找到 Userpassword里面的就是超级管理员的密码了。一般是telecomadmin加串数字。
3. 设置 后面的情况就大同小异了,网上很多介绍,开路由,,自动拨号,开无线,一堆一堆的教程,另外有些设置在管理平台是没有的,比如下面的ftp和telnet设置,如果又必要使用这些相功能,修改配置文件,加密后,登陆后台后启用从usb恢复设备这个功能,然后把配置文件夹自己修改后,再恢复回去,就可以了。 4. 代码 本文提及的代码可以在https://github.com/huobazi/hg232下载到
5. 其他 4个RJ45口理论上都可以设置成接电脑或者itv输出,并不局限于写了itv的那个口。另外,也可以增加一个itv无线网络,在你的机顶盒上加个无线网卡,机顶盒拨入此无线网络,这样就不用拉一堆堆的线了,很适用于前期没有做好布线设计的朋友。
itv 不选择 无线的话 要选VLAN透传,选无线是VLAN修改
另外,网上有现成的改好的配置文件下载,http://email2me.blog.163.com/blog/static/34347033201101094128402/</description>
</item>
<item>
<title>iOS通过UIActionSheetDelegate来实现警告的方法</title>
<link>https://huobazi.github.com/blog/2012/02/13/ios-uiactionsheetdelegate/</link>
<pubDate>Mon, 13 Feb 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/02/13/ios-uiactionsheetdelegate/</guid>
<description><p><p>有时候需要用户确认一些操作,比如退出,删除数据等等,用UIActionSheetDelegate实现比较友好,实现也很简单,controller实现UIActionSheetDelegate协议就可以了,示例如下:</p>
<p></p></description>
</item>
<item>
<title>Ubuntu下设置 Sublime Text 2 显示中文 && 输入中文</title>
<link>https://huobazi.github.com/blog/2012/02/04/ubuntu-sublime-text-chinese/</link>
<pubDate>Sat, 04 Feb 2012 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2012/02/04/ubuntu-sublime-text-chinese/</guid>
<description><p>Sublime text 2在mac os 下用的很舒服,今天尝试在ubuntu下使用一下,发现汉字显示不了,</p>
<p>后来找到方法:</p>
<p>菜单栏 -&gt; Preferences -&gt; File Settings - User,在配置文件中增加:</p></description>
</item>
<item>
<title>How to,在iOS中点击文本框以外区域,隐藏键盘</title>
<link>https://huobazi.github.com/blog/2011/12/09/ios-hide-keyboard-when-touch/</link>
<pubDate>Fri, 09 Dec 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/12/09/ios-hide-keyboard-when-touch/</guid>
<description><p>当点击文本框以外部分时,隐藏键盘,实现很简单,加个Category就可以了,代码如下:</p></description>
</item>
<item>
<title> [How to] 如何卸载Xcode</title>
<link>https://huobazi.github.com/blog/2011/11/28/how-to-uninstall-xcode/</link>
<pubDate>Mon, 28 Nov 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/11/28/how-to-uninstall-xcode/</guid>
<description> $ sudo /Developer/Library/uninstall-devtools --mode=all </description>
</item>
<item>
<title>AutoGenerateColumns='true'的GridView如何支持htmlencode/htmldecode</title>
<link>https://huobazi.github.com/blog/2011/11/09/htmldecode-on-autogeneratecolumns-gridview/</link>
<pubDate>Wed, 09 Nov 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/11/09/htmldecode-on-autogeneratecolumns-gridview/</guid>
<description><p><p>我们知道BoundField.HtmlEncode 属性可以设置一个单元格是否能够htmlencode,我今天碰到的问题是:自动生成列的GridView,表头可能是包含html的比如&lt;font color=red&gt;邮件&lt;/font&gt;,默认被htmlencode了,而我不希望这样做,所以有了如下的代码:</p>
<p></p></description>
</item>
<item>
<title>新蛋西安招聘.net软件工程师</title>
<link>https://huobazi.github.com/blog/2011/08/31/newegg-invite/</link>
<pubDate>Wed, 31 Aug 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/08/31/newegg-invite/</guid>
<description><p><strong>岗位职责</strong>:</p>
<div style="font-size: 12px; line-height: 1.5; padding-bottom: 30px;">
<p> </p></description>
</item>
<item>
<title>在 Ubuntu 下安装 Redis 并使用 init 脚本启动 && 添加 删除ubuntu自启动服务</title>
<link>https://huobazi.github.com/blog/2011/08/06/ubuntu-redis-init-service-autorun/</link>
<pubDate>Sat, 06 Aug 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/08/06/ubuntu-redis-init-service-autorun/</guid>
<description>1. 下载安装: cd /tmp wget http://redis.googlecode.com/files/redis-*.*.*.tar.gz tar -zxf redis-*.*.*.tar.gz cd redis-*.*.* make sudo make install 2. 配置init脚本: wget https://github.com/ijonas/dotfiles/raw/master/etc/init.d/redis-server wget https://github.com/ijonas/dotfiles/raw/master/etc/redis.conf sudo mv redis-server /etc/init.d/redis-server sudo chmod +x /etc/init.d/redis-server sudo mv redis.conf /etc/redis.conf 3. 初始化用户和日志路径 sudo useradd redis sudo mkdir -p /var/lib/redis sudo mkdir -p /var/log/redis sudo chown redis.redis /var/lib/redis sudo chown redis.redis /var/log/redis 4. 启动Redis: sudo /etc/init.d/redis-server start 添加一个服务 #sudo update-rc.</description>
</item>
<item>
<title>在Console下输入密码,以星号代替。</title>
<link>https://huobazi.github.com/blog/2011/06/22/password-masking-in-csharp-console-application/</link>
<pubDate>Wed, 22 Jun 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/06/22/password-masking-in-csharp-console-application/</guid>
<description><p>如何在Console下输入密码,像*unix系统下那样不显示,或者显示星号,如下代码经过测试:</p></description>
</item>
<item>
<title>在ubuntu上配置 nginx和php+fastcgi</title>
<link>https://huobazi.github.com/blog/2011/01/01/ubuntu-nginx-php-fastcgi/</link>
<pubDate>Sat, 01 Jan 2011 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2011/01/01/ubuntu-nginx-php-fastcgi/</guid>
<description><p>(1)安装php5<br />apt-get install php5 php-pear php5-cli php5-common php5-xcache php5-cgi php5-mysql php5-curl php5-gd php5-imagick php5-xmlrpc php5-dev php5-memcache<br />(2)安装nginx<br />apt-get install nginx<br />(3)安装spawn-fcgi<br /> apt-get install spawn-fcgi<br />(4)设置,也是最头疼滴地方哦</p></description>
</item>
<item>
<title>VirtualBox内的Linux和宿主Windows的文件共享</title>
<link>https://huobazi.github.com/blog/2010/12/25/virtualbox-linux-windows-share/</link>
<pubDate>Sat, 25 Dec 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/12/25/virtualbox-linux-windows-share/</guid>
<description><p>VirtualBox内的Linux和宿主Windows的文件共享<br />(1)安装增强功能<br />(2)分配数据空间,制定一个名称,假设为“temp”<br />(3)挂载, mount -t vboxsf temp /mnt</p></description>
</item>
<item>
<title>淘宝首页 say goodbye to YUI 了还是forever的</title>
<link>https://huobazi.github.com/blog/2010/08/06/taobao-say-goodbye-to-yui/</link>
<pubDate>Fri, 06 Aug 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/08/06/taobao-say-goodbye-to-yui/</guid>
<description>好久没有时间读google reader了攒了上千条,今天上去,玉伯的一则快讯映入眼帘
Thanks YUI, and says goodbye to YUI forever!
http://lifesinger.org/blog/2010/08/kissy-briefings-1/
</description>
</item>
<item>
<title>在centos上装rubyee,passenger和memcached ,搭建rails环境</title>
<link>https://huobazi.github.com/blog/2010/07/24/ruby-on-rails-nginx-passenger-memcached-on-centos/</link>
<pubDate>Sat, 24 Jul 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/07/24/ruby-on-rails-nginx-passenger-memcached-on-centos/</guid>
<description><p>流水笔记一则.</p>
<p>我之前已在服务器配置了nginx,php,mysql等,现在先安装ruby企业版</p>
<div class="source" style='font-family: "[object HTMLOptionElement]","Consolas","Lucida Console","Courier New"; color: #c0c0c0; background-color: #000000;'>
<span style="color: #c0c0c0;">cd</span><span style="color: #00bbbb;"> /tmp</span><br /><span style="color: #00bbbb;">wget http:/</span><span style="color: #c0c0c0;">/</span><span style="color: #c0c0c0;">rubyforge</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">org</span><span style="color: #c0c0c0;">/</span><span style="color: #c0c0c0;">frs</span><span style="color: #c0c0c0;">/</span><span style="color: #c0c0c0;">download</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">php</span><span style="color: #c0c0c0;">/</span><span style="color: #c0c0c0;">71096</span><span style="color: #c0c0c0;">/</span><span style="color: #c0c0c0;">ruby</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">enterprise</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">1</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">8</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">7</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">2010</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">02</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">tar</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">gz</span><br /><span style="color: #c0c0c0;">tar</span> <span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">xzvf</span> <span style="color: #c0c0c0;">ruby</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">enterprise</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">1</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">8</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">7</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">2010</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">02</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">tar</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">gz</span><br /><span style="color: #c0c0c0;">cd</span> <span style="color: #c0c0c0;">ruby</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">enterprise</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">1</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">8</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">7</span><span style="color: #c0c0c0;">-</span><span style="color: #c0c0c0;">2010</span><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">02</span><br /><span style="color: #c0c0c0;">.</span><span style="color: #c0c0c0;">/installer</span>
</div>
<p>然后按照提示做</p></description>
</item>
<item>
<title>Google 给几个Javascript Framework提供的CDN地址</title>
<link>https://huobazi.github.com/blog/2010/06/02/google-js-framework-cdn/</link>
<pubDate>Wed, 02 Jun 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/06/02/google-js-framework-cdn/</guid>
<description><p><p>Google 给几个Javascript Framework提供的CDN地址:</p>
<p></p></description>
</item>
<item>
<title>京东新蛋攻防</title>
<link>https://huobazi.github.com/blog/2010/04/30/360buy-vs-newegg/</link>
<pubDate>Fri, 30 Apr 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/04/30/360buy-vs-newegg/</guid>
<description><p>这是一片不断膨胀、愈演愈烈的虚拟战场。每一位统帅都着迷于它的独特魅力——任何势力的盛衰都取决于无数素未谋面的人的鼠标点击。每一位统帅也都必须铭记:实体世界里“强攻弱守”的军事规律已经在此失效。这里唯一可以遵循的生死法则是,无论势力强弱,一旦站到防守的位置上,那么溃败将接踵而来,且来得出乎意料地快</p></description>
</item>
<item>
<title>office 2010 正在下载中。</title>
<link>https://huobazi.github.com/blog/2010/04/25/office-2010-download/</link>
<pubDate>Sun, 25 Apr 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/04/25/office-2010-download/</guid>
<description>Office 2010 正在下载中,午饭时就可以装了...</description>
</item>
<item>
<title>win7上安装memcache</title>
<link>https://huobazi.github.com/blog/2010/04/13/win7-memcache/</link>
<pubDate>Tue, 13 Apr 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/04/13/win7-memcache/</guid>
<description>像原来在xp下装一样
memcached.exe -d install
memcached.exe -d start
报错“ failed to install service or service already installed”
解决方法:
管理员身份安装,首先找出cmd.exe的原文件(在c:\windows\system32\cmd.exe),
右击以管理员进入,接下来的步骤就和xp安装方法一样了</description>
</item>
<item>
<title>编程语言排行榜Java下跌引起的...</title>
<link>https://huobazi.github.com/blog/2010/04/07/tiobe-java/</link>
<pubDate>Wed, 07 Apr 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/04/07/tiobe-java/</guid>
<description>javaeye的新闻http://www.javaeye.com/news/15494
cnblogs的新闻http://news.cnblogs.com/n/60768/
发现cnblogs的评论有很多类似“xx人民发来贺电!java终于跌下神坛了!”,而javaeye的评论要显的理性的多。</description>
</item>
<item>
<title>新蛋开始卖蛋蛋了</title>
<link>https://huobazi.github.com/blog/2010/04/02/newegg-egg/</link>
<pubDate>Fri, 02 Apr 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/04/02/newegg-egg/</guid>
<description>新蛋开始卖蛋蛋了
http://www.newegg.com/Product/Product.aspx?Item=N82E16800000033</description>
</item>
<item>
<title>在rails中不同的view不同皮肤下的js,css,注入js和css到head区域</title>
<link>https://huobazi.github.com/blog/2010/03/30/hwo-to-injecting-themes-css-javascript-to-header-in-rails/</link>
<pubDate>Tue, 30 Mar 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/03/30/hwo-to-injecting-themes-css-javascript-to-header-in-rails/</guid>
<description><p>利用layout可以很好实现这个需求.</p>
<p>在ApplicationHelper内加入如下代码:</p>
<div class="source" style='font-family: "[object HTMLOptionElement]","Consolas","Lucida Console","Courier New"; color: #e6e1dc; background-color: #111111;'>
<p><span style="color: #cc7833;">def</span> <span style="color: #ffc66d;">require_js</span>(<span style="color: #e6e1dc;">path</span>)<br /> <span style="color: #e6e1dc;">content_for</span> <span style="color: #a5c261;">:header_js</span> <span style="color: #cc7833;">do</span><br /> <span style="color: #e6e1dc;">include_js_tag</span> <span style="color: #e6e1dc;">path</span><br /> <span style="color: #cc7833;">end</span><br /> <span style="color: #cc7833;">end</span></p>
<p> <span style="color: #cc7833;">def</span> <span style="color: #ffc66d;">require_css</span>(<span style="color: #e6e1dc;">path</span>)<br /> <span style="color: #e6e1dc;">content_for</span> <span style="color: #a5c261;">:header_css</span> <span style="color: #cc7833;">do</span><br /> <span style="color: #e6e1dc;">include_css_tag</span> <span style="color: #e6e1dc;">path</span><br /> <span style="color: #cc7833;">end</span><br /> <span style="color: #cc7833;">end</span></p>
<p> <span style="color: #cc7833;">def</span> <span style="color: #ffc66d;">include_js_tag</span>(<span style="color: #e6e1dc;">path</span>)<br /> <span style="color: #cc7833;">if</span> <span style="color: #e6e1dc;">not</span> <span style="color: #e6e1dc;">path</span><span style="color: #e6e1dc;">.</span><span style="color: #e6e1dc;">starts_with?</span>(<span style="color: #a5c261;">"http:"</span>)<br /> <span style="color: #e6e1dc;">path</span> <span style="color: #e6e1dc;">=</span> <span style="color: #a5c261;">"/themes/</span><span style="color: #a5c261;">#{</span><span style="color: #6d9cbe;">@setting</span><span style="color: #e6e1dc;">[</span><span style="color: #a5c261;">:theme</span><span style="color: #e6e1dc;">]</span><span style="color: #a5c261;">}</span><span style="color: #a5c261;">/javascripts/"</span> <span style="color: #e6e1dc;">+</span> <span style="color: #e6e1dc;">path</span><br /> <span style="color: #cc7833;">end</span><br /> <span style="color: #e6e1dc;">javascript_include_tag</span> <span style="color: #e6e1dc;">path</span><br /> <span style="color: #cc7833;">end</span></p>
<p> <span style="color: #cc7833;">def</span> <span style="color: #ffc66d;">include_css_tag</span>(<span style="color: #e6e1dc;">path</span>)<br /> <span style="color: #cc7833;">if</span> <span style="color: #e6e1dc;">not</span> <span style="color: #e6e1dc;">path</span><span style="color: #e6e1dc;">.</span><span style="color: #e6e1dc;">starts_with?</span>(<span style="color: #a5c261;">"http:"</span>)<br /> <span style="color: #e6e1dc;">path</span> <span style="color: #e6e1dc;">=</span> <span style="color: #a5c261;">"/themes/</span><span style="color: #a5c261;">#{</span><span style="color: #6d9cbe;">@setting</span><span style="color: #e6e1dc;">[</span><span style="color: #a5c261;">:theme</span><span style="color: #e6e1dc;">]</span><span style="color: #a5c261;">}</span><span style="color: #a5c261;">/stylesheets/"</span> <span style="color: #e6e1dc;">+</span> <span style="color: #e6e1dc;">path</span><br /> <span style="color: #cc7833;">end</span><br /> <span style="color: #e6e1dc;">stylesheet_link_tag</span> <span style="color: #e6e1dc;">path</span><br /> <span style="color: #cc7833;">end</span></p>
</div>
<p>(如果你要直接在view或者layout内引入css则可以&lt;%= include_css_tag "global.css" %&gt;,这样生成的路径是带有皮肤目录的)</p>
<p>接下来,修改你的layout的head,加入如下代码:</p></description>
</item>
<item>
<title>请珍爱自己的身体</title>
<link>https://huobazi.github.com/blog/2010/03/03/356/</link>
<pubDate>Wed, 03 Mar 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/03/03/356/</guid>
<description>see see:
http://www.cnblogs.com/yiway/archive/2010/02/23/1672173.html</description>
</item>
<item>
<title>关于女人这个神奇的东西,从网上找了些觉得同感的片片</title>
<link>https://huobazi.github.com/blog/2010/02/09/nv-ren/</link>
<pubDate>Tue, 09 Feb 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/02/09/nv-ren/</guid>
<description><p>女人总是把原本不属于自己的东西死死地认定为是自己的,然后患得患失; 更好玩的是,明明是自己不懂珍惜刁蛮成性而导致失去的东西,她们非要说成是别人的背叛,这点让男人挺没辙的。</p></description>
</item>
<item>
<title>优化Rails数据库查询性能 -- rails_reviewer插件</title>
<link>https://huobazi.github.com/blog/2010/01/21/rails-review-on-rails/</link>
<pubDate>Thu, 21 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/01/21/rails-review-on-rails/</guid>
<description>发现一个很棒的插件rails_reviewer插件
安装:
$ script/plugin install git://github.com/dsboulder/query_reviewer.git
$ rake query_reviewer:setup 完毕后重启server,页面左上角浮动一个SQL CRITICAL浮动窗口,里面记录页面加载时执行的所有SQL以及优化建议等。
强烈推荐 !!!</description>
</item>
<item>
<title>使用window.location跳转,在IE中UrlReffer不被记录</title>
<link>https://huobazi.github.com/blog/2010/01/21/window-location-href-ie-request-reffer/</link>
<pubDate>Thu, 21 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/01/21/window-location-href-ie-request-reffer/</guid>
<description><p>使用window.location跳转,在FF中,没问题,下一页面可以取得UrlReffer,但在IE中UrlReffer不被记录</p>
<p>真变态,</p>
<p>让我头痛了半天,弄了个丑陋的办法做了如下实现:</p></description>
</item>
<item>
<title>rails里Mysql::Error: query: not connected</title>
<link>https://huobazi.github.com/blog/2010/01/15/rails-mysqlerror-query-not-connected/</link>
<pubDate>Fri, 15 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/01/15/rails-mysqlerror-query-not-connected/</guid>
<description><p>从ubuntu换回了win7后又慢慢开始折腾以前在本本上跑的一些LAMP网站, php和 mysql还是用以前的xampp里的,仍然可以用。</p>
<p>重装了 ruby 1.8.6, rails 2.3.5 等...发现运行rails网站,弹出messagebox提示找不到libmysql.dll尝试把mysql/bin里的dll来regsvr32,不可,直接拷贝到system32目录下错误没了,但打开网站仍然报错,终端显示“Mysql::Error: query: not connected...."</p></description>
</item>
<item>
<title>把typecho升级到0.7了</title>
<link>https://huobazi.github.com/blog/2010/01/14/typecho-0-7-updated/</link>
<pubDate>Thu, 14 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/01/14/typecho-0-7-updated/</guid>
<description>什么时候typecho能够像wp那样在线升级就好了。</description>
</item>
<item>
<title>漂亮的VIM配色方案</title>
<link>https://huobazi.github.com/blog/2010/01/11/vim-color-scheme/</link>
<pubDate>Mon, 11 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/01/11/vim-color-scheme/</guid>
<description>这里
http://code.google.com/p/vimcolorschemetest/
有一堆一堆的配色方案
Browse By File Type Featuring 428 schemes:
C HTML Java Perl LaTeX</description>
</item>
<item>
<title>把你的netbeans变成英文版</title>
<link>https://huobazi.github.com/blog/2010/01/07/349/</link>
<pubDate>Thu, 07 Jan 2010 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2010/01/07/349/</guid>
<description>呵呵其实很简单,装完后再你使用的快捷方式内增加
--locale en:us就可以了,比如我的快捷方式里的设置为:
"D:\Program Files\NetBeans 6.8\bin\netbeans.exe" --locale en:us
ok 英文了.
按照这个方法你可以为自己定制很多套语言版本的netbeans,但只要一份安装。</description>
</item>
<item>
<title>Graffiti CMS 开源了</title>
<link>https://huobazi.github.com/blog/2009/12/18/graffiti-cms-is-now-free-open-source/</link>
<pubDate>Fri, 18 Dec 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/12/18/graffiti-cms-is-now-free-open-source/</guid>
<description>Graffiti CMS
see also:http://weblogs.asp.net/kencox/archive/2009/12/17/graffiti-cms-is-now-free-open-source.aspx</description>
</item>
<item>
<title>Repeater,DataList等嵌套如何绑定父repeater字段?</title>
<link>https://huobazi.github.com/blog/2009/12/11/nested-repeater-parent/</link>
<pubDate>Fri, 11 Dec 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/12/11/nested-repeater-parent/</guid>
<description>嘿嘿,其实Container有个Parent属性,把它转换为RepeaterItem再取其DataItem
DataBinder.Eval(((System.W
eb.UI.WebControls.Repeat erItem)Container.Parent.Parent.Parent).DataItem</description>
</item>
<item>
<title>使用SQL语句更改数据表的默认值</title>
<link>https://huobazi.github.com/blog/2009/12/09/chang-sql-table-field-default/</link>
<pubDate>Wed, 09 Dec 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/12/09/chang-sql-table-field-default/</guid>
<description><p><p>以前还真没这么干过,都是手工去掉约束,再添加的,今天一边google一边搞啊搞啊的,最终下面这个脚本可以用了</p>
<p></p></description>
</item>
<item>
<title>我的win7和ubuntu之旅</title>
<link>https://huobazi.github.com/blog/2009/12/02/win7-ubuntu/</link>
<pubDate>Wed, 02 Dec 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/12/02/win7-ubuntu/</guid>
<description><p>先装了win7 后装了ubuntu9.10,开始煎熬了数日...</p></description>
</item>
<item>
<title>腾讯webQQ的 CSS Sprite</title>
<link>https://huobazi.github.com/blog/2009/11/28/webqq-css-sprite/</link>
<pubDate>Sat, 28 Nov 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/11/28/webqq-css-sprite/</guid>
<description><p>web qq速度很快,很多图标处理的也很漂亮,偷偷看了一下sprite的图片,所有图标都在这个图里了20多k,性能压倒一切啊。</p></description>
</item>
<item>
<title>在线编辑器的一个新选择。</title>
<link>https://huobazi.github.com/blog/2009/10/27/kissy-editor/</link>
<pubDate>Tue, 27 Oct 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/10/27/kissy-editor/</guid>
<description>今天lifesinger发布了淘宝编辑器,
可以在这里看到演示
介绍可以看这里,http://lifesinger.org/blog/2009/10/kissy-editor/</description>
</item>
<item>
<title>Wordpress真的不错</title>
<link>https://huobazi.github.com/blog/2009/10/20/342/</link>
<pubDate>Tue, 20 Oct 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/10/20/342/</guid>
<description>另外一个博客,用的wp,自动升级使用了一下,很不错,速度很快
Upgrade WordPress
Downloading update from http://wordpress.org/wordpress-2.8.4.zip.
Unpacking the update.
Verifying the unpacked files
Installing the latest version
Upgrading database
WordPress upgraded successfully</description>
</item>
<item>
<title>得罪一下腾讯</title>
<link>https://huobazi.github.com/blog/2009/10/13/tencent/</link>
<pubDate>Tue, 13 Oct 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/10/13/tencent/</guid>
<description><p>别人出了ICQ ————–腾讯就出QQ<br />别人出了MSN ————-腾讯就出TM<br />别人出了冒险岛————腾讯就出QQ三国<br />别人出了泡泡堂————腾讯就出QQ堂<br />别人出了劲舞团————腾讯就出QQ炫舞<br />别人出了诛仙 ————–腾讯就出QQ寻仙<br />别人出了华夏 ————–腾讯就出QQ华夏<br />别人出了O2JAM – ———腾讯就出QQ音速</p></description>
</item>
<item>
<title>【How to】解决Visio虚线复制到word中变为实线</title>
<link>https://huobazi.github.com/blog/2009/10/10/visio-dashed/</link>
<pubDate>Sat, 10 Oct 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/10/10/visio-dashed/</guid>
<description>添加 MetafileDashLineAsSolid 到以下注册表位置,类型DWORD。
• Visio 2007
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Visio\Application
• Visio 2003
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Visio\Application
属性值:
• 0:虚线或虚线行执行不替换为实线。
• 1:虚线或虚线极端情形中行只替换为实线。 100 倍的原始文件大小时可能导致文件大小中增加例如, 替换实线为虚线或虚线行。 • 2:替换实线用于当合理虚线或虚线行。 这是默认值。 • 3:始终替换为实线虚线或虚线行。 </description>
</item>
<item>
<title>rails中的ActiveRecord真性感!</title>
<link>https://huobazi.github.com/blog/2009/09/24/sexy-activerecord/</link>
<pubDate>Thu, 24 Sep 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/09/24/sexy-activerecord/</guid>
<description><p>Rails使用的ActiveRecord真性感啊,see see吧</p>
<div class="source" style="COLOR: #dcdccc; FONT-FAMILY: '[object]','Consolas','Lucida Console','Courier New'; BACKGROUND-COLOR: #3f3f3f">
<span style="COLOR: #e3ceab">class</span> <span style="COLOR: #dcdccc">User</span> <span style="COLOR: #dcdccc">&lt;</span> <span style="FONT-WEIGHT: bold; COLOR: #dca3a3">ActiveRecord</span><span style="COLOR: #dcdccc">::</span><span style="FONT-WEIGHT: bold; COLOR: #dca3a3">Base</span> <br /> <span style="COLOR: #dcdccc">has_many</span> <span style="COLOR: #cc9393">:articles</span> <br /><span style="COLOR: #e3ceab">end</span> <br /> <br /><span style="COLOR: #e3ceab">class</span> <span style="COLOR: #dcdccc">Article</span> <span style="COLOR: #dcdccc">&lt;</span> <span style="FONT-WEIGHT: bold; COLOR: #dca3a3">ActiveRecord</span><span style="COLOR: #dcdccc">::</span><span style="FONT-WEIGHT: bold; COLOR: #dca3a3">Base</span><br /> <span style="COLOR: #dcdccc">belongs_to</span> <span style="COLOR: #cc9393">:user</span> <br /><span style="COLOR: #e3ceab">end</span>
</div>
<p>然后执行<br />&gt;&gt; <strong><span style="color: #0000ff;">Article.find(1)</span> </strong>会得到延迟加载user对象的sql语句。如下:</p></description>
</item>
<item>
<title>国庆节前期,我每晚都想找个小姐包夜</title>
<link>https://huobazi.github.com/blog/2009/09/14/gq/</link>
<pubDate>Mon, 14 Sep 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/09/14/gq/</guid>
<description><p>新中国60岁了,注意“新”字,很多人最近说什么祖国60岁云云,在此纠正一下,祖国好几千岁了!</p>
<p>今年新中国过生日,放假8天,比春节还多,会不会引发一轮新的返乡/旅游高潮呢?,国庆买不到票怎么办?</p>
<p>看下面这个仁兄如果牛B的</p></description>
</item>
<item>
<title>大半夜的替老婆种菜,偷别人的菜。</title>
<link>https://huobazi.github.com/blog/2009/09/12/%E5%A4%A7%E5%8D%8A%E5%A4%9C%E7%9A%84%E6%9B%BF%E8%80%81%E5%A9%86%E7%A7%8D%E8%8F%9C%E5%81%B7%E5%88%AB%E4%BA%BA%E7%9A%84%E8%8F%9C/</link>
<pubDate>Sat, 12 Sep 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/09/12/%E5%A4%A7%E5%8D%8A%E5%A4%9C%E7%9A%84%E6%9B%BF%E8%80%81%E5%A9%86%E7%A7%8D%E8%8F%9C%E5%81%B7%E5%88%AB%E4%BA%BA%E7%9A%84%E8%8F%9C/</guid>
<description><p>唉......</p></description>
</item>
<item>
<title>我被ps了</title>
<link>https://huobazi.github.com/blog/2009/09/10/meituxiuxiu/</link>
<pubDate>Thu, 10 Sep 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/09/10/meituxiuxiu/</guid>
<description><p>老婆学会了用<a title="http://xiuxiu.meitu.com/" href="http://xiuxiu.meitu.com/" target="_blank">美图秀秀</a>这个软件,我成了第一个被ps的对象,</p>
<p><img src="https://huobazi.github.com/images/hbz_images/lg10.jpg" alt=""></p></description>
</item>
<item>
<title>服务器状态代码含义</title>
<link>https://huobazi.github.com/blog/2009/09/02/%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8A%B6%E6%80%81%E4%BB%A3%E7%A0%81%E5%90%AB%E4%B9%89/</link>
<pubDate>Wed, 02 Sep 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/09/02/%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8A%B6%E6%80%81%E4%BB%A3%E7%A0%81%E5%90%AB%E4%B9%89/</guid>
<description><p><h2 class="title">服务器状态代码含义google来的,存档。</h2>
<p class="title"> </p>
<p></p></description>
</item>
<item>
<title>百度要在西北这边大卖了</title>
<link>https://huobazi.github.com/blog/2009/08/31/%E7%99%BE%E5%BA%A6%E8%A6%81%E5%9C%A8%E8%A5%BF%E5%8C%97%E8%BF%99%E8%BE%B9%E5%A4%A7%E5%8D%96%E4%BA%86/</link>
<pubDate>Mon, 31 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/31/%E7%99%BE%E5%BA%A6%E8%A6%81%E5%9C%A8%E8%A5%BF%E5%8C%97%E8%BF%99%E8%BE%B9%E5%A4%A7%E5%8D%96%E4%BA%86/</guid>
<description>今天早上乘电梯,按了15层也没注意其他人按那一层,结果电梯直上15,才发现同乘其他人均是千万18层的,嘿嘿,都是百度的。看来百度在西北的招聘很成功啊,要开始在西北这边大卖关键字和竞价排名了。想起上次晚上夜班和同事一起溜上去隔玻璃偷窥了百度的办公室,妈妈妈哦,好多好多好多工位,每人大概60厘米长的桌子吧,看上去比网吧的格局还紧凑,一桌一部电话,西北的老少爷们们等着被骚扰吧。
ps:曾有此仍然是电梯里闻两位百度哥们对话,一位说道“软件园的企业就不要想了,肯定被之前来的扫过几百遍了...”</description>
</item>
<item>
<title>Mysql adapter on Rails 2.3.3</title>
<link>https://huobazi.github.com/blog/2009/08/29/mysql-adapter-on-rails-2-3-3/</link>
<pubDate>Sat, 29 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/29/mysql-adapter-on-rails-2-3-3/</guid>
<description>安装好Ruby on Rails 2.3.3后,运行简单的页面提示如下错误“The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql”
gem 了n次也不成,搞了一早上,才google到一个比较山寨的方法解决
1. download older MySQL client library, for example one from InstantRails: http://instantrails.rubyforge.org/svn/trunk/InstantRails-win/InstantRails/mysql/bin/libmySQL.dll 2. copy the downloaded file to C:\Ruby\bin (or wherever you installed Ruby) 3. restart MySQL server 另参考:http://www.ruby-forum.com/topic/160358和http://rdc.taobao.com/blog/qa/?p=523</description>
</item>
<item>
<title>Palm Centro(690)的软启动和硬启动</title>
<link>https://huobazi.github.com/blog/2009/08/25/hwo-to-reset-palm-centro/</link>
<pubDate>Tue, 25 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/25/hwo-to-reset-palm-centro/</guid>
<description>给老婆买了部centro,结果不知道如何软起和硬起,泡了半天吹友吧,得知如下
软启 下电池 硬启 下电池后按住红色挂机件上电池 到PALM开机图不动后松开 按向上键</description>
</item>
<item>
<title>python的对象驻留</title>
<link>https://huobazi.github.com/blog/2009/08/21/python-object-interning/</link>
<pubDate>Fri, 21 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/21/python-object-interning/</guid>
<description>在C#中为了提高性能使用了字符串驻留技术,而在Python中不光是字符串,连整数都有使用类似的驻留技术哦,看下面的测试:
C:\Documents and Settings\Marble Wu&gt;python Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; a=1 &gt;&gt;&gt; b=1 &gt;&gt;&gt; id(1) 10446048 &gt;&gt;&gt; id(a) 10446048 &gt;&gt;&gt; import sys &gt;&gt;&gt; sys.getrefcount(a) 245 &gt;&gt;&gt; sys.getrefcount(b) 245 &gt;&gt;&gt; 其实也很容易理解,因为在Python一切皆对象</description>
</item>
<item>
<title>调整netbeans6.5设置使之默认使用utf-8存储文件</title>
<link>https://huobazi.github.com/blog/2009/08/19/netbeans-utf8-settings/</link>
<pubDate>Wed, 19 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/19/netbeans-utf8-settings/</guid>
<description><p><p>netbeans默认使用ANSI存储的,我们一般希望它采用utf-8来存储,按照如下方法可以实现这个要求</p>
<p>1) 找到你的Netbeans安装目录下的etc文件夹,如D:\Program Files\NetBeans 6.5\etc<br />2) 用文本编辑器打开netbeans.conf<br />3) 找到netbeans_default_options这一句(注意#号开头的行的是注释)<br />4) 在最后面加上一个空格,再加入-J-Dfile.encoding=UTF-8</p>
<p>如我现在的设置:</p>
<p></p></description>
</item>
<item>
<title>如何在windows xp下安装python2.6的setuptools</title>
<link>https://huobazi.github.com/blog/2009/08/11/how-to-install-setuptools-on-windows-and-python26/</link>
<pubDate>Tue, 11 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/11/how-to-install-setuptools-on-windows-and-python26/</guid>
<description><p><p>最近开始学python,要安装很多egg文件,但发现<a href="http://pypi.python.org/pypi/setuptools#downloads">http://pypi.python.org/pypi/setuptools#downloads</a>没有python2.6的MS Windows installer版本,google了一把,用如下方法解决:</p>
<p></p></description>
</item>
<item>
<title>不改程序, 创建同一个程序不同服务名的方法</title>
<link>https://huobazi.github.com/blog/2009/08/06/mulit-window-service-one-exe/</link>
<pubDate>Thu, 06 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/06/mulit-window-service-one-exe/</guid>
<description><p><p>以往写windows service都需要个ProjectInstaller和serviceInstaller并配置serviceName,这样build出来的exe在install成windows service时我们会:</p>
<pre>@echo 安装WindowService
@Set Path=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727;
@Set svn_dir=%cd%
installutil %svn_dir%\MyServiceDemo.exe
pause
@echo 成功!</pre>
<p>但服务名被我们编译在程序里了,如果这个exe想被装很多次服务怎么办呢?<br />今天从同事Martin Jia那里学来一个好方法,可以不用ProjectInstaller、serviceInstaller这种东西,直接安装exe为windows service并在安装时指定服务名称</p>
<p></p></description>
</item>
<item>
<title>Wordpress从windows上迁移到linux上要注意路径设置</title>
<link>https://huobazi.github.com/blog/2009/08/02/wordpress-from-windows-to-linux/</link>
<pubDate>Sun, 02 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/02/wordpress-from-windows-to-linux/</guid>
<description><p>今天在localhost上用xampp装了个<a title="Wordpress" href="http://www.wp.com" target="_blank">wordpress</a> 2.8.2,本地导入原来<a title="www.codeplex.com/blogengine" href="http://www.codeplex.com/blogengine" target="_blank">blogengine.net</a>的数据调整好,没有任何问题,就<a title="帝国备份王" href="http://www.phome.net/product/Ebak.html" target="_blank">用帝国备份王</a>打包数据在远程linunx上恢复,ftp上传本地站点内的文件到服务器对应目录,修改wp-config.php,兴冲冲的去访问首页,发现打不开,任何跟wp有关的页面都打不开,html可以打开和wp无关的页面比如探针是可以打开的,郁闷啊,检查了好久配置文件没有任何问题,思前想后想不通啊。本地和远程只是web服务器不同,本地是apache远程是nginx,不会是因为这个吧,其他几个站点都是这么弄的啊,是在想不到什么原因,</p></description>
</item>
<item>
<title>商务中国的DNS解析,主机名不许有下划线</title>
<link>https://huobazi.github.com/blog/2009/08/02/bizcn-dns-hostname/</link>
<pubDate>Sun, 02 Aug 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/08/02/bizcn-dns-hostname/</guid>
<description><p><p>就在刚才,就在刚才哦,本博客突然突然的就不能访问了,玉米是上午中国注册的,使用的是商务中国的dns服务,使用同样dns服务器的域名都可以访问,就这个突然离奇的不能访问了,去商务中国提了个ticket,过了不一会儿收到邮件说是已经回复了这个问题,赶紧登陆一看</p>
<p></p></description>
</item>
<item>
<title>如何判断一个类型是nullable类型,并得知它的原始类型</title>
<link>https://huobazi.github.com/blog/2009/07/30/how-to-determine-whether-an-type-is-nullable-and-get-the-underlying-type/</link>
<pubDate>Thu, 30 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/30/how-to-determine-whether-an-type-is-nullable-and-get-the-underlying-type/</guid>
<description><p><p>有些时候我们需要判断某个类型是否是Nullable类型,并且可能需要知道它的原始类型,<br />比如在做些ORM相关工作时,就需要这方面的应用,如下代码使用可以实现这个要求</p>
<p></p></description>
</item>
<item>
<title>拆箱记</title>
<link>https://huobazi.github.com/blog/2009/07/26/2009-mvp/</link>
<pubDate>Sun, 26 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/26/2009-mvp/</guid>
<description><p>大洋彼岸寄来了一个纸箱</p>
<p><img src="http://huobazi.github.com/images/hbz_images/mvp/1.jpg" alt=""></p></description>
</item>
<item>
<title>Asp.Net发邮件,如何发送附件</title>
<link>https://huobazi.github.com/blog/2009/07/21/how-to-send-an-email-with-attachments/</link>
<pubDate>Tue, 21 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/21/how-to-send-an-email-with-attachments/</guid>
<description><p><p>使用如下代码可以发送附件</p>
<pre>MailMessage mail = new MailMessage();
mail.To = &rdquo;[email protected]&rdquo;;
mail.From = &rdquo;[email protected]&rdquo;;
mail.Subject = &rdquo;this is a test email.&ldquo;;
mail.Body = &rdquo;this is my test email body.&ldquo;;
MailAttachment attachment = new MailAttachment( Server.MapPath( &rdquo;mailTest.txt&rdquo; ) ); //create the attachment
mail.Attachments.Add( attachment );
SmtpMail.SmtpServer = &rdquo;localhost&rdquo;;
SmtpMail.Send( mail );</pre>
<p>使用如下代码可以在用户上传附件后发生邮件:</p>
<p></p></description>
</item>
<item>
<title>如何判断一个网站是不是php做的?</title>
<link>https://huobazi.github.com/blog/2009/07/18/php-guid/</link>
<pubDate>Sat, 18 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/18/php-guid/</guid>
<description>可以当作简易判断站点是否用PHP架设。
PHP_LOGO_GUID
http://www.php.net/?=PHPE9568F34-D428-11d2-A769-00AA001ACF42
PHP_EGG_LOGO_GUID
http://www.php.net/?=PHPE9568F36-D428-11d2-A769-00AA001ACF42
ZEND_LOGO_GUID
http://www.php.net/?=PHPE9568F35-D428-11d2-A769-00AA001ACF42
PHP_CREDITS_GUID
http://www.php.net/?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000
喜欢看愚人节的那个Logo就是第二个链接罗
http://www.php.net/ 这个网址只是范例,只要是任一PHP的站点即可。
来源:http://www.google.cn/search?client=aff-os-worldbrowser&amp;forid=1&amp;ie=utf-8&amp;oe=UTF-8&amp;hl=zh-CN&amp;q=%E4%B8%80%E4%BA%9B%E5%86%85%E5%AE%9A%E7%9A%84PHP%E7%89%B9%E6%AE%8AGUID
</description>
</item>
<item>
<title>知识死角,name相同的html element</title>
<link>https://huobazi.github.com/blog/2009/07/17/same-name-element-in-one-page/</link>
<pubDate>Fri, 17 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/17/same-name-element-in-one-page/</guid>
<description><p><p>今天在帮同事调程序时发现了这个死角<br />现象如下,没有任何输入的textarea提交到服务端后得到的值总是&rdquo;,&rdquo;<br />找了半天发现是因为页面上两个textarea的name相同,以前只知道页面上radio的name相同则是一个组,name相同的<br />的checkbox提交后是以逗号分隔值的,于是做了下面代码的试验,发现任何name相同的element提交到服务端都会得到逗号分隔的值,以前还不知道这个,汗</p>
<p></p></description>
</item>
<item>
<title>C#中如何深度克隆一个对象?</title>
<link>https://huobazi.github.com/blog/2009/07/15/make-a-deep-clone-of-the-object/</link>
<pubDate>Wed, 15 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/15/make-a-deep-clone-of-the-object/</guid>
<description><p><p>如何深度克隆一个对象?</p>
<p>普通版:</p>
<pre>
public static object CloneObject( object obj )
{
using ( MemoryStream memStream = new MemoryStream( ) )
{
BinaryFormatter binaryFormatter = new BinaryFormatter( null ,
new StreamingContext( StreamingContextStates.Clone ) );
binaryFormatter.Serialize( memStream , obj );
memStream.Seek( 0 , SeekOrigin.Begin );
return binaryFormatter.Deserialize( memStream );
}
}
</pre>
<p>泛型版:</p>
<p></p></description>
</item>
<item>
<title>nginx下typecho的rewrite</title>
<link>https://huobazi.github.com/blog/2009/07/09/nginx-typecho-rewrite/</link>
<pubDate>Thu, 09 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/09/nginx-typecho-rewrite/</guid>
<description><p>导数据到typecho的时候是在localhost的windows xp系统上用的apache,部署时用的是nginx<br />先是发现无法登陆按照<a href="http://forum.typecho.org/viewtopic.php?f=4&amp;t=238&amp;p=852&amp;hilit=nginx#p852" target="_blank">这篇帖子</a>内的方法配置了vhost.conf,发现可以登陆了,接着又出现了<br />无法编辑post的问题,具体症状见<a href="http://forum.typecho.org/viewtopic.php?f=4&amp;t=270" target="_blank">这篇帖子</a>,甚是郁闷啊,google+baidu 找到一片描写wp的<br />rewrite的<a href="http://hi.baidu.com/3322/blog/item/95d254e7594a012bb93820bb.html" target="_blank">帖子</a>,因typecho与wp笔记像,抱着试试看的想法,在测试站点试验了一下,嘿嘿<br />能用,转寄在此,备忘</p></description>
</item>
<item>
<title>从Wordpress转到Typecho了</title>
<link>https://huobazi.github.com/blog/2009/07/04/myblog-from-wordpress-to-typecho/</link>
<pubDate>Sat, 04 Jul 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/07/04/myblog-from-wordpress-to-typecho/</guid>
<description>WP比较占资源,今天把博客又转到Typecho了,忙乎了大半夜(现在接近临晨4点),东拼西凑,南抄北挪,终于啊,皮肤基本上搞定了,发现Typecho的皮肤也蛮简单的,默认皮肤就七八个文件,照着改也蛮容易入门的。
郁闷的是现在还是在localhost上,自己点击,速度超好,刷刷刷的哦。还有就是Typecho这个版本(0.6)默认没有WYSIWYG的编辑器,只这篇post就是手写发出的,不过这样也好,以前在博客园用编辑器编辑的博客有时候因皮肤调整,会出现编辑器的html不符合皮肤,撑的页面不好看。
最搞的是我一直没找到如何处理分类排序的功能,还去官方论坛发了个贴(标准的新手贴),被告知按住拖动就OK了...
(*^__^*) 嘻嘻……
在此感谢所有TV 感谢博客园 感谢Typecho开发团队 感谢Wordpress 感谢Paint.Net 感谢PhotonVPS
感谢...</description>
</item>
<item>
<title>博客园到Wordpress搬家成功!</title>
<link>https://huobazi.github.com/blog/2009/06/21/my-blog-moved-to-wp/</link>
<pubDate>Sun, 21 Jun 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/06/21/my-blog-moved-to-wp/</guid>
<description>终于把在博客园的博客的数据导入到Wordpress内了,包括随笔/文章,图片,标签,评论等,是写了两个C# console程序做到的,程序我传到博客园了,如果有需要的朋友可以试试。但请注意,要自己在博客园后台备份RSS文件放到Reader的Data目录内,设置为编译选项为永远复制,运行后会生成一个Entry.xml并且把博客内的图片和分类、Tag、评论等抓下来,然后将此xml文件拷贝到Writer内,在代码内修改一下你的Wordress的数据库连接,然后跑一下Writer,就可以完成数据导入到Wordpress了,时间匆忙,代码写的很乱,有些地方是针对本人需求处理的,如果你想要直接运行此程序完成你的博客园博客到Wordpress的转换,那是不可能滴!你一定要有简单的C#调试基础哦。
http://files.cnblogs.com/huobazi/MyBlogTools.rar</description>
</item>
<item>
<title>家滨面对面</title>
<link>https://huobazi.github.com/blog/2009/04/22/jiabin/</link>
<pubDate>Wed, 22 Apr 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/04/22/jiabin/</guid>
<description>2009.04.22新任CEO杜家滨先生莅临西安,我有幸获邀参加“嘉宾面对面”活动。
前辈很随和,和我们聊了他的职业生涯,从微软中国到思科,到新蛋就当前电子商务形式以及对于中国新蛋网的未来,很认真的听却了大家对目前中国区以及中国新蛋网的看法。并现场开通了一个邮箱留给大家,诚恳的希望大家有什么好点子,都能及时通过这个邮箱与他分享。
直至聚会结束,气氛都非常融洽,前辈表现出一个职业经理人强大的亲和力!</description>
</item>
<item>
<title>2008我的收获了3个本儿,一堆朋友</title>
<link>https://huobazi.github.com/blog/2009/01/19/2008-me/</link>
<pubDate>Mon, 19 Jan 2009 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2009/01/19/2008-me/</guid>
<description><p>2008 我收获了3个本儿 结婚证,Microsoft MVP证书,newegg中国区优秀员工证书</p>
<p><img id="ViewPicture1_GalleryImage" style="width: 640px; height: 480px; border-width: 0px; border-color: black;" src="https://huobazi.github.com/images/hbz_images/2008_me.JPG" alt="2008我的收获"></p></description>
</item>
<item>
<title>把ASP.NET MVC的路由利用配置维护起来</title>
<link>https://huobazi.github.com/blog/2008/12/01/asp-net-mvc-route-config/</link>
<pubDate>Mon, 01 Dec 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/12/01/asp-net-mvc-route-config/</guid>
<description>配置大多就是文件配置或者数据库配置了
ref:
http://mnour.blogspot.com/2008/11/mvc-routing-using-custom-configuration.html
http://www.cnblogs.com/QLeelulu/archive/2008/11/24/1340212.html
http://www.iansuttle.com/blog/post/ASPNET-MVC-Store-Routes-in-the-Database.aspx
我觉得加上做webform时常用的PageAlias和BuildUrl会更好用些</description>
</item>
<item>
<title>哈佛经典案例,赶集卖猪记 </title>
<link>https://huobazi.github.com/blog/2008/11/01/hf/</link>
<pubDate>Sat, 01 Nov 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/11/01/hf/</guid>
<description><p>哈佛经典案例,赶集卖猪记(次贷危机加强篇)<br /> <br /> 这是目前为止关于次贷危机最通俗易懂的版本了。<br /> <br /> 1<br /> <br /> 大家都知道这个案例:<br /> <br /> 一男赶集卖猪,天黑遇雨,二十头猪未卖成,到一农家借宿。<br /> <br /> 少妇说:家里只一人不便。<br /> </p></description>
</item>
<item>
<title>次贷危机和一夜情</title>
<link>https://huobazi.github.com/blog/2008/10/26/crisis-and-ons/</link>
<pubDate>Sun, 26 Oct 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/10/26/crisis-and-ons/</guid>
<description><p> 有一天,一位其貌不扬的男士,带着一位十分艳丽的OL,来到Causeway Bay一家LV店。他为OL选了一价值6万5元的LV handbag。 付款时,男士掏出支票本,十分潇洒地签了一张支票。店员有些为难,因为这对夫妇是第一次来店购物。<br /> 男士看穿了店员的心思,十分冷静地对店员说: "我感觉到,您担心这是一张是空头支票,对吗?今天是周六,银行关门。我建议您把支票和handbag都留下。等到星期一支票兑现之后,再请你们把 handbag 送到这位小姐的府上。您看这样行不行?"<br /> </p></description>
</item>
<item>
<title>jQuery从此更牛了</title>
<link>https://huobazi.github.com/blog/2008/10/07/jquerycool/</link>
<pubDate>Tue, 07 Oct 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/10/07/jquerycool/</guid>
<description><p>为什么更牛了?</p>
<p> </p>
<p>26日回家,昨天才返回,这么好的消息自己错过了,补记一下。</p>
<p> </p>
<p>see see</p></description>
</item>
<item>
<title>【分享】如何创建自己的Visual Studio 2005/2008配色</title>
<link>https://huobazi.github.com/blog/2008/08/09/visualstudiothemegenerator/</link>
<pubDate>Sat, 09 Aug 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/08/09/visualstudiothemegenerator/</guid>
<description>自己改过配色的朋友都知道在Vs内配置比较麻烦,导入过别人配好的现成配置的朋友,有没有研究过那个.vssettings文件是个什么东西呢?
用文本编辑器打开它就能看到那是个Xml文件,现在有了一个很好的在线工具能够方便的搞出自己喜欢的配色,然后再导入就OK了。
http://frickinsweet.com/tools/Theme.mvc.aspx</description>
</item>
<item>
<title>我学Linq to SQL做的demo</title>
<link>https://huobazi.github.com/blog/2008/07/19/cb-1246773/</link>
<pubDate>Sat, 19 Jul 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/07/19/cb-1246773/</guid>
<description>最近才开始学LINQ to SQL,
做了个demo,都是基本操作。
有兴趣的朋友看看。
http://download.csdn.net/source/528628</description>
</item>
<item>
<title>Latest preview of the ASP.Net MVC available on CodePlex</title>
<link>https://huobazi.github.com/blog/2008/07/17/mvcpreview4/</link>
<pubDate>Thu, 17 Jul 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/07/17/mvcpreview4/</guid>
<description>ASP.NET MVC Preview 4 available!!! ASP.NET MVC CodePlex Preview 4 runtime binary, 1075K, uploaded Today - 772 downloads
ASP.NET Codeplex Preview 4 Readme documentation, 71K, uploaded Today - 359 downloads
ASP.NET Codeplex Preview 4 Readme (PDF) documentation, 469K, uploaded Today - 360 downloads
Changes between Preview 3 and Codeplex Preview 4 documentation, 52K, uploaded Today - 208 downloads</description>
</item>
<item>
<title>提供我现用的Vs配色(灰黑色调)下载,有兴趣的朋友玩玩。</title>
<link>https://huobazi.github.com/blog/2008/06/14/myvs2005colorschema/</link>
<pubDate>Sat, 14 Jun 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/06/14/myvs2005colorschema/</guid>
<description><p>提供我现用的Vs配色(灰黑色调)下载,</p>
<p> </p>
<p>有兴趣的朋友玩玩。</p>
<p> </p>
<p>附件是Vs2005的,如果要在Vs2008下用,</p>
<p> </p>
<p>自己用文本编辑器打开修改version为9.0即可。效果见截图</p></description>
</item>
<item>
<title>地震- 新房变危房</title>
<link>https://huobazi.github.com/blog/2008/05/13/cb-1194436/</link>
<pubDate>Tue, 13 May 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/05/13/cb-1194436/</guid>
<description>受灾了
2008-5-12日 2点30分左右,我被晃醒,感觉床在动,奔置厨房,感觉就像在树梢上,所有电话均不能拨出,看到窗外瓷砖下落。
数十秒后,穿衣,下楼,秩序还不错,奔袭至丰汇南路,早上得知自己新买新西兰小区的准备结婚用的新房变危房了,墙体裂缝,物业让回家搬东西
祝各位朋友都安全!公司让我们撤了!! http://www.daminggong.net/xxl/</description>
</item>
<item>
<title>CustomError可以设置绝对路径</title>
<link>https://huobazi.github.com/blog/2008/04/23/customerrordirecturlcanuseabsolutepath/</link>
<pubDate>Wed, 23 Apr 2008 00:00:00 +0000</pubDate>
<guid>https://huobazi.github.com/blog/2008/04/23/customerrordirecturlcanuseabsolutepath/</guid>
<description>偶然发现web.config内自定义错误信息页面
&lt;customErrors mode="RemoteOnly" defaultRedirect="503.aspx"&gt;
&lt;error statusCode="404" redirect="404.aspx"/&gt;
&lt;/customErrors&gt;
可以设置成
&lt;customErrors mode="RemoteOnly" defaultRedirect="503.aspx"&gt;
&lt;error statusCode="404" redirect="http://www.github.com/404.aspx"/&gt;
&lt;/customErrors&gt;
这样的绝对路径.
看了一下 CustomErrorsSection 中的代码
internalstringGetRedirectString(intcode)
{
stringabsoluteRedirect =null;
if(this.Errors !=null)
{
CustomError error =this.Errors[code.ToString(CultureInfo.InvariantCulture)];
if(error !=null)