2011年4月21日木曜日

RAM Diskとかもやってみる

SSD買ったし32bitOSにはメモリあまっちゃうんで

OS:Windows7 Professional
搭載メモリ:2GB
主記憶:HDD(詳細は今のところ不明

買ったもの
メモリ:4GB
主記憶:SSD

こんな状態だので
HDDで普段使いのツールインストールしてからRAM Diskセットアップして
そっからSSDにまるごと引越ししようかと計画中。
約2GBをRAM Diskとして使える計算だけどどんなもんかなー。
よさげだったらメモリ4GBさらに買い足して8GBにしようかとも思い中。

2011/04/30追記

Gavotte Ramdisk まとめWIKI - トップページ
とりあえずChromeが高速化するかテスト

1
2
3
4
rem Google Chorome用
rd /S /Q "%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Cache"
mkdir R:\ChromeCache
mklink /d "%userprofile%\AppData\Local\Google\Chrome\User Data\Default Cache" "R:\ChoromeCache"

2011/05/27追記
家で使ってるGavotte RAMDisk 1.0.4096. 4 (2008-01-25) がアップローダから消えてて見つからなかったので
違うバージョンを入れてみる
Gavotte Ramdisk - Freeware - EN - Download.CHIP.eu
これだとram4g.regが含まれていないものだったので「32bitOSで4GBを使う」為の設定が必要になる
設定1.レジストリ(XPもWin7も共通)。
設定2.bootのPAE設定(XPの場合はC:\boot.iniに追記する)がWindows7でどのように設定するのか不明だったけど
下記サイトで説明されてた。BDCEDITコマンドを使うようです。
How to use full 4GB RAM in Windows 7 32 Bit (Gavotte RAMDisk in Windows 7) | Homepage of Jens Scheffler

2011/06/20追記
色々試行錯誤して今のところ安定稼働してる会社PCでのRamDiskのWindows開始時に起動する
初期化用Batファイルをメモ
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
FORMAT /FS:NTFS /V:RamDisk-PAE /A:512 R: /Q /Y >bootload.log
rem rem <template>
rem set HDD=<path>
rem set RAM=<path>
rem rd /S /Q %HDD%
rem mkdir %RAM%
rem mklink /D %HDD% %RAM%
rem Windows Temporary用
set HDD="%systemroot%\temp"
set RAM="R:\temp\windows\"
rd /S /Q %HDD%
mkdir %RAM%
mklink /D %HDD% %RAM%
rem Google Chorome用
set HDD="%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Cache"
set RAM="R:\Chrome\Cache"
rd /S /Q %HDD%
mkdir %RAM%
mklink /D %HDD% %RAM%
set HDD="%userprofile%\AppData\Local\Google\Chrome\User Data\Default\Media Cache"
set RAM="R:\Chrome\Media Cache"
rd /S /Q %HDD%
mkdir %RAM%
mklink /D %HDD% %RAM%
rem Visual Studio 9.0
set HDD="%userprofile%\AppData\Local\Microsoft\VisualStudio\9.0\ProjectAssemblies"
set RAM="R:\VS9.0\ProjectAssemblies"
rd /S /Q %HDD%
mkdir %RAM%
mklink /D %HDD% %RAM%
rem IE
set HDD="%userprofile%\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5"
set RAM="R:\IE Temp"
rd /S /Q %HDD%
mkdir %RAM%
mklink /D %HDD% %RAM%
rem Terminal Service Client
set HDD="%userprofile%\AppData\Local\Microsoft\Terminal Server Client\Cache"
set RAM="R:\Microsoft\Terminal Server Client\Cache"
rd /S /Q %HDD%
mkdir %RAM%
mklink /D %HDD% %RAM%
pause
 
<div style="clear: both;"></div>
 
<div class="post-footer">
<div class="post-footer-line post-footer-line-1"><span class="post-author vcard">
投稿者
<span class="fn">thc_oO</span>
</span>
<span class="post-timestamp">
時刻:
<a class="timestamp-link" href="https://thcoo.blogspot.com/2011/04/ram-disk.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-04-21T00:52:00+09:00">0:52</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/04/ram-disk.html#comment-form" onclick="">0
コメント</a>
</span>
<span class="post-icons">
<span class="item-control blog-admin pid-1247963707">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18">
</a>
</span>
</span>
<div class="post-share-buttons">
<a class="goog-inline-block share-button sb-email" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7099521786964380680&target=email" target="_blank" title="メールで送信"><span class="share-button-link-text">メールで送信</span></a><a class="goog-inline-block share-button sb-blog" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7099521786964380680&target=blog" onclick="window.open(this.href, "_blank", "height=270,width=475"); return false;" target="_blank" title="BlogThis!"><span class="share-button-link-text">BlogThis!</span></a><a class="goog-inline-block share-button sb-twitter" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7099521786964380680&target=twitter" target="_blank" title="X で共有"><span class="share-button-link-text">X で共有</span></a><a class="goog-inline-block share-button sb-facebook" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7099521786964380680&target=facebook" onclick="window.open(this.href, "_blank", "height=430,width=640"); return false;" target="_blank" title="Facebook で共有する"><span class="share-button-link-text">Facebook で共有する</span></a><a class="goog-inline-block share-button sb-pinterest" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7099521786964380680&target=pinterest" target="_blank" title="Pinterest に共有"><span class="share-button-link-text">Pinterest に共有</span></a>
</div>
</div>
<div class="post-footer-line post-footer-line-2"><span class="post-labels">
</span>
</div>
<div class="post-footer-line post-footer-line-3"><span class="post-location">
</span>
</div>
</div>
 
 
 
           
         
 
          <div class="date-outer">
         
<h2 class="date-header"><span>2011年4月20日水曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="7285553702639858477"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/04/ssd.html">SSD買ったので</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
SSD買ったのでWindows7で設定しておいたほうが良さそうなSSDの設定
 
 
 
▼参考サイト
 
<a href="http://ritoru-aru-mk.blog.so-net.ne.jp/2010-03-15-1">SSD換装後の最適化設定(windows7 64bit):RitoruNet@blog:So-netブログ</a>
<div style="clear: both;"></div>
</div>
<div class="post-footer">
<div class="post-footer-line post-footer-line-1"><span class="post-author vcard">
投稿者
<span class="fn">thc_oO</span>
</span>
<span class="post-timestamp">
時刻:
<a class="timestamp-link" href="https://thcoo.blogspot.com/2011/04/ssd.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-04-20T18:47:00+09:00">18:47</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/04/ssd.html#comment-form" onclick="">0
コメント</a>
</span>
<span class="post-icons">
<span class="item-control blog-admin pid-1247963707">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18">
</a>
</span>
</span>
<div class="post-share-buttons">
<a class="goog-inline-block share-button sb-email" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7285553702639858477&target=email" target="_blank" title="メールで送信"><span class="share-button-link-text">メールで送信</span></a><a class="goog-inline-block share-button sb-blog" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7285553702639858477&target=blog" onclick="window.open(this.href, "_blank", "height=270,width=475"); return false;" target="_blank" title="BlogThis!"><span class="share-button-link-text">BlogThis!</span></a><a class="goog-inline-block share-button sb-twitter" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7285553702639858477&target=twitter" target="_blank" title="X で共有"><span class="share-button-link-text">X で共有</span></a><a class="goog-inline-block share-button sb-facebook" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7285553702639858477&target=facebook" onclick="window.open(this.href, "_blank", "height=430,width=640"); return false;" target="_blank" title="Facebook で共有する"><span class="share-button-link-text">Facebook で共有する</span></a><a class="goog-inline-block share-button sb-pinterest" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=7285553702639858477&target=pinterest" target="_blank" title="Pinterest に共有"><span class="share-button-link-text">Pinterest に共有</span></a>
</div>
</div>
<div class="post-footer-line post-footer-line-2"><span class="post-labels">
</span>
</div>
<div class="post-footer-line post-footer-line-3"><span class="post-location">
</span>
</div>
</div>
</div>
</div>
 
          </div></div>
         
 
          <div class="date-outer">
         
<h2 class="date-header"><span>2011年4月6日水曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="1327583479918523309"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/04/ms-sql-server-2005.html">MS SQL Server 2005 インデックス関連メモ</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
<a href="http://technet.microsoft.com/ja-jp/magazine/2007.03.sqlindex.aspx">SQL Server: インデックスの状態を診断する新しいツール</a>
 
 
 
<a href="http://blogs.msdn.com/b/sqljapan/archive/2007/05/16/sql-server-2005.aspx">SQL Server 2005におけるインデックス有効性の評価、および、管理 - SQL Server 開発チーム ブログ - Site Home - MSDN Blogs</a>
<div style="clear: both;"></div>
</div>
<div class="post-footer">
<div class="post-footer-line post-footer-line-1"><span class="post-author vcard">
投稿者
<span class="fn">thc_oO</span>
</span>
<span class="post-timestamp">
時刻:
<a class="timestamp-link" href="https://thcoo.blogspot.com/2011/04/ms-sql-server-2005.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-04-06T17:36:00+09:00">17:36</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/04/ms-sql-server-2005.html#comment-form" onclick="">0
コメント</a>
</span>
<span class="post-icons">
<span class="item-control blog-admin pid-1247963707">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18">
</a>
</span>
</span>
<div class="post-share-buttons">
<a class="goog-inline-block share-button sb-email" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=1327583479918523309&target=email" target="_blank" title="メールで送信"><span class="share-button-link-text">メールで送信</span></a><a class="goog-inline-block share-button sb-blog" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=1327583479918523309&target=blog" onclick="window.open(this.href, "_blank", "height=270,width=475"); return false;" target="_blank" title="BlogThis!"><span class="share-button-link-text">BlogThis!</span></a><a class="goog-inline-block share-button sb-twitter" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=1327583479918523309&target=twitter" target="_blank" title="X で共有"><span class="share-button-link-text">X で共有</span></a><a class="goog-inline-block share-button sb-facebook" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=1327583479918523309&target=facebook" onclick="window.open(this.href, "_blank", "height=430,width=640"); return false;" target="_blank" title="Facebook で共有する"><span class="share-button-link-text">Facebook で共有する</span></a><a class="goog-inline-block share-button sb-pinterest" href="https://www.blogger.com/share-post.g?blogID=810985007834814769&postID=1327583479918523309&target=pinterest" target="_blank" title="Pinterest に共有"><span class="share-button-link-text">Pinterest に共有</span></a>
</div>
</div>
<div class="post-footer-line post-footer-line-2"><span class="post-labels">
ラベル:
<a href="https://thcoo.blogspot.com/search/label/MS%20SQL%20Server" rel="tag">MS SQL Server</a>
</span>
</div>
<div class="post-footer-line post-footer-line-3"><span class="post-location">
</span>
</div>
</div>
</div>
</div>
 
        </div></div>
       
 
<div class="blog-pager" id="blog-pager">
<span id="blog-pager-newer-link">
<a class="blog-pager-newer-link" href="https://thcoo.blogspot.com/search?updated-max=2011-09-14T03:03:00%2B09:00&max-results=7&reverse-paginate=true" id="Blog1_blog-pager-newer-link" title="新しい投稿">新しい投稿</a>
</span>
<span id="blog-pager-older-link">
<a class="blog-pager-older-link" href="https://thcoo.blogspot.com/search?updated-max=2011-04-06T17:36:00%2B09:00&max-results=7" id="Blog1_blog-pager-older-link" title="前の投稿">前の投稿</a>
</span>
<a class="home-link" href="https://thcoo.blogspot.com/">ホーム</a>
</div>
<div class="clear"></div>
<div class="blog-feeds">
<div class="feed-links">
登録:
<a class="feed-link" href="https://thcoo.blogspot.com/feeds/posts/default" target="_blank" type="application/atom+xml">投稿 (Atom)</a>
</div>
</div>
 
 
 
<div class="column-left-outer">
<div class="column-left-inner">
<aside>
</aside>
</div>
</div>
<div class="column-right-outer">
<div class="column-right-inner">
<aside>
<div class="sidebar section" id="sidebar-right-1"><div class="widget AdSense" data-version="1" id="AdSense1">
<div class="widget-content">
<!-- thcoo_sidebar-right-1_AdSense1_1x1_as -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8937911055515344" data-ad-host="ca-host-pub-1556223355139109" data-ad-slot="7068436510" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<div class="clear"></div>
</div>
</div><div class="widget BlogArchive" data-version="1" id="BlogArchive1">
<h2>ブログ アーカイブ</h2>
<div class="widget-content">
<div id="ArchiveList">
<div id="BlogArchive1_ArchiveList">
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2021/">
2021
</a>
<span class="post-count" dir="ltr">(1)</span>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2021/05/">
5月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2015/">
2015
</a>
<span class="post-count" dir="ltr">(2)</span>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2015/10/">
10月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2015/04/">
4月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2014/">
2014
</a>
<span class="post-count" dir="ltr">(1)</span>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2014/03/">
3月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/">
2013
</a>
<span class="post-count" dir="ltr">(10)</span>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/11/">
11月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/10/">
10月
</a>
<span class="post-count" dir="ltr">(2)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/09/">
9月
</a>
<span class="post-count" dir="ltr">(2)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/08/">
8月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/06/">
6月
</a>
<span class="post-count" dir="ltr">(2)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2013/04/">
4月
</a>
<span class="post-count" dir="ltr">(2)</span>
</li>
</ul>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/">
2012
</a>
<span class="post-count" dir="ltr">(13)</span>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/12/">
12月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/09/">
9月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/08/">
8月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/04/">
4月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/03/">
3月
</a>
<span class="post-count" dir="ltr">(1)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/02/">
2月
</a>
<span class="post-count" dir="ltr">(3)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2012/01/">
1月
</a>
<span class="post-count" dir="ltr">(5)</span>
</li>
</ul>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate expanded">
<a class="toggle" href="javascript:void(0)">
<span class="zippy toggle-open">
 
        ▼ 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2011/">
2011
</a>
<span class="post-count" dir="ltr">(18)</span>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2011/09/">
9月
</a>
<span class="post-count" dir="ltr">(2)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2011/08/">
8月
</a>
<span class="post-count" dir="ltr">(4)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2011/06/">
6月
</a>
<span class="post-count" dir="ltr">(3)</span>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate expanded">
<a class="toggle" href="javascript:void(0)">
<span class="zippy toggle-open">
 
        ▼ 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2011/04/">
4月
</a>
<span class="post-count" dir="ltr">(3)</span>
<ul class="posts">
<li><a href="https://thcoo.blogspot.com/2011/04/ram-disk.html">RAM Diskとかもやってみる</a></li>
<li><a href="https://thcoo.blogspot.com/2011/04/ssd.html">SSD買ったので</a></li>
<li><a href="https://thcoo.blogspot.com/2011/04/ms-sql-server-2005.html">MS SQL Server 2005 インデックス関連メモ</a></li>
</ul>
</li>
</ul>
<ul class="hierarchy">
<li class="archivedate collapsed">
<a class="toggle" href="javascript:void(0)">
<span class="zippy">
 
        ► 
       
</span>
</a>
<a class="post-count-link" href="https://thcoo.blogspot.com/2011/03/">
3月
</a>
<span class="post-count" dir="ltr">(6)</span>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
</div><div class="widget Label" data-version="1" id="Label1">
<h2>ラベル</h2>
<div class="widget-content cloud-label-widget-content">
<span class="label-size label-size-3">
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-3">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/asp.net">asp.net</a>
<span class="label-count" dir="ltr">(3)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/blogger%20tips">blogger tips</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-3">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/centos">centos</a>
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-3">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/chrome">chrome</a>
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-4">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/chrome%20extensions">chrome extensions</a>
<span class="label-count" dir="ltr">(4)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/emcas">emcas</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-3">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Feed43">Feed43</a>
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-3">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Feedly">Feedly</a>
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-1">
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-3">
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/JavaScript">JavaScript</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-3">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/linux">linux</a>
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-5">
<span class="label-count" dir="ltr">(6)</span>
</span>
<span class="label-size label-size-5">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/MS%20SQL%20Server">MS SQL Server</a>
<span class="label-count" dir="ltr">(6)</span>
</span>
<span class="label-size label-size-1">
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Office2007">Office2007</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-4">
<span class="label-count" dir="ltr">(4)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/rails">rails</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-3">
<span class="label-count" dir="ltr">(2)</span>
</span>
<span class="label-size label-size-1">
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/shortcut%20keys">shortcut keys</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Sublime%20Text%202">Sublime Text 2</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Vagrant">Vagrant</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Windows">Windows</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/Windows7">Windows7</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-1">
<a dir="ltr" href="https://thcoo.blogspot.com/search/label/WordPress">WordPress</a>
<span class="label-count" dir="ltr">(1)</span>
</span>
<span class="label-size label-size-5">
<span class="label-count" dir="ltr">(6)</span>
</span>
<span class="label-size label-size-1">
<span class="label-count" dir="ltr">(1)</span>
</span>
<div class="clear"></div>
</div>
</div><div class="widget PopularPosts" data-version="1" id="PopularPosts1">
<h2>人気の投稿</h2>
<div class="widget-content popular-posts">
<ul>
<li>
<div class="item-thumbnail-only">
<div class="item-thumbnail">
</a>
</div>
<div class="item-title"><a href="https://thcoo.blogspot.com/2015/10/macthinkpad-bluetooth.html">MacでThinkpad Bluetooth キーボードを快適に使う為にやったこと</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-title"><a href="https://thcoo.blogspot.com/2012/02/iisasp.html">IIS/ASP.NETの負荷テストをどうやるか?(一時メモ)</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-title"><a href="https://thcoo.blogspot.com/2012/01/1016sql.html">10進数から16進数に変換するSQL</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-title"><a href="https://thcoo.blogspot.com/2011/08/xls.html">ネットワークドライブ上のXLSファイルを開くのが遅い</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-thumbnail">
</a>
</div>
<div class="item-title"><a href="https://thcoo.blogspot.com/2013/11/mac.html">macで拡張子がないテキストファイルを任意のエディタで開きたい</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-title"><a href="https://thcoo.blogspot.com/2012/02/dbmdfldfdbsql-ms-sql-server-2005-ms-sql.html">既存のDBをコピーして別DBを作る</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-thumbnail">
</a>
</div>
<div class="item-title"><a href="https://thcoo.blogspot.com/2013/06/feed43.html">Feed43が変なエラー吐いてるのに気づいた</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-title"><a href="https://thcoo.blogspot.com/2015/04/usps.html">USPSはいい加減だなーという話</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-thumbnail">
</a>
</div>
<div class="item-title"><a href="https://thcoo.blogspot.com/2021/05/wi-fi.html">ソフトバンク光のWi-Fi暗号キーはルーターが家に届いた時点で漏れている話</a></div>
</div>
<div style="clear: both;"></div>
</li>
<li>
<div class="item-thumbnail-only">
<div class="item-title"><a href="https://thcoo.blogspot.com/2013/10/macmission-controllaunchpadf9f10.html">macでmission controlとLaunchpadのショートカットキーをF9とF10に変えた</a></div>
</div>
<div style="clear: both;"></div>
</li>
</ul>
<div class="clear"></div>
</div>
</div><div class="widget Followers" data-version="1" id="Followers1">
<h2 class="title">フォロワー</h2>
<div class="widget-content">
<div id="Followers1-wrapper">
<div style="margin-right:2px;">
<div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script>
<div id="followers-iframe-container"></div>
<script type="text/javascript">
    window.followersIframe = null;
    function followersIframeOpen(url) {
      gapi.load("gapi.iframes", function() {
        if (gapi.iframes && gapi.iframes.getContext) {
          window.followersIframe = gapi.iframes.getContext().openChild({
            url: url,
            where: document.getElementById("followers-iframe-container"),
            messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER,
            messageHandlers: {
              '_ready': function(obj) {
                window.followersIframe.getIframeEl().height = obj.height;
              },
              'reset': function() {
                window.followersIframe.close();
                followersIframeOpen("https://www.blogger.com/followers/frame/810985007834814769?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMyMjIyMjIiByMyMjg4YmIqByNmZmZmZmYyByMwMDAwMDA6ByMyMjIyMjJCByMyMjg4YmJKByM5OTk5OTlSByMyMjg4YmJaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3dja\x26origin\x3dhttps://thcoo.blogspot.com");
              },
              'open': function(url) {
                window.followersIframe.close();
                followersIframeOpen(url);
              }
            }
          });
        }
      });
    }
    followersIframeOpen("https://www.blogger.com/followers/frame/810985007834814769?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMyMjIyMjIiByMyMjg4YmIqByNmZmZmZmYyByMwMDAwMDA6ByMyMjIyMjJCByMyMjg4YmJKByM5OTk5OTlSByMyMjg4YmJaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3dja\x26origin\x3dhttps://thcoo.blogspot.com");
  </script></div>
</div>
</div>
<div class="clear"></div>
</div>
</div><div class="widget Profile" data-version="1" id="Profile1">
<h2>自己紹介</h2>
<div class="widget-content">
<dl class="profile-datablock">
<dt class="profile-data">
<a class="profile-name-link g-profile" href="https://www.blogger.com/profile/00821957930050952791" rel="author" style="background-image: url(//www.blogger.com/img/logo-16.png);">
thc_oO
</a>
</dt>
<dd class="profile-textblock">すごいプログラマに憧れるプログラマ見習いのようなもの</dd>
</dl>
<a class="profile-link" href="https://www.blogger.com/profile/00821957930050952791" rel="author">詳細プロフィールを表示</a>
<div class="clear"></div>
</div>
</div><div class="widget Text" data-version="1" id="Text1">
<h2 class="title">このブログについて</h2>
<div class="widget-content">
<div style="font-size: 12px;">このサイトは忘れっぽい自分の為のメモ書きみたいなブログです。<div>メモついでに同じ問題で困ってる人が迷い込んだ時の助けになったのなら嬉しいです。</div><div>万が一、当サイトの内容が他者の権利を侵害してしまっている場合はご指摘頂けると助かります。直ちに訂正します。</div></div>
</div>
<div class="clear"></div>
</div></div>
</aside>
</div>
</div>
 
<div style="clear: both"></div>
<!-- columns -->
 
<!-- main -->
 
 
<div class="main-cap-bottom cap-bottom">
<div class="cap-left"></div>
<div class="cap-right"></div>
</div>
 
<footer>
<div class="footer-outer">
<div class="footer-cap-top cap-top">
<div class="cap-left"></div>
<div class="cap-right"></div>
</div>
<div class="fauxborder-left footer-fauxborder-left">
<div class="fauxborder-right footer-fauxborder-right"></div>
<div class="region-inner footer-inner">
<div class="foot no-items section" id="footer-1"></div>
<table border="0" cellpadding="0" cellspacing="0" class="section-columns columns-2">
<tbody>
<tr>
<td class="first columns-cell">
<div class="foot no-items section" id="footer-2-1"></div>
</td>
<td class="columns-cell">
<div class="foot no-items section" id="footer-2-2"></div>
</td>
</tr>
</tbody>
</table>
<!-- outside of the include in order to lock Attribution widget -->
<div class="foot section" id="footer-3"><div class="widget Attribution" data-version="1" id="Attribution1">
<div class="widget-content" style="text-align: center;">
Powered by <a href="https://www.blogger.com" target="_blank">Blogger</a>.
</div>
<div class="clear"></div>
</div></div>
</div>
</div>
<div class="footer-cap-bottom cap-bottom">
<div class="cap-left"></div>
<div class="cap-right"></div>
</div>
</div>
</footer>
<!-- content -->
 
 
<div class="content-cap-bottom cap-bottom">
<div class="cap-left"></div>
<div class="cap-right"></div>
</div>
 
 
<script type="text/javascript">
    window.setTimeout(function() {
        document.body.className = document.body.className.replace('loading', '');
      }, 10);
  </script>
 
<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/3551516202-widgets.js"></script>
<script type="text/javascript">
window['__wavt'] = 'AOuZoY6f7P7fw1YYkSYWLIreRuNbJB41Ww:1744249404764';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d810985007834814769','//thcoo.blogspot.com/2011/04/','810985007834814769');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '810985007834814769', 'title': 'thc_oO', 'url': 'https://thcoo.blogspot.com/2011/04/', 'canonicalUrl': 'http://thcoo.blogspot.com/2011/04/', 'homepageUrl': 'https://thcoo.blogspot.com/', 'searchUrl': 'https://thcoo.blogspot.com/search', 'canonicalHomepageUrl': 'http://thcoo.blogspot.com/', 'blogspotFaviconUrl': 'https://thcoo.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'ja', 'localeUnderscoreDelimited': 'ja', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22thc_oO - Atom\x22 href\x3d\x22https://thcoo.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22thc_oO - RSS\x22 href\x3d\x22https://thcoo.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22thc_oO - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/810985007834814769/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-8937911055515344', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/2d13b6e9c1c14da1', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': '\u30ea\u30f3\u30af\u3092\u53d6\u5f97', 'key': 'link', 'shareMessage': '\u30ea\u30f3\u30af\u3092\u53d6\u5f97', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Facebook \u3067\u5171\u6709', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': '\xd7', 'key': 'twitter', 'shareMessage': '\xd7 \u3067\u5171\u6709', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Pinterest \u3067\u5171\u6709', 'target': 'pinterest'}, {'name': '\u30e1\u30fc\u30eb', 'key': 'email', 'shareMessage': '\u30e1\u30fc\u30eb', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27ja\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': '\u7d9a\u304d\u3092\u8aad\u3080', 'pageType': 'archive', 'pageName': '4\u6708 2011', 'pageTitle': 'thc_oO: 4\u6708 2011'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': '\u7de8\u96c6', 'linkCopiedToClipboard': '\u30ea\u30f3\u30af\u3092\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3057\u305f\u3002', 'ok': 'OK', 'postLink': '\u6295\u7a3f\u306e\u30ea\u30f3\u30af'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': '\u30ab\u30b9\u30bf\u30e0', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'thc_oO', 'description': '\u30cd\u30c3\u30c8\u3068\u304b\u3053\u3093\u3074\u3085\u30fc\u305f\u30fc\u7684\u306a\u3053\u3068\u3092\u30c0\u30e9\u30c0\u30e9\u30e1\u30e2\u308b\u500b\u4eba\u7684\u306a\u899a\u66f8', 'url': 'https://thcoo.blogspot.com/2011/04/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2011, 'month': 4, 'rangeMessage': '4\u6708, 2011\u306e\u6295\u7a3f\u3092\u8868\u793a\u3057\u3066\u3044\u307e\u3059'}}}]);
_WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2741823084-lbx__ja.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/3681588378-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'sidebar-right-1', document.getElementById('AdSense1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar-right-1', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': '\u8aad\u307f\u8fbc\u307f\u4e2d\x26hellip;'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebar-right-1', document.getElementById('Label1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'sidebar-right-1', document.getElementById('PopularPosts1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar-right-1', document.getElementById('Followers1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar-right-1', document.getElementById('Profile1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text1', 'sidebar-right-1', document.getElementById('Text1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull'));
</script>
 
</path></path></template>