by aldous
Sat, May 29 2010 16:16
Vivid Sydney is a festival of light, music and ideas across the city. It’s the biggest festival of its kind that includes large-scale light installations and projections through to music performances, ideas and creative summits.
One of the main attraction is the Opera House as always which features the Lighting of the Sails a spectacular illumination of the Sydney Opera House sails that shines in different colour schemes every few minutes.
Despite the poor Sydney whether the past few weeks (rain, wind and chilly temperatures) that most likely will last the next few days, I managed to get some time to take night shots of the Sydney Opera House last Friday after my work of course.
Here are some of my photos.




I haven’t been to other venues like the St. Mary’s Cathedral, Macquarie Street, Museum of Contemporary Art and The Rocks. If the weather will improve, I will take night shots of these venues as well.
Finally, I was able to take few shots of St. Mary's Cathedral.


I will post all Vivid Sydney photos in my photo gallery soon. Enjoy!
by aldous
Sat, August 15 2009 16:20
In development, it’s common to sign our assemblies to make it safe. But before you can use your signed assemblies and make entries in your web.config or app.config you need to obtain information from your assembly such as the Public Token Key. There are many tools out there that you can download and use such as the .Net Reflector which I used previously. However, most of the time we need the easy way without downloading any utilities to expose the public token key.
In .Net 2.0 provided utilities you can use the tool called “sn.exe” (sn stands for “strong name”). So from Visual Studio command prompt you need to type:
sn.exe -T <assembly_name>
Yet, there's even much easier way to get the public token key by using the external tools in Visual Studio. Here’s a few easy steps to make it work:
- In Visual Studio main menu click on Tools -> External Tools.
- Click the Add button in the External Tools dialog box then enter the following details.
- Title: Get Public Token Key
- Command: C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\sn.exe
for VS 2008 the path is "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\sn.exe"
- Arguments: -Tp "$(TargetPath)"
- Check the option Use Output window

- After you click OK, you should now see a new entry called Get Public Token Key listed in the Tools menu.

- Now, when you have a project open and signed, and you already build it at least once. Going to the Tools menu and selecting the Get Public Token Key item will give you the public token key and the blob in the output window. See the screenshot below:

This trick works with Visual Studio 2003, 2005 and 2008.