Archive for September, 2010

Potato Skins Stuffed with Sauteed Broccoli Rabe

Monday, September 27th, 2010

I love to cook but don’t often blog about it. Today, I created something wonderfully delicious by accident, deserving to be in the what I learned today category. I made baked potatoes, asparagus, and sauteed broccoli rabe as my dinner, and was content to eat each individually, but, after I finished with the innards of the potatoes, leaving the yummy skins, I decided to put the veggies in the potato skin and eat it like a sandwich. The result: amazing. Read on for the recipe; there are some steps which add to the flavor of the dish.

(more…)

Installing DotNetNuke Community Edition on Microsoft WebMatrix

Tuesday, September 14th, 2010

WebMatrix is a great tool for introducing a variety of powerful web platforms to a developer. I decided to check out DotNetNuke and used WebMatrix to install it. Unfortunately, it could not create the database and thus the installation failed. It is using SQLExpress, version 10.0.2531, better named SQL Server 2008 SP1.

This version of SQLExpress ships with Windows authentication only and the sa login disabled. So, prior to installing DotNetNuke using WebMatrix the server must be set up for Mixed Mode authentication and a known password must be given to the sa account. Additionally, when creating a password for the dnnuser account, ensure the password supplied meets the password policy specified in SQL Server. These precautions are easily set using the SQL Server Management Studio, but can also be done via the command line using osql.

Turning on Mixed Mode Authentication is much easier using SQL Server Management Studio, but can also be done by changing the registry as described in the Microsoft Knowledge Base Article 325022 – scroll down to where it reads “Turn on Mixed Mode Authentication after you install MSDE“.

On the machine running SQLExpress and logged in as an administrative account, start a SQL shell with the osql command (in a cmd shell).

C:\> REM -S specifies the server and -E authenticates with your Windows account
C:\> osql -S .\SQLExpress -E
1> -- change the password for the sa account, remember it needs to be complex
2> sp_password @new='P@ssw0rd!', @loginame='sa'
3> go
1> -- an alternative method to change the sa password
2> alter login sa with password = 'P@ssw0rd!'
3> go
1> -- enable the sa account
2> alter login sa enable
3> go

Finally, SQLExpress needs to be restarted. This can be accomplished on the command line, running as a user that has privileges to restart the server.

C:\>runas /user:Administrator "net stop MSSQL$SQLExpress"
Enter the password for Administrator:
Attempting to start net stop MSSQL$SQLExpress as user "COMPUTER\Administrator" ...
C:\>runas /user:Administrator "net start MSSQL$SQLExpress"
Enter the password for Administrator:
Attempting to start net start MSSQL$SQLExpress as user "COMPUTER\Administrator" ...

When this all has successfully completed, start WebMatrix and create the DotNetNuke site. Remember to use the password previously supplied for the sa account and to use a password that meets the policy restrictions enforced on SQL Server, otherwise the database will not be created.

Weatherproofing Amazon’s New Kindle 3 for the Beach

Thursday, September 2nd, 2010

I am very aware of the damage that the salt water and sand can do to any electronics and always enclose my phone in a sandwich bag prior to bringing it to the beach. Today is the first day I am bringing my new Kindle 3 to the beach. It turns out that Ziploc quart-size freezer bags perfectly fit the Kindle 3. The trick to using it on the beach while contained in the plastic wrap is to remove the air prior to fully closing the bag. I leave about 3/4″ unzipped and use that small space to suck out all the air and then immediately close the bag. With the clear side of the bag protecting the reading surface, I can fully use the Kindle without worry of damage due to any sand or salt water.

stop spam with honeypot!