MihirPatel
Name: MihirPatel
Score: 10,492.74
Last Seen: 948 days, 16 hours, 3 minutes ago
Member Since: 11 February, 2009
DotNetShoutout
atom rss
12
Shouts

iPhone Sudoku in Silverlight using MVVM

published 1212 days, 17 hours, 4 minutes ago posted by orktaneorktane 1214 days, 22 hours, 9 minutes ago
Wednesday, January 27, 2010 1:33:06 PM GMT Monday, January 25, 2010 8:28:58 AM GMT
In this post we will build an iPhone-styled Sudoku Game application in Silverlight using nRoute Toolkit. In terms of the architecture we will make use of MVVM design techniques in having separate Model, ViewModel, View plus related Services - and we'll piece them together in a loosely-coupled manner.. (more)
category: Metro | clicked: 2 | comment | | source: www.orktane.com
tags: Silverlight, nRoute, Sample, MVVM
16
Shouts

Silverlight Media Player: Adding Thumbnail Preview Capability

published 1212 days, 17 hours, 4 minutes ago posted by jbarnesjbarnes 1214 days, 14 hours, 31 minutes ago
Wednesday, January 27, 2010 1:33:06 PM GMT Monday, January 25, 2010 4:06:05 PM GMT
If you like the Netflix Silverlight player’s ability to show thumbnails while fast-forwarding, here’s an example that does it with The Silverlight Media Framework player and Expression Encoder: http://blogs.msdn.com/synergist/archive/2010/01/22/scrubbing-with-thumbnails-with-the-smf-player.aspx Demo: http://xmldocs.net/smf Source Code: http://code.msdn.microsoft.com/SMFThumbnailScrub (more)
category: Metro | clicked: 1 | comment | | source: blogs.msdn.com
11
Shouts

Quantum Bit Designs » Blog Archive » MVVM – Lambda vs INotifyPropertyChanged vs DependencyObject

published 1212 days, 17 hours, 4 minutes ago posted by KKerrKKerr 1214 days, 53 minutes ago
Wednesday, January 27, 2010 1:33:06 PM GMT Tuesday, January 26, 2010 5:44:44 AM GMT
There have been plenty of complaints about INotifyPropertyChanged and how developers do not like using strings, etc. Last year several bloggers presented type-safe alternatives that used either reflection or lambda expressions. Many are quick to point out the poor performance (same for reflection). Unfortunately ‘poor performance’ says little about usefulness of an implementation. The performance needs to be quantified and compared against all implementations so that ‘poor’ can be put in perspective. Spe... (more)
category: Architecture | clicked: 1 | 4 comments | | source: blog.quantumbitdesigns.com
tags: lambda, WPF, MVVM
10
Shouts

Behaviors, Triggers and Actions in Silverlight And WPF Made Simple – Part 2 – Triggers

published 1213 days, 17 hours, 4 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 1214 days, 1 hour, 30 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Tuesday, January 26, 2010 5:07:55 AM GMT
Triggers and Actions – Scratching the Surface A Trigger can invoke a set of Actions, when it is fired. For example, you can nest few actions (like PropertyChangeAction to change a property of an element) in an EventTrigger, so that those actions will get executed when a specific Event occurs. You can attach more than one trigger to an element. If you have some WPF background, you may quickly remember the DataTriggers, MultiDataTriggers etc. There are various Triggers and Actions that comes ‘out of the b... (more)
category: Metro | clicked: 1 | 2 comments | | source: amazedsaint.blogspot.com
tags: Silverlight Expression Blend
22
Shouts

Silverlight Client for Facebook available - Tim Heuer

published 1210 days, 20 hours, 2 minutes ago posted by jantujantu 1213 days, 21 hours, 12 minutes ago
Friday, January 29, 2010 10:35:37 AM GMT Tuesday, January 26, 2010 9:25:18 AM GMT
Remember the final moments of the Scott Guthrie keynote presentation at PDC09? Where Brian Goldfarb came on stage and demonstrated a completed application using a lot of the features of Silverlight 4? Yeah, that Facebook application. Well, it’s here now... (more)
category: Metro | clicked: 1 | 2 comments | | source: timheuer.com
tags: Silverlight, Facebook, Expression Blend, riaservices, ScottGu, PDC09
12
Shouts

Fabulous Adventures In Coding : Why are unused using directives not a warning? - Eric Lippert

published 1212 days, 17 hours, 4 minutes ago posted by jantujantu 1213 days, 21 hours, 8 minutes ago
Wednesday, January 27, 2010 1:33:06 PM GMT Tuesday, January 26, 2010 9:29:20 AM GMT
As I’ve discussed before, we try to reserve warnings for only those situations where we can say with almost certainty that the code is broken, misleading or useless. One reason for trying to ensure that warnings are not “false positives” is that we don’t ever want to encourage someone to take working, correct code and break it so as to remove the warning. Another is that since many people compile with “warnings are errors” turned on, we do not want to introduce a whole lot of unnecessary build breakages ... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: using directive, warnings, C#
9
Shouts

Code Tech Blog: Using URL Routing in ASP.NET 3.5

published 1213 days, 17 hours, 4 minutes ago posted by hunterz85hunterz85 1213 days, 22 hours, 19 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Tuesday, January 26, 2010 8:18:38 AM GMT
Routing is a technique which enables us to use a descriptive, search engine and human friendly URL’s for ASP.Net application to access a resource. In this technique, the URL will not map to a resource physically. For example, in a normal asp.net application, the URL "http://localhost/Articles/Default.aspx" will actually corresponds to a physical file called Default.aspx under the folder “Articles”. This Article shows Using URL Routing in asp.net. (more)
category: Web Dev | clicked: 2 | comment | | source: codetechblg.blogspot.com
tags: RouteHandler, UrlRewriter.net, URL Mapping, ASP .NET, URL Routing, System.Web.Routing, url rewriting, Ajax, URL Rewrite
7
Shouts

JEF CLAES ON .NET AND LIFE: An introduction to ASP.NET Ajax 4: The Scriptloader

published 1213 days, 17 hours, 4 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1213 days, 22 hours, 56 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Tuesday, January 26, 2010 7:41:25 AM GMT
The Scriptloader tries to make the complexity of loading scripts easier. Core features The core features of the Scriptloader are:Automatically resolving dependenciesLazy loadingParallel loadingAutomatically resolving dependencies You need the Start script to start using the Scriptloader. Use Sys.require to load the component(s) you need. The dependencies get resolved automatically. In this example I load the DataContext component. 1: Using Internet Explorer developer tools you can ... (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: ASP.NET AJAX 4
10
Shouts

Meta-Me : Creating a Data Service Provider – Part 6 – Query Interactions

published 1213 days, 17 hours, 4 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1214 days, 6 hours, 2 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Tuesday, January 26, 2010 12:35:41 AM GMT
Creating a Data Service Provider – Part 6 – Query Interactions Whenever I find myself implementing a series of interfaces to plug into a framework or server, I always find myself wondering how the server will call my implementations. For me this is about forming a mental model to simplify how I think about what I’m doing. In fact as I’ve been doing this DSP series I’ve come up with a sort of mental model for how Queries are handled in a Data Service. Here is some PSEUDO CODE that captures my mental... (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.msdn.com
tags: Data Services, Astoria, DataServices
7
Shouts

ADO.NET team blog : Announcing the Entity Framework POCO Template update for Visual Studio 2010 Beta 2

published 1213 days, 17 hours, 4 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1214 days, 6 hours, 3 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Tuesday, January 26, 2010 12:34:19 AM GMT
Announcing the Entity Framework POCO Template update for Visual Studio 2010 Beta 2Published 25 January 10 11:55 AM | dpblogs  Today we are releasing an updated version of the POCO entity generation templates that work with Visual Studio 2010 Beta 2. You can download them immediately using the Extension Manager inside Visual Studio 2010 Beta 2 or from the Visual Studio Gallery page, here for the C# version and here for the Visual Basic version. Usage of the templates is described in the updated POCO ... (more)
category: Architecture | clicked: 1 | comment | | source: blogs.msdn.com
tags: EF4, POCO, entityframework
7
Shouts

Measuring the Performance of Asynchronous Controllers « Steve Sanderson’s blog

published 1213 days, 17 hours, 4 minutes ago posted by ali62bali62b 1214 days, 11 hours, 59 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 6:38:02 PM GMT
Recently I’ve been working with ASP.NET MVC 2.0’s new asynchronous controllers. The idea with these is that you can split the request handling pipeline into two phases:First, your controller begins one or more external I/O calls (e.g., SQL database calls or web service calls). Without waiting for them to complete, it releases the thread back into the ASP.NET worker thread pool so that it can deal with other requests. Later, when all of the external I/O calls have completed, the underlying ASP.NET platfor... (more)
category: Web Dev | clicked: 2 | comment | | source: blog.codeville.net
tags: ASP.NET MVC 2, Async Controller
11
Shouts

Connected Show #23 – Agile: Putting the “soft” in Software

published 1213 days, 17 hours, 4 minutes ago posted by plaudatiplaudati 1214 days, 13 hours, 37 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 5:00:09 PM GMT
In this episode, guest Stephen Bohlen joins Peter to discuss the Agile software development methodology. Stephen talks about what it means to be agile, how agile can improve the software development process, and what boiling molasses may portend for the future of “software engineering”. Also, guest host Andrew Brust joins us for a review of the shiny new toys shown at CES in Las Vegas, NV. (more)
category: Podcast | clicked: 0 | comment | | source: blogs.msdn.com
tags: Agile Development, Agile, CES
10
Shouts

Agile ADO.Net Persistence Layer Part 4: Writing data access for new data shapes

published 1213 days, 17 hours, 4 minutes ago posted by http://rlacovara.blogspot.com/http://rlacovara.blogspot.com/ 1214 days, 14 hours, 16 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 4:21:45 PM GMT
I recently decided that I needed to take a fresh look at how to build a persistence architecture that would provide the flexibility of an ORM, that would embrace change instead of resist it (making maintenance code easier), and would use ADO.Net.  I started building from the ground up, threw away any best practices that resulted in friction, and Agile ADO.Net Persistence Layer is the result.  Part 1 in the series can be found here: Agile ADO.Net Persistence Layer Overview. What’s a new data shape? Has t... (more)
category: Architecture | clicked: 1 | comment | | source: rlacovara.blogspot.com
tags: ADO.NET, DTO, Agile
9
Shouts

Installing OpenSuse 11.2 with Mono 2.6.1 and Apache Using Text Mode Configuration – Porting to Mono Part 1 of 3 - Nathan Bridgewater

published 1213 days, 17 hours, 4 minutes ago posted by https://www.google.com/accounts/o8/id?id=AItOawk3KWTPVThtO1qHPVHfbrJzbytQaOnwRhshttps://www.google.com/accounts/o8/id?id=AItOawk3KWTPVThtO1qHPVHfbrJzbytQaOnwRhs 1214 days, 15 hours, 53 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 2:44:47 PM GMT
This is the first part of a three part series describing everything needed to get an OpenSuse server up and running and an Asp.Net MVC applications ported to Mono. The first part will cover installing and configuring an OpenSuse 11.2 server with Apache/Mono and SSH. The second part will talk about how to setup a MySql Membership provider (with Mono and Windows), and the third part is a walkthrough showing how to port a simple Asp.Net MVC site to Mono and MySql. (more)
category: Web Dev | clicked: 0 | comment | | source: www.integratedwebsystems.com
tags: Linux, Mono, Apache, mysql, MVC, ASP.NET
9
Shouts

LINQPad updated to support .NET 4.0b2! - Chris Sells

published 1213 days, 17 hours, 4 minutes ago posted by jantujantu 1214 days, 16 hours, 43 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 1:54:05 PM GMT
LINQPad has undergone major reengineering to enable expansion of its provider base. The new version features first-class support for: * SQL Azure cloud databases * ADO.NET Data Services endpoints * SQLite databases and MySQL Enterprise and Community databases (via a library based on Matt Warren's IQueryable toolkit) * Arbitrary Entity Framework providers (by specifying a custom connection string and an EDM) * Your own data sources (via an open extensibility model) (more)
category: How To | clicked: 2 | comment | | source: www.linqpad.net
tags: .net 4, LinqPad
12
Shouts

State of VS 2010 Performance - Bharry

published 1212 days, 17 hours, 4 minutes ago posted by jantujantu 1214 days, 19 hours, 48 minutes ago
Wednesday, January 27, 2010 1:33:06 PM GMT Monday, January 25, 2010 10:49:27 AM GMT
Up until Christmas, I was blogging almost every day about the progress we’ve made on addressing the Beta 2 feedback that VS 2010 had significant performance issues.  Since then, our efforts have hardly taken a break.  I saw active investigations all the way up to Christmas eve and then a bit of a lull until Jan 4th when activity resumed in full force. The improvements are so many and so dramatic that I really couldn’t enumerate them all here.  I think the best way to summar... (more)
category: Smart Client | clicked: 0 | comment | | source: blogs.msdn.com
tags: Performance, Visual Studio
9
Shouts

HerdingCode - Episode 70: Sean Chambers on Migrations in .NET

published 1213 days, 17 hours, 4 minutes ago posted by mithumithu 1214 days, 20 hours, 4 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 10:33:52 AM GMT
This week on Herding Code, we talk to Sean Chambers about migrations in .NET with Fluent Migrator. Sean talks about how Fluent Migrator originated from Migrator.NET Sean discusses how the benefits of a semantic model in Fluent Migrator K Scott and Sean discuss how you’d start using Fluent Migrator in a project Sean talks about some useful features, like InsertData\ Jon asks about support for different databases Scott K asks about the benefits of a migration framework over a simple directory of T-SQL sc... (more)
category: Podcast | clicked: 1 | comment | | source: herdingcode.com
tags: .NET, VM, T-SQL, NHibernate, Migrator, HerdingCode, DSL, migrations
12
Shouts

Just released System.Web.Mvc.Extensibility Beta - Kazi Manzur Rashid

published 1213 days, 17 hours, 4 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1214 days, 22 hours, 24 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 8:13:22 AM GMT
Just released System.Web.Mvc.Extensibility Beta I am announcing the beta of System.Web.Mvc.Extensibility. There has been quite a few changes in this release :Added support for PerWebRequest lifetime. Removed the “base” suffix from the abstract class. I am dropping the Autofac. After struggling quite a few days to add PerWebRequest support, I came to the conclusion that adding such support re... (more)
category: Architecture | clicked: 1 | comment | | source: weblogs.asp.net
tags: IoC/DI, ASPNETMVC, ioc container, IcoC
5
Shouts

JEF CLAES ON .NET AND LIFE: An introduction to ASP.NET Ajax 4: The CDN

posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 1214 days, 23 hours, 21 minutes ago
Monday, January 25, 2010 7:16:50 AM GMT
Microsoft is providing a free content delivery network hosting ASP.NET Ajax and jQuery. Next to these scripts, they are also hosting some stylesheets which play together nicely with the Client Controls. ... (more)
category: Web Dev | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: ASP.NET AJAX 4
5
Shouts

Silverlight 4 vs Flex 4: Printing - Alex van Beek

posted by alexbalexb 1214 days, 22 hours, 38 minutes ago
Monday, January 25, 2010 7:59:03 AM GMT
In this series of posts we are going to compare features of Flex 4 with their counterparts in Silverlight 4. In this first part of the series we're going to take a look at how printing is implemented on both platforms. (more)
category: Metro | clicked: 0 | comment | | source: blogs.infosupport.com
tags: RIA, Silverlight 4, printing, Flex 4
Previous 1 2 3 4 5 6 7 8 9 10 11 12 ... 29 30 Next