2008년 12월 29일 월요일
[Tip][Link] Protecting yourself when downloading using BitTorrent
...... more
Protecting yourself when downloading using BitTorrent
2008년 12월 14일 일요일
2008년 7월 11일 금요일
YouTube Video Quality Investigation
http://www.youtube.com/watch?v=U6KoEfczGEo 에서 공급한 동영상 소스
<param name="movie" value="http://www.youtube.com/v/U6KoEfczGEo&hl=en&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/U6KoEfczGEo&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed>
</object>
more..
DoA님께서 블로그에 올리신 소스
<param name="movie" value="http://www.youtube.com/v/U6KoEfczGEo">
<embed src="http://www.youtube.com/v/U6KoEfczGEo" type="application/x-shockwave-flash" width="480" height="360"> </embed>
</object>
more..
http://www.youtube.com/watch?v=U6KoEfczGEo&fmt=18 에서 capture.
수정된 고화질용 소스
<param name="movie" value="http://www.youtube.com/v/U6KoEfczGEo&fmt=18"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/U6KoEfczGEo&fmt=18" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed>
</object>
/** 고화질 요청이 적용되지 않음. **/
DoA님께서 블로그에 올리신 고화질용 소스
<param name="movie" value="http://www.youtube.com/v/U6KoEfczGEo&ap=%2526fmt%3D18">
<embed src="http://www.youtube.com/v/U6KoEfczGEo&ap=%2526fmt%3D18" type="application/x-shockwave-flash" width="480" height="360"> </embed>
</object>
/** 고화질 요청이 적용되었음. **/
제목처럼 거창한 작업은 아니지만 나름대로 상당히 번거로운 포스팅이 되고 말았다.
위에서 알 수 있듯이 http://www.youtube.com/watch?v=U6KoEfczGEo&fmt=18 를 통해 고화질 비디오를 보는 것은 가능하였으나 동영상 소스 삽입은 동작하지 않았다.
이러한 현상이 일부 비디오에 해당하는 문제인지 전체 YouTube에 해당하는 문제인지는 아직 알 수 없다.
예전에 블로그에 올린 YouTube 비디오들은 다 사전에 두 버전을 비교해보았었기 때문에 당연히 작동한다고 믿고 있었던 것이 잘못된 것이었다.
2008년 6월 28일 토요일
[Link] High Quality on Youtube
Youtube has slowly started to create better quality versions of many videos, adding links that say, "Watch this video in higher quality." See this High Quality example and compare it to Youtube's Normal Quality.
..... more in Jimmy Ruska's Blog
+
How to Embed High Quality and Higher Resolution YouTube Videos on Blog or Website
2008년 5월 30일 금요일
[Tip] CD1장짜리 통으로 된 Monkey's Audio APE를 각 track별로 나누기
MP3, OGG와 같은 손실 압축 코덱(lossy compression)과는 달리, 원본 웨이브폼과 똑같은 웨이브폼을 재현한다. 그러므로 Data 크기는 줄어들지만 음질저하가 일어나지 않는다.
Monkey's Audio의 파일들은 확장자 .ape를 쓴다.(ape는 원숭이, 유인원)
WinAmp나 Nero Burning Rom 등의 프로그램들이 Plug-in을 통해 Monkey's Audio를 지원하기는 하지만 아무래도 각 track별 mp3-format으로 있는 편이 사용하는데 훨씬 편리한 것이 사실이므로 무료로 구할 수 있는 Utility EAC를 활용하여 변환 해보기로 한다.
아래의 작업을 위해서는 우선 작업하는 Computer에 Monkey's Audio가 설치되어 있어야 한다.
Monkey's Audio-format으로 압축되어 배포되는 음반은 "filename.ape","filename.cue"와 같이 ape와 cue 두 개의 file로 구성되어 있다. 통째로 변환만 한다면 cue file은 없어도 상관없으나 track별로 나누기 위해서 필요하다.
예로 보이기 위해 사용될 음반은 다음과 같다.
원래 2 Disk Release이지만 그 중 CD1만 사용하기로 한다.
cdimage.ape + cdimage.cue 이 두개의 file이 준비되어있다.
1. 제일 먼저 Exact Audio Copy(EAC)를 이용, cdimage.ape의 압축을 해제하여 wav-format으로 만든다.
- EAC를 실행, Tools - Decompress를 선택하면
ape file을 선택할 수 있는 창이 나온다. cdimage.ape를 선택해주면 된다.
output filename은 자동으로 cdimage.wav가 되므로 따로 입력할 필요는 없다.
- 기존의 cue file은 cdimage.ape가 Source로 지정되어 있으니 이것을 앞의 과정에서 얻은 cdimage.wav로 수정해 준다.
PERFORMER "Johann Sebastian Bach"
TITLE "The Cello Suites - Inspired by Bach - Yo Yo Ma - Disk 1"
FILE "cdimage.wav" WAVE // <==== Edit this line!!
TRACK 01 AUDIO
..........
3. 이제 다시 EAC를 이용하여 위에서 얻은 wave file을 track별로 분할한다.
- EAC를 실행, Tools - Split WAV by CUE sheet - With Gaps를 선택하면
wav file을 선택할 수 있는 창이 나온다. cdimage.wav를 선택해 준다.
다음으론 cue file을 선택할 수 있는 창이 나온다. cdimage.cue를 선택해 준다.
4. 위의 과정을 통해 track별로 분할된 wav file들이 얻어졌다.
다시 EAC를 이용하여 이것들을 mp3-format으로 압축할 수 있다.
물론 사전에 EAC의 Compression 설정을 해두어야 한다.
- EAC를 실행, Tools - Compress
Monkey's Audio FAQ
Q: How to convert between APE and WAV ?
A: Get install package at Monkey's Audio download page.
Q: Where to get Winamp plug-in to play APE?
A: Winamp 5 plug-in comes with main download.
Q: I have a large APE file and CUE sheet - how do I split into separate tracks?
A: Decompress APE to WAV; use EAC and go to menu item "Tools" > "Split WAV by CUE sheet"
Q: Big APE and CUE sheet - how to burn to audio CD?.
A: Using EAC click the large "WRI" button to get the CD Layout Editor;
then select "File" > "Open CUE sheet or Layout" and
select the CUE sheet; finally select "CD-R" > "Write CD".
Q: Big APE and CUE sheet - burning with EAC fails with an error?
Q: Big APE and CUE sheet - MakeAPL fails to process?
A: Open the CUE sheet using Notepad and check the line that appears something like:
FILE "Artist Name - Album Name.wav" WAVE
Edit the 3 letters from "wav" to "ape" and save the CUE sheet.
Q: When attempting to re-encode APE files (to newer version or higher compression) Monkey's Audio returns an error?
A: To re-encode APE files select "Convert" mode.
Q: I selected Convert but it skips all the files!
A: Go to "Options" > "Output" and choose one of the following methods:
1: "If Output File Exists" select either "Rename" or "Overwrite"
2: Set "Output Location" to "Output to a specific directory"
Q: APE file stops playing/decompressing on error - now what?
A: To play in WinAmp" configure the Monkey's Audio plug-in to "Ignore bitstream errors" to play.
A: To decompress do the above, set "Output" to "Nullsoft Disk Writer" and
configure the desired output directory files.
(NOTE: Remember to change the Output plug-in back to WaveOut or DirectSound afterwards.)
Q: How to configure EAC to rip using Monkey's Audio?
A: In EAC go to menu: EAC > Compression Options. Choose one method:
1: Under "Waveform" change the "Wave format" drop-down to "Monkey's Audio Lossless Encoder" and choose compression method.
2: Under "External Compression" check the box "Use external program for compression", set "Parameter passing scheme"
to "Monkey's Audio Lossless Encoder".
Browse button for the file MAC.EXE (found in the Monkey's Audio installation directory), and set your compression level.
Q: How to use the external compressors?
A: First, select "Compress" if source files are WAV, or "Convert" if source files are APE, WV, SHN, RKA or MP3.
Then select/configure the chosen external compressor. Examples:
- LAME: Recommended LAME 3.90.3 arguments "--alt-preset standard" (entered without quote marks)
- OGG: Configure using quality switch "-q 5" (entered without quote marks)
Note on MPEGPlus: current versions may not fully supported in Monkey's Audio.
However, you can get the default --standard profile if no arguments are given.
2008년 3월 22일 토요일
[Tip] Using Google for searching ebooks
Go to Google's search page and use the following criteria in the search dialog
e.g.
This will hopefully give you a listing of all websites that google has cached that contain references to files in CHM format that are published by SYNGRESS.
---------------
for searching ebooks
or
2008년 2월 5일 화요일
USB Stick을 부팅가능하게 만들어 BootCD의 대용으로 사용해보자
[출처] EFB.nu freeware's home (Autor N0rdLicHt)
[번역 & 수정] JVM
USB Stick을 부팅가능하게 만들고, 또한 동시에 남은 공간들은 저장소로서 계속 사용하려면?
준비물:
1 USB Stick
USB Stick으로부터 부팅하고자하는 CD/DVD (여기에서는 Hiren's Boot CD 9.3)
Freeware-도구들:
"HP USB Disk Storage Format Tool"
Download : http://www.chip.de/downloads/USB-Disk-Storage-Format-Tool-2.0.6_23418669.html
"Bart's Boot Image Extractor"
Download : http://www.nu2.nu/bbie/
"Extract"
Download : http://www.winimage.com/extract.htm
절차:
1. 우선 Memory Stick이 비어있거나 모든 Data를 제대로 백업해두었는 지 확인.
2. 준비된 CD/DVD를 드라이브에 넣고 "Bart's Boot Image Extractor"를 사용해 CD/DVD의 Bootimage를 추출해낸다.
BBIE가 있는 directory에서 명령창을 열고 "bbie.exe x:"와 같이 입력하고 Enter해주면 이 directory 안에 Bootimage가 추출된다.
(여기에서 x는 해당 CD/DVD가 들어있는 드라이브명)
3. 다음으로 Bootimage 안의 모든 Data들을 풀어내야한다. 명령창에서 "Extract"의 -e 또는 -x 옵션을 사용하면 된다. 즉, "extract.exe -e bootimage.bin".
주의:
만약 우연히 풀려져야할 Data들 중 extract.exe라는 이름을 가진 것이 있다면, "Extract"의 실행파일 이름을 바꿔줘야만 한다. 예를 들면 lala.exe와 같이 이름을 변경하고 다음과 같은 명령으로 Bootimage를 풀어 준다. "lala.exe -e bootimage.bin"
(위의 작업에서 추출된 Bootimage 안에는 extract.exe라는 이름을 가진 파일이 포함되어 있다. 그러므로 이 작업을 위해서 반드시 extract.exe의 이름을 변경해 주어야만 한다.)
4. 다음으로 "HP USB Disk Storage Format Tool"을 실행하여 "Device" 항목에서 USB Stick을 선택, "File system"은 FAT, "Volumelabel"은 임의로 단순하면서도 짧은 것(알아보기 쉬운 것!)으로 지정한다. 그리고 나서 "Create a DOS Startup Disk"에 체크해주고 "using DOS system files located at"을 선택한다. 여기에서 앞서 추출한 Bootimage를 풀어 둔 directory를 선택해준다. 그 다음 "Start"를 클릭.
이로써 거의 다 된 셈이다.
이제 BootCD의 모든 내용물을 USB Stick의 Root directory로 복사한다.
"Hirens Boot CD"가 하나의 메뉴로서 자동적으로 시작되도록, 앞서 추출한 Bootimage를 풀어 둔 directory 안의 모든 Data를 USB Stick의 Root directory로 복사한다. 여기에는 이미 HP USB Format Tool의 의해 만들어진 Data들이 있으므로 같은 이름의 파일들을 덮어쓸 것인지에 대해 물어오게 된다. 모든 파일을 덮어쓰도록 하면 이로써 작업은 완료된다.
5. 이제 다음 재시작 때 BIOS 설정에 들어가 USB Device를 첫 번째 부팅장치로 지정해준다.
이렇게 해서 USB Stick으로 부팅을 하게 되면 모든 것이 BootCD로 부팅했을 때와 동일하나 한 가지 다른 점은 여기에서는 CD에서처럼 Harddisk로 부팅할 지 BootCD로 부팅할 지 선택하는 메뉴가 나타나지 않는다는 점이다. 그 대신 곧바로 BootCD의 선택메뉴가 나타난다.
USB Stick으로 부팅시키지 않고 Windows 상에서 사용하면 BootCD에 사용된 공간을 제외한 나머지는 지금과 같이 Data 저장장소로서 계속 이용할 수 있다.(Hiren's BootCD는 약 80 MB 정도의 공간을 차지한다.)
아래에 비슷한 내용의 Article이 더 있다.
Hiren's BootCD From USB Flash Drive
How to Put Hiren's BootCD auf Flash-Speicher
[Related Article]
2008/02/02 - [Miscellaneous] - USB Stick bootfähig machen nur mit Freeware Windows-Tools
2008년 2월 2일 토요일
USB Stick bootfähig machen nur mit Freeware Windows-Tools
2008/02/05 - [Miscellaneous] - USB Stick을 부팅가능하게 만들어 BootCD의 대용으로 사용해보자
[Quelle] EFB.nu freeware's home (Autor N0rdLicHt)
Wie man einen USB Stick bootfähig machen kann und gleichzeitig auch noch als USB Stick Speicher weiter nutzen kann?
Vorraussetzungen:
1 USB Stick a xxxGB
Eine CD/DVD, welche man vom USB Stick booten möchte ( in diesem Fall Hirens Boot CD 9.3 , welche ja nicht gerade "free" ist, aber in diesem Fall wollte ich es damit ausprobieren, es gibt ja noch jede Menge anderer BootCDs, von denen viele ja auch wirklich Free oder OpenSource sind )
Freie Tools:
Das Tool "HP USB Disk Storage Format Tool"
Download z.B. hier : http://www.chip.de/downloads/USB-Disk-Storage-Format-Tool-2.0.6_23418669.html
Das Tool "Bart's Boot Image Extractor"
Download hier : http://www.nu2.nu/bbie/
Das Tool "Extract"
Download hier : http://www.winimage.com/extract.htm
Vorgehensweise:
Zunächst bitte sicherstellen , dass der Stick leer ist bzw. von allen Daten, die sich ev. noch dadrauf befinden, ein Backup angefertigt wurde !
Nun die CD/DVD, die man von USB Stick booten lassen möchte , in das Laufwerk legen. Dann das Bootimage von der CD/DVD mit Bart's Boot Image Extractor" rippen, indem man das Tool in ein Verzeichnis entpackt und von einem Konsolenfenster folgendes ausführt "bbie.exe x:" , wenn x: das Laufwerk ist wo sich die CD/DVD befindet.
Nun sollte sich das gerippte Bootimage im selben Verzeichnis befinden.
Als nächstes müssen wir alle Dateien aus dem Bootimage extrahieren. Ich habe mir dafür das Tool "Extract" von der Winimage Webseite besorgt. Zum Entpacken wählt man - im Konsolenfenster - die Option -e oder -x also z.B. "extract.exe -e bootimage.bin".
Anmerkung:
Sollte eine der zu extrahierenden Dateien zufällig auch extract.exe heißen, muss man extract.exe umbenennen , z.B. in lala.exe und dann das Bootimage mit "lala.exe -e bootimage.bin" entpacken.
Als nächstes startet ihr das Tool "HP USB Disk Storage Format Tool". Dort wählt ihr bei "Device" euren USB Stick aus, bei "File system" z.B. FAT, bei "Volumelabel" gebt ihr irgendetwas einfaches und kurzes ( zusammenhängendes! ) ein. Dann macht ihr ein Häkchen bei "Create a DOS Startup Disk" und wählt "using DOS system files located at". Dort wählt ihr nun das Verzeichnis aus, welches die Dateien enthält, die ihr aus dem gerippten Bootimage entpackt habt. Dann auf "Start" klicken.
Jetzt seid ihr im Prinzip fast fertig.
In meinem Fall hab ich jetzt noch den kompletten Inhalt der BootCD ins Root Verzeichnis des USB Sticks kopiert und da in meinem Fall die "Hirens Boot CD" automatisch mit einem Menü startet , habe ich nochmal manuell alle Dateien die sich in dem entpackten Bootimage Verzeichnis befinden, in das Rootverzeichnis auf den Stick kopiert. Bei einigen kommt die Meldung, ob man eine bereits vorhandene Datei überschreiben will ( das sind die Dateien welche vom HP USB Format Tool bereits auf dem Stick platziert worden sind - einfach ignorieren und alles nochmal rüberbügeln ).
FERTIG !!!
Nun beim nächsten Neustart im BIOS einstellen, dass zuerst vom USB Gerät gebootet werden soll und bingo es hat funktioniert. Es sieht alles so aus als würde ich von CD booten, einzig das allererste Bootmenü fehlt wo man auswählen kann ob man von der BootCD oder von der Festplatte booten will, stattdessen kommt gleich das Auswahlmenü der BootCD.
Wenn ich mir den USB Stick jetzt in Windows anschaue, mit "Eigenschaften", zeigt er weiterhin an, dass es sich um einen 2 GB USB Stick handelt und ich kann jetzt auch weiterhin den vorhandenen Restspeicherplatz voll nutzen ( die Hirens BootCD hat nur ca. 80 MB auf dem Stick eingenommen).
Hiren's BootCD From USB Flash Drive
How to Put Hiren's BootCD auf Flash-Speicher
2007년 10월 14일 일요일
[Tip] Google CSE를 이용해 블로그 내부검색하기
블로그에 글이 많이 쌓이다보면 블로그 내부검색 기능은 꼭 필요한 기능 중 하나이다.
티스토리나 태터툴스와 같은 경우는 자체 내부검색 기능이 제공되므로 편리하다.
그렇지만 친구들의 블로그를 함께 검색하고 싶다거나,
내부검색 기능이 부족한 서비스형 블로그를 사용하고 있다면 Google CSE 서비스가 참 유용하다.
QAOS.com의 DoA님의 Tip(구글 맞춤검색(CSE: Custom Search Engine) 활용하기)을 이용하면
CSE를 이용하여 블로그의 검색기능을 몇배나 강화할 수 있다.
친구 블로그 검색이나 검색결과의 라벨링과 같은 더 나은 기능을 활용하기 위하여
이 블로그도 위의 Tip에 따라 티스토리의 검색창을 CSE 검책창으로 대치하였다.
조인스 블로그에 있는 송원섭의 피라미드에 자주 들리는 편이다.
그곳의 주인장께서 자체적으로 지원되지 않는 블로그 내부검색 기능의 부재를 아쉬워하셔서
Google CSE를 이용하는 방안을 궁리해보았다.
결론적으로 나의 지식으로는 조인스 블로그에 Google CSE의 검색창을 달도록 할 방법을 찾지 못했다.
그렇다고 해도 서비스 자체를 이용할 수 없는 것은 아니므로 다음의 Tip을 작성하였다.
구글 CSE를 이용하여 자신의 블로그 검색하기
2007년 9월 14일 금요일
2007년 9월 7일 금요일
[QAOS.com] 구글 Custom Search Engine의 활용
........
Custom Search Engine을 사용해서 자신만의 로컬 검색 엔진을 만드는 방법......
- 구글 CSE 만들기
- 구글 CSE 둘러보기
- 구글 CSE 설정 따라하기
- 구글 CSE 붙이기 I(홈페이지)
- 구글 CSE 붙이기 II(티스토리)
- 구글 CSE 설정하기
- 구글 CSE의 인기 검색어 달기
- 구글 CSE와 애드센스 연동하기
- 구글 CSE의 인기 검색어를 티스토리에 적용하기
2007년 8월 24일 금요일
트랙백 사용방법 - 티스토리
하지만 왠걸 티스토리에서 이와 같은 방법으로 트랙백을 보낼 수가 없었다.
그도 그럴 것이 이글루스처럼 글 작성시에 트랙백 주소를 입력하는 것이 아니라 글 작성 후에 트랙백을 걸 수 있게 되어 있어서 그런 것이었다.
자세한 설명은 티스토리 가이드 블로그로.
2007년 8월 18일 토요일
트랙백 사용방법 - 이글루스 도움말
그렇지만 누군가가 Trackback에 대해 전혀 모르는 사람에게 설명을 해줘보라고 한다면 그리 간단치 않다.
그래서 이글루스에서 제공하는 도움말을 링크해 둔다.
트랙백 사용방법
티스토리에서 트랙백을 사용하는 방법은 이글루스와는 좀 다르다.
트랙백 사용방법 - 티스토리
Flash Memory Data Recovery and Protection
USB Cable을 사용하면 되지만 내 Laptop(ASUS A6Va)에서 바로 Slot에 넣어 사용하지는 못한다. 우습게도 가지고 있지 않은 다른 모든 Flash Memory 종류는 지원하지만 정작 유일하게 가지고 있는 XD Picture Card는 지원되지 않는다.
이번에 가족과 함께 여행을 갔다가 사진들을 미처 노트북으로 옮겨 놓지 않은 채로 카메라에서 all erase를 시켜버린 불상사가 발생했다.
기본적으로 복구가 가능하리라 생각은 했지만 여행 중의 제한적인 여건에서 최적의 방법을 시도하는 것은 불가능했다.
노트북과 카메라를 USB Cable로 연결하고 Recuva를 이용하는 방법은 실패하였다. 아무 것도 검색되지 않았다.
집에 돌아와서 검색을 통해 다음과 같은 페이지를 찾았다.
Beginners Guides: Flash Memory Data Recovery and Protection
우선 이 가이드의 첫 장만 대충 읽어보고 난 후 다른 노트북(HP Pavilion DV2310US; XD Picture Card도 Slot에 직접 넣어 읽을 수 있다.)을 가지고 복구를 시도하였다.
Recuva는 역시 아무 것도 찾아내지 못하였다.
그래서 다음으로 File Scavenger를 이용하여 복구를 시도.
결과는 간단하게 복구되었다.
일부 깨진 것들이 있긴 했지만 거의 다 복구되었고 심지어 한 번 더 full erase가 실행되었던 이전 자료들도 일부 복구되었다.
File Scavenger 검색속도도 빠를 뿐 아니라 성능도 강력하단 것을 체험할 수 있었다.
2007년 7월 31일 화요일
[Tip] IE7Pro
Windows 상에서 사용하는 Web Browser는 자주 사용하는 순으로 Maxthon 1.6 - Firefox 2 - The World - IE6 이다.
창을 많이 띄우는 것을 싫어하기 때문에 Tabbed Browsing 기능은 필수이다.
가장 좋아하는 Firefox는 초기구동 시간이 가장 느리다.
사전을 포함해서 설치된 Extension이 24개나 된다. 빠른 구동을 위해 Extension의 수를 줄여보기도 했었다. 약간 빨라지긴 했지만 그래도 초기구동이 느린 것은 마찬가지였다. 더군다나 Extension 없는 Firefox라면 "앙꼬없는 찐빵" 아닌가?
초기구동 시간이 가장 빠른 IE6은 알다시피 기능 상 가장 떨어진다. Tabbed Browsing이 불가능하다. 그래서 정식버전이 나온 후에 IE7로 upgrade를 해보았지만 열악한 Tabbed Browsing 기능과 함께, 웹서핑 중 시도 때도 없이 다운되는 경우가 많아서 사용하지 않게 되었다.
자주 들르는 곳에서 다운되는 것은 그다지 상관이 없으나 처음 찾아내서 보고 있던 사이트에서 다운되어 버리는 경우 session restore기능이 없는 IE는 사람을 상당히 번거롭게 만들어 준다. 정말 중요한 내용을 발견한 경우라면 History를 뒤져서라도 다시 찾아내겠지만 보통은 그렇게까지 하지 않는다.
IE7에 session restore의 기능만 있었어도 가끔은 사용했을 텐데, 이것이 안되는 것이 결정적으로 사용하지 않게된 계기가 되었다.
우연히 IE7Pro란 IE7을 위한 Add-on 프로그램을 알게되었다.
다음과 같은 기능을 갖고 있다.
Enhance Internet Explorer's Tabbed Browsing Capabilities
1. Double click to close tab.
2. Open new tab from address bar.
3. Enable/disable tab browse history manager.
4. Enable/disable crash recovery
5. Move the IE menu bar above the address bar
6. Hide search bar.
7. Modify the maxium number of parallel connections to the web server.
8. Select the external program to view page source
Super Drag and Drop
Mouse Gesture
Crash Recovery
Save Page to Image
Quick Proxy Switcher
AD Blocker
Greasy monkey alike User Script
Inline Search
Spell Check
이 중 눈길을 끌었던 것은 강화된 Tabbed Browsing 기능도 있지만, 바로 Crash Recovery 기능이다. Firefox의 session restore와 같은 기능을 가능하게 해주는 것이다.
물론 좋은 session restore기능보다는 Browser 자체가 안정적으로 동작하는 것이 중요하다.
그렇지만 IE7Pro와 함께라면 IE7도 그리 나쁘지 않은 선택이 될 수 있을 것 같다.
더욱이 이름은 IE7Pro이지만 FAQ에 따르면 IE6과도 사용할 수 있다고 한다.
개인적인 의견으로는 MS에서 IE7에 이 정도의 기능들은 내장하고서 내보냈어야 하지 않나 생각한다.
Link
IE7Pro - The Ultimate Add-On for Internet Explorer 7
IE7Pro FAQ - IE7Pro WiKi
[추가]
윗 팁은 사용해보기 전에 작성한 것이다.
사용을 해보니 그리 나쁘지 않았다.
그러나 나를 IE7Pro로 인도한 Crash Recovery기능은 좀 문제가 있었다.
Crash가 일어나 IE가 죽은 경우에만 Recovery가 되어야 할텐데 IE를 시작하면
무조건 닫기 전에 열려있던 창을 다시 복원할 것인지 물어온다.
게다가 IE6으로는 Tabbed Browsing 기능이 의미가 없으므로 IE7으로 업데이트를 했다.
내가 기대했던 것은 IE6에서 멀티탭을 사용할 수 있게 해주는 것이었는데 약간은 실망스러웠다.
2007년 7월 28일 토요일
문서작성의 5가지 口訣
필자가 22년간 IT 업계에 종사하면서 세 곳의 다른 회사를 다녔지만 개발과 재무관리를 제외하고는 다양한 업무를 경험한 것 같다. 그래서인지 그 동안 나름대로 쌓아왔던 경험의 지식들을 새로 시작하는 분들이나 현재 다양한 고민을 가진 분들에게 조금이라도 도움이 되고 싶다는 생각이 드는 시기인 것도 사실이다.
...Details
훌륭한 컨설턴트가 되기 위한 세 가지 口訣
필자는 한 때 컨설턴트 직업에 대한 지향을 가진 적이 있었다. 10년 전 까지만 해도 IT 컨설턴트는 업계 경험이 적어도 20년은 넘어야 명함을 내밀 수 있다는 것이 일반적인 생각이었다. 그러나 최근에는 젊은 프로페셔널도 컨설턴트의 직함을 새겨 다니는 것을 보면 컨설팅 업무의 모델이 많이 변화된 것 같다.
...Details
2007년 7월 19일 목요일
How to change the Firefox Menu Font Size
/* Change Menu font size (change 10pt to 7pt) */
/* Fonts */
menubar, menubutton, menulist, menu, menuitem, textbox, toolbar, .textbox-textarea, .tab-text, tree, tooltip, sidebarheader, statusbar
{ font-size: 7pt ; }
#navigator-toolbox *,
#bookmarks-toolbox *,
#FindToolbar *,
#status-bar * {
font-size: 7pt ;
}