Skip to main content

Posts

Showing posts from March, 2009

Skype for iPhone Mini-Review

Skype just released a native client for iPhone earlier this week and I downloaded it as soon as I saw the announcement. I have been using Nimbuzz for Skype chatting for a little while but it has pretty high latency. I did a quick, non-scientific measurement and the latency can be as high as 2-3 seconds sometimes. The iPhone Skype, on the other hand, have very low latency and better voice quality. I was a little bit disappointed to find out that I cannot make voice calls over 3G network. However, with the crappy slow Vodafone 3G network speed and monthly 250MB data cap, I don’t think I have missed out too much.

2 Minutes Guide to Twitter

I started using Twitter recently and I really like it. Twitter is basically a website that allows you to micro-blog .  I find the idea of micro-blogging fascinating because a blog takes a lot of time and effort to maintain, whereas writing a micro-blog entry (it’s called a tweet on Twitter) simply takes few seconds. However, I was quite lost when I first start twittering. I saw many tweets contain strange symbols and I had no idea what they meant. Following are the three most widely used Twitter commands: @reply – Any tweet started with @< user name > (e.g. “@oscarkuo is a reply”) will be placed in the reply tab of the user’s Twitter home page. #tags – Tagging helps to organise tweets just like how you would tag your E-mails in your Gmail account or blog entries on your blog. The only difference is that #tags works across everyone’s tweet, not just your tweet. Basically the idea is you put the hash symbol (#) in front of a keyword in a tweet. For example the Twitte

ItemGroup Gotcha

At work, we have been deploying the latest build from the build server to the test server manually for a while. I know this is not smart but the fact is, it really doesn’t take that much time to copy and paste files from build server to the test server. Nevertheless, one day I was finally sick of this dumb process and decided to roll up my sleeves to make the build server do this monkey job automatically.  I wrote a MsBuild script, which automatically copies files to the test server from build server after finishing a build and the script below is the simplified version of it: <PropertyGroup> <Root>$(MSBuildProjectDirectory)</Root> <SourceFolder>$(Root)\Source</SourceFolder> <OutputFolder>$(Root)\Output</OutputFolder> <DeployFolder>$(Root)\Deploy</DeployFolder> </PropertyGroup> <ItemGroup> <DllFiles Include="$(OutputFolder)\*.dll" /> </ItemGroup> <Target Name="BuildA

Using Windows Live Writer with Blogger.com

I just happened to noticed today that Windows Live Writer (WLW) actually has built in support for Blogger.com. What’s even better is that upon entering the URL and the credential of your blog, WLW retrieves other details such as styling and labels from your blog. Also, when you tries to publish a blog post with embedded images, WLW will automatically upload these images to your Picasa web albums. I never really liked Blogger.com’s web based blog editor because it is a bit too primitive in my opinion.

My Second First Blog Post

After spending few hours fighting with CSS and tweaking the layout, finally this blog is up. This is actually my second attempt of blogging, my last blog didn't last long and we'll see how long this one will last. In case you wonder, I based my blog on the 3-column Minima template, which can be found here . As far as I can see it works fine in IE7, Firefox and Google Chrome. I have to say I am very impressed with how flexible (read generous) blogger.com is when it comes to customising the look and feel of the blog.