Justice

Stories submitted by Justice

Azure 1/10 + Facebook Connect 1/2 + Silverlight 2/5 = Fun(azurecoding.net)

submitted by JusticeJustice(100) 3 years, 5 months ago

In this post, I'm going to set up an Azure cloud service project with a single web role that hosts a Silverlight 2 page, which utilizes Facebook Connect. I will not go into other portions of the Facebook API during this post, but I will extend it in a later post. Basically this is 1/10 an excersize in creating a cloud service, 1/2 using Facebook connect, and about 2/5 interactions between JavaScript and Silverlight. Ok, let's get started. read more...

add a comment |category: |Views: 26

tags: another

Silverlight 2 XAML Binding and Custom / Core Dependency Properties(azurecoding.net)

submitted by JusticeJustice(100) 3 years, 6 months ago

The basic scenario is as follows: I have done quite a bit of WPF programming in the past (since back when it was WinFx). I feel pretty damn good about the bindings in WPF, and I feel like I have wrapped my head around binding and dependency properties pretty well. So, I thought when I decided to write Silverlight 2 apps rather than straight to the vein, white horse, WPF apps, it would be a very similar feeling. The feeling was abruptly interrupted by the evilness of the ElementName Binding param. For those of you who have spent time writing WPF apps, you will know the joy of binding element properties to each other and having no problems. It's easy to take such things for granted. read more...

add a comment |category: |Views: 23

tags: another

Every Cloud has a SilverLining(azurecoding.net)

submitted by JusticeJustice(100) 3 years, 6 months ago

Earlier today, my partner in crime, David Justice, decided to take the Silverlight Toolkit Sample and make it Cloud enabled. Wow, I said...let me deploy it to my Azure Hosting account. 4 Clicks later, and I present to you Silverlining. read more...

add a comment |category: |Views: 8

tags: another

Silver Lining for Windows Azure -- Silverlight 2 Sample Hosted in Azur(azurecoding.net)

submitted by JusticeJustice(100) 3 years, 6 months ago

I melded an Azure Web Role project and the Silverlight Toolkit sample to give you guys a quick download, so you can play with them together. I hope you like it, and I hope it helps you explore some of the new technology. read more...

add a comment |category: |Views: 45

tags: another

MetaTable Expression Builder for Fetching Any DB Object(devplanet.com)

submitted by JusticeJustice(100) 3 years, 6 months ago

Basically, I wanted to build a method that gets an object from a data context whatever the primary key may look like, and whatever type that object may be. read more...

add a comment |category: |Views: 28

tags: another

Windows Azure and NOT Using SQL Express(devplanet.com)

submitted by JusticeJustice(100) 3 years, 6 months ago

Shows a way to run Windows Azure and use SQL Dev, rather than SQL Express read more...

add a comment |category: |Views: 58

tags: another

Thread Safe Dictionary Using ReaderWriterLockSlim(devplanet.com)

submitted by JusticeJustice(100) 3 years, 6 months ago

The dictionary uses ReaderWriterLockSlim locks. These are clean, lightweight locks that MS has provided. Most importantly, they allow upgradeable read locks. I now use simple IDisposable locking wrappers. This allows us to use the "using" syntax to ensure lock releases. read more...

add a comment |category: |Views: 347

tags: another