2011年9月20日火曜日

chrome extensions の Shortcut Manager用Script

chrome extensions の Shortcut Manager用Scriptをちょっとメンテナンス
気付いたらnicovideofireのサービスが終わってて使えなくなってたので

1
2
3
4
5
6
7
8
9
10
11
12
var url;
url = document.URL;
{
/*
window.open(url.replace("nicovideo","nicovideofire"),"_self","");
*/
    window.open(url.replace("nicovideo.jp/watch","nicomimi.net/play"),"new1","");
    window.open(url.replace("www.nicovideo.jp/watch","nicosound.anyap.info/confirm"),"new2","");
}else {
    alert("このページは変換できねーよm9(^Д^)");
}

2011年9月14日水曜日

Windows7の環境まわり

Windows7使い始めてぼちぼち1年位経つか
長年XP使ってたから7の環境周りがよくわからん

アプリケーション開発者向け Microsoft® Windows 7 対応アプリケーションの互換性
http://msdn.microsoft.com/ja-jp/windows/dd882533.aspx

ってMSがまとめてある情報ページ
そのつどつど調べるのめんどいからメモ

2011年8月12日金曜日

行単位で持っているデータを列として出力するSQL

ひとつの id に対して複数の val を行単位で保有するテーブル (表1)
から、ひとつの id に対して複数の val を列単位で抽出 (表2) するSQLのメモ
表2の取得は2種類
 その1.列として出力する内容を固定で定義
 その2.列として出力する内容が可変でもOKなように

テスト用テーブル作成するSQL と 表1の取得
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- テスト用テーブル作成するSQL:
if exists (
    select * from tempdb.dbo.sysobjects
    where id = object_id('tempdb.dbo.#hoge')
    )
begin
     drop table #hoge
end
select * into #hoge from (
select 'a' id,'o' val union all
select 'a','x' union all
select 'a','-' union all
select 'a','+' union all
select 'a','/' union all
select 'b','o' union all
select 'c','x')t
 
 
-- 表1の内容を出力するSQL:
select * from #hoge

表2の内容を出力するSQL その1
1
2
3
4
5
6
7
8
9
10
11
12
-- 表2の内容を出力するSQL:
--  列として出力する内容が固定
select id
    ,   max(case row_num when 1 then val else '' end ) val1
    ,   max(case row_num when 2 then val else '' end ) val2
    ,   max(case row_num when 3 then val else '' end ) val3
    ,   max(case row_num when 4 then val else '' end ) val4
    ,   max(case row_num when 5 then val else '' end ) val5
from (
    select id, val, row_number() over (partition by id order by id) row_num from #hoge
    ) a
group by id

表2の内容を出力するSQL その2
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
-- 表2の内容を出力するSQL:
--  列として出力する内容が可変
declare @cntLoop int
    ,   @cntColumn int
    ,   @variableColFields as varchar(8000)
    ,   @variableColumnName as varchar(10)
set @cntLoop = 1
set @variableColFields = ''
set @variableColumnName = 'val'
 
select @cntColumn = max(rownum) from (
    select row_number() over (partition by id order by id) rownum
    from #hoge
    ) a
 
while @cntLoop <= @cntColumn
begin
    if @cntLoop > 1
    begin
        set @variableColFields = @variableColFields + ','
    end
 
     
    set @variableColFields = @variableColFields
        + ' max(case row_num when ' + convert(varchar,@cntLoop)
        + ' then val else '''' end ) ' + @variableColumnName + convert(varchar,@cntLoop) + char(13) + char(10)
    set @cntLoop = @cntLoop + 1  
end
 
 
exec ('select id ,' + @variableColFields + '
from (
    select id, ' + @variableColumnName + ', row_number() over (partition by id order by id) row_num from #hoge
    ) a
group by id')

2011年8月8日月曜日

ネットワークドライブ上のXLSファイルを開くのが遅い

タイトルの通り WIndows7 X Office2007(Excel) の環境で旧Excelファイル(xls)開くのが遅い。
とにかく遅い。原因はよくわからないけどxlsファイル開くときだけが半端なく重いので
拡張子「xls」を開くときの挙動を見て不要な機能のせいで重いのなら無効化にしてやろう
と思って、下記参考。
Windows 7にてファイルの関連づけを編集したい - Microsoft Answers
Windows VistaやWindows 7では、OSの機能として、関連付けに関する詳細設定はできなくなりました
ってことで却下。

じゃあ自前PCなのでOfficeのHotfixとかで出てないかな、で下記参考。
An Office program is slow or may appear to stop responding (hang) when you open a file from a network location
When you try to open a file from a network location in one of the Microsoft Office programs listed in the "Applies To" section of this article, the Office program may run very slowly or may appear to stop responding (hang).
ってことでよさげ。実際hangってこたぁないけど
ちょっと時間ないからコレで今日半日使ってみてどうかな、と

<2011/08/09 追記>
たぶん解決した。Excelブック開くのが5分の1位になったよっと。
最初のMicrosoft Fix it 50637 消さないと。

全然違うことで下記ページをみてて当たり前のことに気がついた
マイクロソフト セキュリティ アドバイザリ (2501584): Microsoft Office 向けの Microsoft Office ファイル検証機能の公開
セキュリティの設定が影響してるんだ たぶん。
セキュリティ云々より開くのがクソ遅いと仕事にならないので
Excelリボンのオフィスボタン?(正式名所知らん)から
Excelのオプション→セキュリティセンター→セキュリティセンターの設定→信頼できる場所 の設定で
「プライベートネットワーク上にある信頼できる場所を許可する(推奨しません)」にチェック入れて
社内のネットワークドライブを場所に追加。
コレで早くなったよ

2011年6月16日木曜日

今更、SQL Server Management Studio 2008 R2 SP1

SQL Server 2008 Service Pack 1 で修正される問題の一覧
SQL Server 2008 で、SQL Server Management Studio を使用して SQL Server 2008 より前のインスタンスに接続すると、対応するかっこの強調表示機能が動作しません。
これのせいでちょっと時間無駄にした。

と思ったらこれは誤爆。2008R2のSPじゃなくて。2008のサービスパックだった。
バージョン的には2008R2>2008SP1なのに かっこの対応付け強調表示がONになってないんだけど
これは取り敢えず保留。orz

chrome extensionsメモメモ

ウェブ開発者必携のGoogle Chromeの15の拡張機能 | コリス
CSSの制作・検証に役立つChromeの機能拡張のまとめ | コリス

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
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
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="date-outer">
         
<h2 class="date-header"><span>2011年3月17日木曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="4222843745411408396"></a>
<h3 class="post-title entry-title">
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
自分用メモ
 
 
 
<a href="http://msdn.microsoft.com/ja-jp/evalcenter/ff459612.aspx">SQL Server 2008 R2 評価版 | ダウンロード、評価、リソースの入手</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/03/sql-server-2008-r2-sql08r2selflearningm.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-03-17T15:41:00+09:00">15:41</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/03/sql-server-2008-r2-sql08r2selflearningm.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=4222843745411408396&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=4222843745411408396&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=4222843745411408396&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=4222843745411408396&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=4222843745411408396&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/.net" rel="tag">.net</a>,
<a href="https://thcoo.blogspot.com/search/label/asp.net" rel="tag">asp.net</a>,
<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="date-outer">
         
<h2 class="date-header"><span>2011年3月11日金曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="2382239846632232626"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/03/centos55-redmine-111.html">CentOS5.5 に redmine 1.1.1 を導入してみる</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
下記サイトを参考にさせて貰った
 
<a href="http://blog.96q.org/2010/10/04/redmine-1-0-2-installing-the-centos5-5/">webプログラマーのメモ » CentOS5.5 に redmine-1.0.2 をインストールする</a>
 
 
 
redmine1.0.2の手順なので1.1.1に読み/書き変えて実行
 
 
 
 
 
▼追加でやったこと(つまずいたところ)
 
・rake generate_session_storeで怒られる
 
メッセージにあるとおり下記実行
 
gem install -v=0.4.2 i18n
 
 
 
・# rake db:migrate RAILS_ENV=production を実行すると
 
rake aborted!
 
<span class="goog_qs-tidbit goog_qs-tidbit-0" style="background-color: #ffffdd; color: black; display: inline !important; text-decoration: inherit;">undefined method `address=' for ActionMailer::Base:Class </span>
 
と怒られてコマンド(DB作成)に失敗する。
 
<a href="http://blog.redmine.jp/articles/redmine-1_0-installation_centos/">redmine.JP Blog</a> にある「<span class="Apple-style-span" style="color: #333333; font-family: メイリオ, Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif; font-size: 16px; line-height: 25px;">4. email.ymlの設定</span>」の部分で
 
<span class="Apple-style-span" style="color: #333333; font-family: メイリオ, Meiryo, 'MS Pゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif; font-size: 16px;"></span>
 
<pre style="border-bottom-color: rgb(153, 153, 153); border-bottom-style: solid; border-bottom-width: 1px; border-color: initial; border-left-color: rgb(153, 153, 153); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(153, 153, 153); border-right-style: solid; border-right-width: 1px; border-style: initial; border-top-color: rgb(153, 153, 153); border-top-style: solid; border-top-width: 1px; font-size: 14px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; padding-top: 4px; white-space: pre-wrap; word-wrap: break-word;">production:
  delivery_method: :smtp
  smtp_settings:
    address: localhost
    port: 25
    domain: host.example.jp</pre>これのsmtp_settings:とaddress:が段落(スペース2バイト)が入っていなかった為に起きてた。
 
公式のをコピペ、あるいは yml.exampleをcpして編集してればつまずかなかったぽい。
 
<span class="goog_qs-tidbit goog_qs-tidbit-0" style="background-color: #ffffdd; color: black; display: inline !important; text-decoration: inherit;">
 
</span>
 
 
 
▼よく分からなかった点(自分なりのまとめ)
 
devel…Developmemt / Development Library とかの模様。
 
手順の初め<事前準備>でインストールした"Development Tools"に含まれてる
 
開発用のヘッダファイルのインストールを行うことを意味しているっぽい。
 
tar.gzの状態で公開されてるファイル(ソース)をWebからダウンロード
 
→ 解凍/展開したソースをコンパイルかける → インストール
 
で各種コンポーネント(Ruby,MySQL,Apache)をインストールする流れと推測。
<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/03/centos55-redmine-111.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-03-11T16:13:00+09:00">16:13</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/03/centos55-redmine-111.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=2382239846632232626&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=2382239846632232626&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=2382239846632232626&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=2382239846632232626&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=2382239846632232626&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年3月5日土曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="1175725088466306605"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/03/syntax-highlighter.html">Syntax Highlighterいれてみる</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
参考にさせて頂いたサイト:<a href="http://ascii.jp/elem/000/000/401/401907/">ASCII.jp:技術系サイトに必需品! ソースコードは鮮やかに</a>
 
と公式:<a href="http://alexgorbatchev.com/SyntaxHighlighter/">SyntaxHighlighter</a>
 
 
 
早速使ってみた結果が下の通り、思ったとおりに出てるかなっと。
 
 
 
<pre class="brush:html">参考にさせて頂いたサイト:<a href="http://ascii.jp/elem/000/000/401/401907/">ASCII.jp:技術系サイトに必需品! ソースコードは鮮やかに</a>
と公式:<a href="http://alexgorbatchev.com/SyntaxHighlighter/">SyntaxHighlighter</a>
hoge
hoge
hoge
hoge
<link href="//alexgorbatchev.com/pub/sh/current/styles/shCore.css" rel="stylesheet" type="text/css">
</pre>
 
でもなんかlink含んでると<linkタグはbloggerでは使えない< p=""></linkタグはbloggerでは使えない<>
 
<span class="Apple-style-span" style="color: #cc0000; font-family: 'trebuchet ms', verdana, arial, sans-serif; font-size: x-small;">作成された HTML ファイルは承認できません: タグは使用できません: LINK
 
<span class="Apple-style-span" style="color: black; font-family: 'MS PGothic'; font-size: small;">とか</span></span>
 
<span class="Apple-style-span" style="color: #cc0000; font-family: 'trebuchet ms', verdana, arial, sans-serif; font-size: x-small;"><span class="Apple-style-span" style="color: black; font-family: 'MS PGothic'; font-size: small;"><span class="Apple-style-span" style="color: #cc0000; font-family: 'trebuchet ms', verdana, arial, sans-serif; font-size: x-small;">作成された HTML ファイルは承認できません: タグが破損しています: LINKタグはBLOGGERでは使えない</span></span></span>
 
<span class="Apple-style-span" style="color: #cc0000; font-family: 'trebuchet ms', verdana, arial, sans-serif; font-size: x-small;"><span class="Apple-style-span" style="color: black; font-family: 'MS PGothic'; font-size: small;"><span class="Apple-style-span" style="color: #cc0000; font-family: 'trebuchet ms', verdana, arial, sans-serif; font-size: x-small;"></span>と怒られる。が、「この投稿の本文について HTML エラーを表示しない」にチェックするとページ自体はキチンと保存されるっぽい</span></span>
<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/03/syntax-highlighter.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-03-05T21:55:00+09:00">21:55</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/03/syntax-highlighter.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=1175725088466306605&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=1175725088466306605&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=1175725088466306605&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=1175725088466306605&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=1175725088466306605&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年3月3日木曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="7698789821080407968"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/03/centos55git.html">CentOS5.5でGit環境つくる</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
参考にさせていただいたサイト
 
<a href="http://d.hatena.ne.jp/tarurut/20101213/1292226546">CentOS 5.5 で rpm git 環境を作成する - メモ@taruru</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/03/centos55git.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-03-03T16:39:00+09:00">16:39</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/03/centos55git.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=7698789821080407968&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=7698789821080407968&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=7698789821080407968&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=7698789821080407968&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=7698789821080407968&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/centos" rel="tag">centos</a>,
<a href="https://thcoo.blogspot.com/search/label/git" rel="tag">git</a>,
<a href="https://thcoo.blogspot.com/search/label/linux" rel="tag">linux</a>
</span>
</div>
<div class="post-footer-line post-footer-line-3"><span class="post-location">
</span>
</div>
</div>
</div>
</div>
<div class="post-outer">
<div class="post hentry">
<a name="5320515834324953499"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/03/emacs232-centos55.html">Emacs23.2を CentOS5.5に導入</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
VMWare Player 3.1.3にCentOS5.5をインストールした流れから
 
 
 
参考にさせて頂いたサイト
 
<a href="http://d.hatena.ne.jp/speg03/20090807/1249656276">Emacs 23.1 on CentOS - speg03の日記</a>
 
 
 
23.1を23.2にすればOK
<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/03/emacs232-centos55.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-03-03T16:18:00+09:00">16:18</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/03/emacs232-centos55.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=5320515834324953499&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=5320515834324953499&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=5320515834324953499&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=5320515834324953499&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=5320515834324953499&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/centos" rel="tag">centos</a>,
<a href="https://thcoo.blogspot.com/search/label/emcas" rel="tag">emcas</a>,
<a href="https://thcoo.blogspot.com/search/label/linux" rel="tag">linux</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="date-outer">
         
<h2 class="date-header"><span>2011年3月1日火曜日</span></h2>
 
          <div class="date-posts">
         
<div class="post-outer">
<div class="post hentry">
<a name="7683005471868786698"></a>
<h3 class="post-title entry-title">
<a href="https://thcoo.blogspot.com/2011/03/blogger-google-bloggerhacks-tips-tweaks.html">Bloggerのラベルをクラウド化する</a>
</h3>
<div class="post-header">
<div class="post-header-line-1"></div>
</div>
<div class="post-body entry-content">
<a href="http://blogger-customize-tips.blogspot.com/2008/12/make-label-cloud.html">Bloggerのラベルをラベルクラウド化する方法 » Google BloggerブログHacks Tips Tweaks</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/03/blogger-google-bloggerhacks-tips-tweaks.html" rel="bookmark" title="permanent link"><abbr class="published" title="2011-03-01T15:37:00+09:00">15:37</abbr></a>
</span>
<span class="post-comment-link">
<a class="comment-link" href="https://thcoo.blogspot.com/2011/03/blogger-google-bloggerhacks-tips-tweaks.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=7683005471868786698&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=7683005471868786698&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=7683005471868786698&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=7683005471868786698&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=7683005471868786698&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/blogger%20tips" rel="tag">blogger tips</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=2012-02-09T13:47:00%2B09:00&max-results=7&reverse-paginate=true" id="Blog1_blog-pager-newer-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 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/09/">
9月
</a>
<span class="post-count" dir="ltr">(2)</span>
<ul class="posts">
<li><a href="https://thcoo.blogspot.com/2011/09/chrome-extensions-shortcut.html">chrome extensions の Shortcut Manager用Script</a></li>
<li><a href="https://thcoo.blogspot.com/2011/09/windows7.html">Windows7の環境まわり</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/08/">
8月
</a>
<span class="post-count" dir="ltr">(4)</span>
<ul class="posts">
<li><a href="https://thcoo.blogspot.com/2011/08/blog-post_24.html">特定の文字を含まない行を検索する (秀丸 正規表現 )</a></li>
<li><a href="https://thcoo.blogspot.com/2011/08/blog-post.html">気になるやつ</a></li>
<li><a href="https://thcoo.blogspot.com/2011/08/id-val-id-val-sql-if-exists-select-from.html">行単位で持っているデータを列として出力するSQL</a></li>
<li><a href="https://thcoo.blogspot.com/2011/08/xls.html">ネットワークドライブ上のXLSファイルを開くのが遅い</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/06/">
6月
</a>
<span class="post-count" dir="ltr">(3)</span>
<ul class="posts">
<li><a href="https://thcoo.blogspot.com/2011/06/blog-post.html">後でやる メモメモ</a></li>
<li><a href="https://thcoo.blogspot.com/2011/06/sql-server-management-studio-2008-r2.html">今更、SQL Server Management Studio 2008 R2 SP1</a></li>
<li><a href="https://thcoo.blogspot.com/2011/06/chrome-extensions.html">chrome extensionsメモメモ</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/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>
<ul class="posts">
<li><a href="https://thcoo.blogspot.com/2011/03/centos55-redmine-111.html">CentOS5.5 に redmine 1.1.1 を導入してみる</a></li>
<li><a href="https://thcoo.blogspot.com/2011/03/syntax-highlighter.html">Syntax Highlighterいれてみる</a></li>
<li><a href="https://thcoo.blogspot.com/2011/03/centos55git.html">CentOS5.5でGit環境つくる</a></li>
<li><a href="https://thcoo.blogspot.com/2011/03/emacs232-centos55.html">Emacs23.2を CentOS5.5に導入</a></li>
<li><a href="https://thcoo.blogspot.com/2011/03/blogger-google-bloggerhacks-tips-tweaks.html">Bloggerのラベルをクラウド化する</a></li>
</ul>
</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'] = 'AOuZoY4sqkeKiXe-UNUcrR0liKHJM2GrwQ:1744263497986';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d810985007834814769','//thcoo.blogspot.com/2011/','810985007834814769');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '810985007834814769', 'title': 'thc_oO', 'url': 'https://thcoo.blogspot.com/2011/', 'canonicalUrl': 'http://thcoo.blogspot.com/2011/', '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': '2011', 'pageTitle': 'thc_oO: 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/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': false, 'isArchive': true, 'isLabelSearch': false, 'archive': {'year': 2011, 'rangeMessage': '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>