ALMing in Hinglish 2–Windows 8-Manual Testing Metro Style A... Tarun Arora, January 1, 0001 What is ALMing in Hinglish => Introduction दूसरे वीडियो में शुभ्रा माजी, आदित्य अग्रवाल और सृष्टि श्रीधर से चर्चा करेंगे विंडोज 8 मेट्रो स्टाइल ऍप्लिकेशन्स की मैनुअल टैस्टिंग के बारे में. टीम हमें माइक्रोसॉफ्ट ... ALMing in Hinglish 2–Windows 8-Manual Testing Metro Style A... 0 0 0
MVVM Light V4b1 for Windows 8 Consumer Preview (with installer) Laurent Bugnion, January 1, 0001 I just pushed the following to Codeplex: Read the rest of this entry » ... MVVM Light V4b1 for Windows 8 Consumer Preview (with installer) 0 0 0
Dallas First Robotics Competition (FRC) 2012 T, January 1, 0001 Wow! That is all I have to say after three fun filled days in a world that fed the geek, sparked the competitor, inspired the humanitarian, encouraged the inventor, and continuously warmed the heart in ... Dallas First Robotics Competition (FRC) 2012 0 0 0
Automated SSRS deployment with the RS utility Stacy Vicknair, January 1, 0001 If you’re familiar with SSRS and development you are probably aware of the SSRS web services. The RS utility is a tool that comes with SSRS that allows for scripts to be executed against against the SSRS ... Automated SSRS deployment with the RS utility 0 0 0
Writing multiple lines of text to the console in nasm MarkPearl, January 1, 0001 In it’s simplest form… the following asm code should work org 0x100 bits 16 jmp main message: db 'example text ', 0xa,'and some more text', 0xa, 'and another line','$' main: mov dx,message mov ah,09h int ... Writing multiple lines of text to the console in nasm 0 0 0
MVVM and Animations in Silverlight Aligned, January 1, 0001 I wanted to spin an icon to show progress to my user while some content was downloading. I'm using MVVM (aren't you) and made a satisfactory Storyboard to spin the icon. However, it took longer than expected ... MVVM and Animations in Silverlight 0 0 3
Parallel MSBuild FTW - Build faster in parallel deadlydog, January 1, 0001 Hey everyone, I just discovered this great post yesterday that shows how to have msbuild build projects in parallel Basically all you need to do is… Read more at http://blog.danskingdom.com... ... Parallel MSBuild FTW - Build faster in parallel 0 0 4
How to get distinct values from the List<T> with LINQ Vincent Maverick Durano, January 1, 0001 Recently I was working with data from a generic List<T> and one of my objectives is to get the distinct values that is found in the List. Consider that we have this simple class that holds the following ... How to get distinct values from the List<T> with LINQ 0 0 6
jqGrid bug - postdata.split is not a function (version 4.3.1) Renso, January 1, 0001 Issue:there is a bug in the 4.3.1 version of the jqGrid: "postdata.split is not a function"Fix:https://github... ... jqGrid bug - postdata.split is not a function (version 4.3.1) 0 0 0
Finding Buried Controls Bunch, January 1, 0001 This post is pretty specific to an issue I had but still has some ideas that could be applied in other scenarios. The problem I had was updating a few buttons so their Text values could be set in the code ... Finding Buried Controls 0 0 0
MapRedux - PowerShell and Big Data Dittenhafer Solutions, January 1, 0001 MapRedux – #PowerShell and #Big Data Have you been hearing about “big data”, “map reduce” and other large scale computing terms over the past couple of years and been curious to dig into more detail? Have ... MapRedux - PowerShell and Big Data 0 0 0
SQL Saturday #141–June 16 1012 near Fort Lauderdale Herve Roggero, January 1, 0001 SQLSaturday #141 South Florida 2012 will be here in less than 3 months! This is a training event for SQL Server professionals and those wanting to learn about SQL Server. This event will be held June 16, ... SQL Saturday #141–June 16 1012 near Fort Lauderdale 0 0 0
App_Offline.htm, taking site down for maintenance Vipin, January 1, 0001 There is much simpler and graceful way to shut down a site while doing upgrade to avoid the problem of people accessing site in the middle of a content update. Basically, if you place file with name 'app_offline.htm' ... App_Offline.htm, taking site down for maintenance 0 0 10
Microsoft and the open source community Charles Young, January 1, 0001 For the last decade, I have repeatedly, in my imitable Microsoft fan boy style, offered an alternative view to commonly held beliefs about Microsoft's stance on open source licensing. In earlier times, ... Microsoft and the open source community 0 0 1
Scaling-out Your Services by Message Bus based WCF Transport Exte... Shaun, January 1, 0001 We are almost done everything about the WCF transport extension over the message bus, which makes our services can be scaled out by introducing more instances over machines and servers. We had finished ... Scaling-out Your Services by Message Bus based WCF Transport Exte... 0 0 1
Pre-selecting Iteration and Area Path for TFS 2010 SSRS Reports Bob Hardister, January 1, 0001 There are pieces of information spread out on this in various postings for SQL Server Reporting Services used in Team Foundation Server. Here are two: Customizing Report Parameters for Team Foundation ... Pre-selecting Iteration and Area Path for TFS 2010 SSRS Reports 0 0 0
Low-Latency High-Performant Financial App Infrastructures JoshReuben, January 1, 0001 Financial Apps feel the need for speed – this can come via parallelization, and via infrastructure - fast messaging and non-blocking distributed memory management. This blogpost gives an overview + examples ... Low-Latency High-Performant Financial App Infrastructures 0 0 3
Demystifying Windows Phone 7.5 Refresh and Windows Phone SDK 7.1.... Nikita Polyakov, January 1, 0001 Everyone loves naming conventions and product code names :) I’ve see a few people mislead by blogs and so called “.com press” to the point of confusion about what Windows Phone 7.5 Refresh and Windows ... Demystifying Windows Phone 7.5 Refresh and Windows Phone SDK 7.1.... 0 0 0
Thumbs Up to Coders For Charities 2012 jkauffman, January 1, 0001 For any of those in the Kansas City area, I recommend Coders For Charities as a great once-a-year event! It’s a weekend code-a-thon in which small, quickly-assembled teams of software engineers construct ... Thumbs Up to Coders For Charities 2012 0 0 0
Inside the Concurrent Collections: ConcurrentBag simonc, January 1, 0001 Unlike the other concurrent collections, ConcurrentBag does not really have a non-concurrent analogy. As stated in the MSDN documentation, ConcurrentBag is optimised for the situation where the same thread ... Inside the Concurrent Collections: ConcurrentBag 0 0 2
C# Value Type Table Mark Treadwell, January 1, 0001 One of the things I always seem to be checking are the various characteristics of the C# value types. You know, stupid questions like whether int is the same as System.Int32 or System.Int64. I know the ... C# Value Type Table 0 0 2
For Modernizr, Don’t Stop with NuGet Steve Albers, January 1, 0001 The ASP.NET MVC template drops a copy of Modernizr 1.7 in your project automatically, and if you check for NuGet updates the library is brought up to the current version - 2.5.3. The NuGet package is a ... For Modernizr, Don’t Stop with NuGet 0 0 1
Guncraft on Kickstarter - Last Chance this weekend! Michael B. McLaughlin, January 1, 0001 Andy Dunn, known far and wide as The Zman (accept no substitutes) has been a strong supporter of the XNA community for many years now (and the Managed DirectX community before that). This coming Sunday ... Guncraft on Kickstarter - Last Chance this weekend! 0 0 0
Windows Azure Service Bus Resequencer Alan Smith, January 1, 0001 Introduction I’ll be presenting a session at Sweden Windows Azure Group (SWAG) on Monday, as well as presenting on the Windows Azure Service Bus at various other events. I thought it would be fun to look ... Windows Azure Service Bus Resequencer 0 0 1
Scaling-out Your Services by Message Bus based WCF Transport Exte... Shaun, January 1, 0001 In our last post I demonstrated how to implement the datagram channel shape, and in the second and third post I described the request reply shape. In this post I will explain the last MEP in WCF, duplex, ... Scaling-out Your Services by Message Bus based WCF Transport Exte... 0 0 0
Scaling-out Your Services by Message Bus based WCF Transport Exte... Shaun, January 1, 0001 In the previous posts we talked about the transport extension that scaling-out our WCF services over a message bus transportation. What we have done is to use request reply MEP as a example, and implement ... Scaling-out Your Services by Message Bus based WCF Transport Exte... 0 0 0
Scaling-out Your Services by Message Bus based WCF Transport Exte... Shaun, January 1, 0001 In the previous post I demonstrated how to implement a very basic transport extension over an in memory message bus that supports request reply MEP. At the end of that post I created a console application ... Scaling-out Your Services by Message Bus based WCF Transport Exte... 0 0 0
Scaling-out Your Services by Message Bus based WCF Transport Exte... Shaun, January 1, 0001 In my previous post I introduced the architecture of message bus based system, the dispatcher mode and the pulling mode. I also explained a bit about the channel mode and transport extensibility of WCF. ... Scaling-out Your Services by Message Bus based WCF Transport Exte... 0 0 0
Scaling-out Your Services by Message Bus based WCF Transport Exte... Shaun, January 1, 0001 Cloud computing gives us more flexibility on the computing resource, we can provision and deploy an application or service with multiple instances over multiple machines. With the increment of the service ... Scaling-out Your Services by Message Bus based WCF Transport Exte... 0 0 0
How to create Checkboxes that act like Radio buttons with Jquery hmloo, January 1, 0001 I have a post here to show code examples for check/uncheck all checkbox with Jquery. This time I will implement another request that the user should only be able to check at most one of the checkboxes, ... How to create Checkboxes that act like Radio buttons with Jquery 0 0 1
Visual Studio & TFS 2012 – List of extensions and tools... terje, January 1, 0001 This post is continued HERE. Go to Part 1 – List of Product Updates for information on Visual Studio and TFS 2012 updates Looking for the VS 2010 extensions ? Go to Visual Studio 2010 - List of Product ... Visual Studio & TFS 2012 – List of extensions and tools... 0 0 8
Show line breaks in asp:label inside gridview Vipin, January 1, 0001 To show line breaks in asp:label element or for that matter inside Gridview, do the following in case of Mandatory/ Nullable fields. <ItemTemplate> <%# ((string)Eval("Details")).R... ... Show line breaks in asp:label inside gridview 0 0 3
Page_BlockSubmit - reset it to False, if there is a scenario when... Vipin, January 1, 0001 Recently, I was facing a problem where if there was a validation error, and if I changed the state of checkbox it won't postback on first attempt. But when I uncheck and check again , it postbacks on second ... Page_BlockSubmit - reset it to False, if there is a scenario when... 0 0 5
Gettings Terms asscoiated to a Specific list item Gino Abraham, January 1, 0001 I had a fancy requirement where i had to get all tags associated to a document set in a document library. The normal tag could webpart was not working when i add it to the document set home page, so planned ... Gettings Terms asscoiated to a Specific list item 0 0 1
Myths about Coding Craftsmanship part 2 tom, January 1, 0001 Myth 3: The source of all bad code is inept developers and stupid people When you review code is this what you assume? Shame on you. You are probably making assumptions in your code if you are assuming ... Myths about Coding Craftsmanship part 2 0 0 2
APress Deal of the Day - 21/Mar/2012 - Pro Agile .NET Development... TATWORTH, January 1, 0001 Today's $10 Deal of the Day from APress at http://www.apress.com/97814... is Pro Agile .NET Development with SCRUM."Pro Agile .NET Development with SCRUM guides you through a real-world ASP.NET project ... APress Deal of the Day - 21/Mar/2012 - Pro Agile .NET Development... 0 0 0
Replace broken image with noimage icon using Jquery hmloo, January 1, 0001 Sometimes when the image isn't available on server, the web page will show a broken image. so we can display a "no image available" image for good user experience. I will implement it using Jquery. $(document).ready(function() ... Replace broken image with noimage icon using Jquery 0 0 0
BIDS Helper 1.6 Beta Release (now with SQL 2012 support!) Darren Gosbell, January 1, 0001 The beta for BIDS Helper 1.6 was just released. We have not updated the version notification just yet as we would like to get some feedback on people's experiences with the SQL 2012 version. So if you ... BIDS Helper 1.6 Beta Release (now with SQL 2012 support!) 0 0 3
The gestures of Windows 8 (Consumer preview): part 2, More about ... Laurent Bugnion, January 1, 0001 This is part 2 of a multipart blog post about the gestures and shortcuts in Windows 8 consumer preview. Part 1 can be found here! Read the rest of this entry » ... The gestures of Windows 8 (Consumer preview): part 2, More about ... 0 0 0
Using HTML5 Today part 3– Using Polyfills Steve Albers, January 1, 0001 Shims help when adding semantic tags to older IE browsers, but there is a huge range of other new HTML5 features that having varying support on browsers. Polyfills are the tool to work with many of these ... Using HTML5 Today part 3– Using Polyfills 0 0 0
Why do we (really) program to interfaces? Kyle Burns, January 1, 0001 One of the earliest lessons I was taught in Enterprise development was "always program against an interface". This was back in the VB6 days and I quickly learned that no code would be allowed to move to ... Why do we (really) program to interfaces? 0 0 1
The Linux powered LAN Gaming House sachinghalot, January 1, 0001 LAN parties offer the enjoyment of head to head gaming in a real-life social environment. In general, they are experiencing decline thanks to the convenience of Internet gaming, but Kenton Varda is a man ... The Linux powered LAN Gaming House 0 0 0
Obtaining positional information in the IEnumerable Select extens... Kyle Burns, January 1, 0001 This blog entry is intended to provide a narrow and brief look into a way to use the Select extension method that I had until recently overlooked. Every developer who is using IEnumerable extension methods ... Obtaining positional information in the IEnumerable Select extens... 0 0 0
Need help with software licensing? Read on… juanlarios, January 1, 0001 Figuring out which software licensing options best suit your needs while being cost-effective can be confusing. Some businesses end up making their purchases through retail stores which means they miss ... Need help with software licensing? Read on… 0 0 0
Fix a jQuery/HTML5 dynamic content issue by upgrading jQuery Steve Albers, January 1, 0001 The default NuGet template for MVC3 pushes down jQuery 1.5.1. You can upgrade to a new version (1.7.1 is current when this was written) to avoid a problem with the creation of “unknown” HTML5 tags in IE6-8: ... Fix a jQuery/HTML5 dynamic content issue by upgrading jQuery 0 0 3
SharePoint 2010 MSDN Labs Kelly Jones, January 1, 0001 Eric Ligman, from Microsoft, posted a great blog post this week listing all of the SharePoint 2010 Virtual Labs that are available from Microsoft. His blog entry is here: http://blogs.msdn.com/b/mss... ... SharePoint 2010 MSDN Labs 0 0 1
How to nest transactions nicely - "begin transaction" v... Brian Biales, January 1, 0001 Do you write stored procedures that might be used by others? And those others may or may not have already started a transaction? And your SP does several things, but if any of them fail, you have to undo ... How to nest transactions nicely - "begin transaction" v... 0 0 4
Development Quirk From ASP.NET Dynamic Compilation jkauffman, January 1, 0001 The Problem I got a compilation error in my ASP.NET MVC3 project that tested my sanity today. (As always, names are changed to protect the innocent) The type or namespace name 'FishViewModel' does not ... Development Quirk From ASP.NET Dynamic Compilation 0 0 0
Team Explorer Everywhere 2010 now Free..! Ravi, January 1, 0001 Yes, now more ways to get connected to TFS 2010. Up until now, if you have to connect to TFS 2010 from other platforms - be it Linux, Mac, Solaris etc., you had to purchase a CAL (Client Access License) ... Team Explorer Everywhere 2010 now Free..! 0 0 0
Dream Build Play: Do a little dance because it’s dancing ti... George Clingerman, January 1, 0001 Microsoft is running another Dream Build Play contest and once again I’m entering. (You can enter too by registering here –> https://www.dreambuildplay.... I’ve entered every year ... Dream Build Play: Do a little dance because it’s dancing ti... 0 0 9