spavkov

Stories kicked by spavkov

Offline Browser for Windows Phone is released(blog.roboblob.com)

submitted by spavkovspavkov(1713) 49 minutes ago

I’m an old information junkie and while traveling to work i like reading books and surfing the web, but often i don’t have internet connection or its very slow (for example when I’m in the subway). Although there are many excellent E-Book readers for Windows Phone (one of the best is for sure Freda) i could not find a single offline internet web browser that would allow me to save full content of web pages to my phone and read them later when I’m offline. This is how idea for Offline Browser for Windows Phone was born. read more...

add a comment |category: |Views: 2

tags: another

Lighthouse – Silverlight Unit Test Runner Project released(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 2 months ago

Since the initial release of Silverlight i was really annoyed by the fact that Unit Testing had very slim support. Even later when Silverlight Unit Testing Framework was introduced by Microsoft things became little better but still it was far from good. You could create Unit Tests, but you had to start your Visual Studio in order to run them – eventually looking at the results of tests in your favorite Web Browser... read more...

add a comment |category: |Views: 105

tags: another

Microsoft Silverlight 4 Certification, is it worth the ride?(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 3 months ago

Now some good news folks: I received the confirmation that I successfully passed the Silverlight 4 Microsoft Certification. I was too busy to immediately brag about it and write a show-off post so I will here just quickly share my thoughts on how all this went before my brain moves these impressions to non-accessible-memory-banks-prepared-for-deletion. read more...

add a comment |category: |Views: 224

tags: another

Asymmetric Encryption and Signing with RSA in Silverlight(www.dustinhorne.com)

submitted by spavkovspavkov(1713) 1 year, 6 months ago

While Silverlight is a powerful tool for rich client applications, it lacks the ability to perform asymmetric encryption out of the box. In this article, I'm going to share a cryptography class library I've been working on and show you how to use it to perform standards compliant RSA Encryption in Silverlight that is cross compatible with .NET's built in RSACryptoServiceProvider, allowing you to encrypt from Silverlight using my library and decrypt on your website using the RSACryptoServiceProvider. For brevity, only examples using my class library will be shown except for a few examples that show equivelant functionality from the RSACryptoServiceProvider (RSACSP). read more...

add a comment |category: |Views: 30

tags: another

NDC2010: Michael Feathers – The deep synergy between good design and t(blog.lowendahl.net)

submitted by spavkovspavkov(1713) 1 year, 6 months ago

Review of the NDC2010: Michael Feathers presentation – The deep synergy between good design and testability. read more...

add a comment |category: |Views: 8

tags: another

Naked MVVM - simplest MVVM architecture(blog.vuscode.com)

submitted by malovicnmalovicn(1590) 1 year, 6 months ago

Article showing the concepts behind very simple MVVM implementation. read more...

add a comment |category: |Views: 878

tags: another

Introducing the Prism Navigation Framework for Silverlight MVVM Apps(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 7 months ago

After receiving a lot of positive feedback and requests for source code for my previous post on Prism navigation i decided to release the code i had as open source project. This is how Prism Navigation Framework project was born. My intention was to create simple-to-use but powerful-and-feature-full Navigation Framework for building Silverlight MVVM applications with Prism... read more...

1 comment |category: |Views: 278

tags: another

Combining Silverlight Navigation Framework & Prism to create MVVM Apps(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 7 months ago

This is introductory post for a series of posts where i will try to tackle the holy grail of MVVM applications – Navigation. To do this I will be using Prism from Microsoft’s Patterns and Practices team (Silverlight version – latest drop) combined with Silverlight Navigation Framework and i will build small navigation framework on top of that... read more...

add a comment |category: |Views: 157

tags: another

5 Reasons to be Excited about ASP.NET MVC 3(www.ironshay.com)

submitted by shayfriedmanshayfriedman(1411) 1 year, 7 months ago

It’s already been 6 months since ASP.NET MVC 2 was released and version 3 is already taking shape. I, personally, am thrilled about that because this version seems to put ASP.NET MVC, in terms of maturity and functionality, on the first line along with other MVC frameworks out there like RoR. I’ve put together 5 main reasons why I’m excited about this upcoming version. What about you? read more...

add a comment |category: |Views: 880

tags: another

Silverlight TextBox Control that immediately updates Text field(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 10 months ago

Standard Silverlight TextBox control is very useful but has one strange behavior: if you use TwoWay data binding and bind some property to controls Text property, when users type text into the control, this change is not propagated to the bound property until the control loses its focus. Lets see how to solve that problem easily... read more...

1 comment |category: |Views: 162

tags: another

What is wrong with Cosmopolitan theme (blog.vuscode.com)

submitted by spavkovspavkov(1713) 1 year, 11 months ago

am HUGHE fan of Metro design paradigm, so I was more then excited to check out Silverlight business application theme pack containing the Metro theme template (“Cosmopolitan”) which was released officially couple of days ago. I am not designer but still wanted to share with community my initial impression and that is: WTF. Here is picture illustrating why.. read more...

add a comment |category: |Views: 121

tags: another

Cool INotifyPropertyChanged implementation for Silverlight and WPF(chris.59north.com)

submitted by spavkovspavkov(1713) 1 year, 11 months ago

While working on a little MVVM thingy the other day, I ran into a sweet little piece of code that I wanted to share. I have seen several version of this around the web, but this is where I found this particular version. The piece of code gets rid of the ugly part of the INotifyPropertyChanged interface. read more...

add a comment |category: |Views: 49

tags: another

Silverlight MergedDictionaries – styles & resources from Class Libs(blog.roboblob.com)

submitted by spavkovspavkov(1713) 1 year, 11 months ago

If you were developing larger Silverlight/WPF applications and trying to keep things like styles, control templates and other resources organized it can become really hard. Prior to Silverlight 3 it was hell to be honest. But then nice people from Microsoft introduced lovely little feature called MergedDictionaries that allows you to combine the resources from different places in your application. read more...

add a comment |category: |Views: 101

tags: another

5 reasons why Silverlight sucks in LOB (compared to WPF) (blog.vuscode.com)

submitted by malovicnmalovicn(1590) 1 year, 11 months ago

This post discus what technology suits better LOB applications Silverlight or WPF and provides 5 reasons why WPF makes more sense. read more...

add a comment |category: |Views: 1048

tags: another

Unit Testing Modal Dialogs in MVVM and Silverlight 4(blog.roboblob.com)

submitted by spavkovspavkov(1713) 2 years, 1 month ago

As feedback to my recent post on Modal Dialogs in MVVM and Silverlight 4 I have received comments that the solution is not easy to Unit Test so i decided to create small blog posts on this subject just to show how simple and clean it is to do this... read more...

add a comment |category: |Views: 243

tags: another

Unit Testable WCF Web Services in MVVM and Silverlight 4(blog.roboblob.com)

submitted by spavkovspavkov(1713) 2 years, 1 month ago

I figured that there has to be a better way to solve this everyday problem so while working on my personal MVVM framework (yes, everyone is building one these days) i was setting these goals regarding the Web Service calls from my MVVM applications: 1. simplify as much as possible asynchronous invocation of Web Service methods (avoid writing boring boilerplate code for each call) 2. get rid of the Add Service Reference approach completely if possible 3. make the Web Services unit testable (hide them behind some interface so we can mock them in our unit tests) 4. simplify exception handling 5. fault tolerance (if web service client is faulted by exception it should be automatically recreated) ... read more...

add a comment |category: |Views: 268

tags: another