웃긴건 이번 건강검진 결과 진단서다. 좌우 눈이 시력이 1.5 / 4.5 로 표시된 것이다. 처음에는 나누기를 해서 0.3인가 보다 실제 시력도 이와 비슷하다. 하지만 표기가 참 이상하다고 느꼈는데, 잘 보니 (좌/우)라는 항목이 있는 것이다. 안경을 끼고 책정을 해서 양쪽다 1.5가 나와하는게 정상인데, 오른쪽 시력이 듣지도 못한 4.5가 나온 것이다. 마치 대선의 모 후보의 IQ처럼 호크아이의 시력을 가지게 된 것이다. 이 눈으로 스나이퍼가 되었어야 했는데... 오타 덕분에 하루 불면증이 시달린 밤 여파로 뒤척인던 나를 깨워주는 효력을 발휘했다ㅋ
올해는 우리 어머니의 해인 쥐 뛰의 해네요. 송년&신년 기간 동안 부산과 스키장을 왔다 갔다 하느라, 정신 없이 2008년 한해를 맞이했습니다... 2007년 언제 지나갔는지 모르게 지나갔네요. 미국도 갔다 오고, 서울에서 좋은 사람들도 많이 만났네요. 아직 옆구리가 비여있긴 하지만, 올해는 왠지 따뜻할 것만 같네요. 2008년을 맞이하기 위해 리움 갤러리에 가서 미리미리 달력도 사고 집에서 크리스마스 날 미리 떡국도 먹었습니다. 또 새해에는 도시락 열심히 싸가지고 다닐려고 첫 출근부터 졸랑졸랑 도시락통을 들고 왔구요.
올해는 건강을 위해 운동도 꾸준히 하고, 책도 좀더 많이
읽고, 공부도 많이 하는 한해가 되었으면 합니다. 서울에서 대학교 다니는 중국
친구가 중국어 과외 해주겠다고 해서 올해는 중국어도 조금 시작해보려고 하구요. 경력도
이제 일년 생겼으니 정보처리산업기사도 따놔야겠네요.
2008년도 다산다난 한해 부탁드려요^^
실버라이트 2.0 출시임박
Silverlight 2.0 has been
announced by Scott Guthrie. It will be shipped in Q1 of
2008 with new features which are higher level features from WPF
and .NET Framework 3.5.
Scott Guthrie 블로그에 실버라이트 2.0이 발표되었습니다. 내년 상반기에 베타 버전이 나올 예정입니다. WPF와 .NET Framework 3.5에서 제공되는 많은 기능들이 추가로 들어갈 예정이라네요.
I am taking a look at LemonPen as a beta tester. LemonPen, which is the 5th product from Openmaru Studio, is a new plug-in for web services. It is a web annotation service that used for indicating important parts of a web page and adding memos on it. As Openmaru blog have announced, it will be available in two versions (Installed-in-site and web browser plug-ins). Now I installed Lemon pen plug-in for TextCube blog in my blog.
All the visitors can report for this plug-in in here. If you have any idea for this plug-in, please leave a comment on my blog.
This is a demo video of LemonPen.
I found a rendering bug in both Silverlight and WPF.
A line shows up when applying a transform to images
that are next to each other.
I arranged Visuals in Canvas.
Then applied RotateTransform or ScaleTransform.
Line breaking shows up between
Images. The images are tiles of a larger image.
Following
is the XAML example for Silverlight of this bug.
<Canvas>
<Canvas Height="624" Canvas.Left="0" Canvas.Top="0">
<Canvas>
<Image Source="a.jpg" Canvas.Left="0" Canvas.Top="0" />
<Image Source="b.jpg" Canvas.Left="208" Canvas.Top="0" />
<Image Source="c.jpg" Canvas.Left="0" Canvas.Top="312" />
<Image Source="d.jpg" Canvas.Left="208" Canvas.Top="312" />
</Canvas>
</Canvas>
<Canvas Canvas.Left="851.539105243401" Canvas.Top="182.765368539594" Height="0" Width="0">
<Canvas.RenderTransform>
<RotateTransform Angle="45"/>
</Canvas.RenderTransform>
<Canvas>
<Image Source="a.jpg" Canvas.Left="0" Canvas.Top="0" />
<Image Source="b.jpg" Canvas.Left="208" Canvas.Top="0" />
<Image Source="c.jpg" Canvas.Left="0" Canvas.Top="312" />
<Image Source="d.jpg" Canvas.Left="208" Canvas.Top="312" />
</Canvas>
</Canvas>
<Canvas Canvas.Left="416" Canvas.Top="0" Height="0" Width="0">
<Canvas.RenderTransform>
<ScaleTransform ScaleX="0.71" ScaleY="0.71" />
</Canvas.RenderTransform>
<Canvas>
<Image Source="a.jpg" Canvas.Left="0" Canvas.Top="0" />
<Image Source="b.jpg" Canvas.Left="208" Canvas.Top="0" />
<Image Source="c.jpg" Canvas.Left="0" Canvas.Top="312" />
<Image Source="d.jpg" Canvas.Left="208" Canvas.Top="312" />
</Canvas>
</Canvas>
</Canvas>
In this XAML, I applied ScaleTransform and RotateTransform to Canvases tiled by 4 images. The left most image is original tiles next to each other and it does not show lines between the tiles. The middle one is a scaled image of the first one and it shows lines between the tiles. The right most image is a rotation of the first image and it also shows lines between the tiles. (Lines are noted with red arrows.)
This issue also occurs in WPF. I made another example using WPF.
This bug also occurs in VirtualEarth Silverlight 1.1 demo made by Greg Schechter.
Line Breaking WPF Source :
Line Breaking Silverlight Source :





LineDemo.zip









