Wednesday, December 05, 2007
SoCal MSDN Event
Microsft Popfly (www.popfly.com) is a new Web Platform still in Beta. But looks very interesting. I just signed in and played around a little bit. The design and architecture is very good. I will use it definitely.
Astoria (astoria.mslivelabs.com) is also a very interesting project. It is kind of advanced Web Data Access framework and foundation.
And I got a book "Introduction to Silverlight 1.0", too. Although it will be outdated soon since 2.0 is on the way.
Tuesday, November 06, 2007
How to examine SQL Server's I/O Statistics
http://www.databasejournal.com/features/mssql/article.php/10894_2244381_1
Thursday, October 18, 2007
Visual Studio 2008 trial
Tuesday, September 11, 2007
Create Data Dictionary for SQL Server Database
Data Dictionary Creator - Rapid database documentation
Generate Sql Server data dictionary table
Monday, July 16, 2007
Creating IIS7 sites, applications, and virtual directories
Creating IIS7 sites, applications and virtual directories
This is about the new command line util in IIS7: AppCmd.exe.
Sunday, July 15, 2007
Some tutorial for running Java on Pocket PC
Opera on Pocket PC
Java Midlets on the Pocket PC - the Complete Tutorial
Based on Java: Mobile GMap
Monday, July 09, 2007
Open Source HTML Templates Site
http://www.opensourcetemplates.org/
http://www.oswd.org/
Wednesday, May 23, 2007
Good site for DB Connection Strings
Friday, March 23, 2007
ZAP: a Tool for Generating ASP.NET Websites Automatically
Transferring Data Using SqlBulkCopy Class
Monday, March 12, 2007
Creating Publisher Certificates For ClickOnce
Some quoting from this article:
There is a good article - “Configuring ClickOnce Trusted Publishers“ by Brian Noyes published on MSDN.
Framework SDK contains tool MakeCert. Here is the command line to make a certificate similar to one created by VS:
makecert -r -pe -a sha1 -n "CN=yourcompany" -b 01/01/2000 -e 01/01/2036 -eku 1.3.6.1.5.5.7.3.3 -ss My
The -b and -e option specify the time period when certificate is valid. The -eku option specifies the certificate is intended for code signing. The -a sha1 option is to set the same algorithm that VS uses.
It's important to use the -pe option which allows to export the private key from the certificate. To do this use CertMgr (another tool from Framework SDK). The new certificate will be installed in your personal store. Select it and click on the Export button. Click Next on the first page, and on the second select to export the private key. On the next one you can select some additional options; if not sure just leave on default. After that you will be asked to type password for the file; can be left blank. On the last one specify the file name and location. Finish the wizard and you should get a .pfx file that can be used in VS or imported on user machines.