Nickolay
Name: Nickolay
Score: 9,271.71
Last Seen: 465 days, 6 hours, 2 minutes ago
Member Since: 8 February, 2009
DotNetShoutout
atom rss
5
Shouts

Working with collections in WCF RIA Services (part 2)

published 738 days, 22 hours, 18 minutes ago posted by KMilKMil 741 days, 13 hours, 6 minutes ago
Saturday, May 14, 2011 2:05:59 AM GMT Wednesday, May 11, 2011 11:18:38 AM GMT
In the first part of this article series, Kevin Dockx talked about the simpler collection types: EntitySet and EntityList. In this part, he’ll dig deeper into the more advanced types: the ICollectionView and the DomainCollectionView. (more)
category: Metro | clicked: 1 | comment | | source: www.silverlightshow.net
tags: WCF RIA Services
6
Shouts

Losing Free Reflector? Try JustDecompile!

published 740 days, 15 hours, 19 minutes ago posted by KodefuGuruKodefuGuru 743 days, 19 hours, 20 minutes ago
Thursday, May 12, 2011 9:05:18 AM GMT Monday, May 09, 2011 5:04:39 AM GMT
When Red Gate announced that .NET Reflector would no longer be offered as a free product, I wrote that this would be good for the community. Reflector has been a staple product for years, but there was little reason for anyone to offer alternatives as it was a solid product and free. In a short few months, competitive products have been announced and a few have been released. I wrote about the decompile feature in JustCode, which is an innovative method of decompiling your code directly within Visual St... (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: JustCode, Telerik, Reflector, JustDecompile
6
Shouts

Entity Framework and T4: Generate Query Objects on the fly, part 1 | Rui Jarimba

published 740 days, 15 hours, 19 minutes ago posted by http://ruijarimba.wordpress.com/http://ruijarimba.wordpress.com/ 744 days, 1 hour, 1 minute ago
Thursday, May 12, 2011 9:05:18 AM GMT Sunday, May 08, 2011 11:23:45 PM GMT
Generate Query Objects on the fly for your Entity Framework entities using T4 templates. Don’t worry about LINQ, let the objects do all the work for you. (more)
category: Architecture | clicked: 7 | comment | | source: ruijarimba.wordpress.com
tags: .NET, T4, Entity Framework, C#, Query Object, Linq, Design Patterns
8
Shouts

InfoQ: Telerik Promises a Free .NET Decompiler Forever

published 737 days, 19 hours, 55 minutes ago posted by KodefuGuruKodefuGuru 741 days, 20 hours, 25 minutes ago
Sunday, May 15, 2011 4:29:37 AM GMT Wednesday, May 11, 2011 3:59:09 AM GMT
Telerik, a company making .NET and Agile development tools, has announced that JustDecompile, a code browsing and decompiling tool, will be made available for free, forever. .NET Reflector, a well-known decompiling tool for .NET assemblies, was once free but RedGate decided to charge money for it earlier this year because “owning Reflector doesn’t make commercial sense”, according Simon Galbraith, co-founder of RedGate. The tool comes now in three versions, the cheapest one being Standard ($35), a stand... (more)
category: How To | clicked: 0 | 1 comment | | source: www.infoq.com
tags: Telerik, .NET Reflector, JustDecompile
5
Shouts

NuGet Package of the Week #6 - Dynamic, Malleable, Enjoyable Expando Objects with Clay - Scott Hanselman

published 738 days, 22 hours, 18 minutes ago posted by iftekharahmedamitiftekharahmedamit 741 days, 21 hours, 49 minutes ago
Saturday, May 14, 2011 2:05:59 AM GMT Wednesday, May 11, 2011 2:35:18 AM GMT
Hey, have you implemented the NuGet Action Plan? Get on it, it'll take only 5 minutes: NuGet Action Plan - Upgrade to 1.2, Setup Automatic Updates, Get NuGet Package Explorer. NuGet 1.3 is out, so make sure you're set to automatically update! The Backstory: I was thinking since the NuGet .NET package management site is starting to fill up that I should start looking for gems (no pun intended) in there. You know, really useful stuff that folks might otherwise not find. I'll look for mostly open source pr... (more)
category: How To | clicked: 2 | comment | | source: www.hanselman.com
tags: NuGetPOW, NuGet
3
Shouts

Continuous Integration « Software Delivered

posted by MadhuriMMadhuriM 743 days, 8 hours, 17 minutes ago
Monday, May 09, 2011 4:07:41 PM GMT
The topic of Continuous Integration  has gained a lot of ground in the past few years in the Software Development world – several high quality tools have emerged . Some companies have adopted it as integral part of SDLC methodology. Some I think are still trying to understand it , however a lot have not yet just made it their daily practice due to either lack of tools within the company or lack of a process. I have worked in this industry for more than 20 years and there are several reasons why I think C... (more)
category: Agile | clicked: 0 | comment | | source: softwaredelivered.wordpress.com
tags: Continuous Integration
2
Shouts

My thoughts on WebMatrix

posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 743 days, 4 hours, 51 minutes ago
Monday, May 09, 2011 7:32:56 PM GMT
After building arealdeveloper.com, I felt like I had to do a follow-up post sharing my experiences with WebMatrix. While doing some research, I came across this post by Rob Connery. And frankly, I think it's almost impossible for me to add something to his findings. For those who are like "tl;dr", here are my thoughts on WebMatrix.. (more)
category: Web Dev | clicked: 1 | comment | | source: jclaes.blogspot.com
tags: WebMatrix
3
Shouts

Azure AppFabric ACS - Unauthorized: Logon failed due to server configuration

posted by sandrinosandrino 743 days, 3 hours, 48 minutes ago
Monday, May 09, 2011 8:36:28 PM GMT
While I was playing around with Azure AppFabric ACS I got the following error: Error message 401.2: Unauthorized: Logon failed due to server configuration. Verify that you have permission to view this directory or page based on the credentials you supplied and the authentication methods enabled on the Web server. Contact the Web server's administrator for additional assistance. (more)
category: Architecture | clicked: 18 | comment | | source: sandrinodimattia.net
tags: Azure AppFabric ACS, Azure
3
Shouts

How to call the method from the base of the base of the current class ? (base.base.MyMethod)

posted by jmix90jmix90 741 days, 2 hours, 24 minutes ago
Wednesday, May 11, 2011 10:00:19 PM GMT
In this post we will discover how to call a second-level base method on a class. Actually, this would be like using base.base.MyMethod() was working in C# ! It can be interesting when we need to skip one implementation in the inheritance path... (more)
category: How To | clicked: 1 | comment | | source: blog.lexique-du-net.com
tags: .NET, Delegate, Inheritance, C#, base
5
Shouts

Getting From .NET to HTML5 without Getting Lost

published 737 days, 19 hours, 55 minutes ago posted by webguiwebgui 740 days, 11 hours, 3 minutes ago
Sunday, May 15, 2011 4:29:37 AM GMT Thursday, May 12, 2011 1:20:57 PM GMT
You can’t go anywhere online these days without reading something about the new web standard: HTML5. HTML5, the latest version of the hyper-text mark-up language, enables a better web experience, with richer graphics, animation and web multimedia. Many pundits see it as the next generation web – web 3.0 if you like – and an open standard replacement for propriety plug-ins, Microsoft Silverlight and Adobe Flash. With so much hype surrounding HTML5, and the benefits it brings, there’s one major question th... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: webgui20.wordpress.com
tags: .NET, RIA, Silverlight, Application Development, C#, VB.NET, ASP .NET, Visual Studio, jQuery, Ajax, html5
8
Shouts

WCF Extensibility – Operation Selectors - The .NET Endpoint - Carlos Figueira

published 738 days, 22 hours, 18 minutes ago posted by iftekharahmedamitiftekharahmedamit 740 days, 13 hours, 23 minutes ago
Saturday, May 14, 2011 2:05:59 AM GMT Thursday, May 12, 2011 11:01:26 AM GMT
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page. We’re now entering the realm of the less used extensibility points for the WCF runtime. Operation selectors could well be left as an internal implementation detail for WCF, but for some reason the designers decided to make them public (I think the guideline back then was if anyone can come up with a scenario where a user would use it, then WCF would expose a hook ... (more)
category: Web Dev | clicked: 4 | 1 comment | | source: blogs.msdn.com
tags: WCF, Extensibility
5
Shouts

BitArray in .NET - Keyvan Nayyeri

published 737 days, 19 hours, 55 minutes ago posted by iftekharahmedamitiftekharahmedamit 740 days, 13 hours, 26 minutes ago
Sunday, May 15, 2011 4:29:37 AM GMT Thursday, May 12, 2011 10:58:02 AM GMT
It’s been quite a while since the last time I published a post related to .NET programming and in this while my focus was on more fundamental aspects of programming languages and compilers reformatting my mind about some delicate details of languages and programming, but hopefully, I’m going to write more about .NET in the near future. There are a set of classes and APIs in the .NET Framework that are used less by ordinary software developers engaged in commercial programming. This is in part due to the... (more)
category: How To | clicked: 0 | comment | | source: nayyeri.net
5
Shouts

Dean Hume - Measuring Web Page Performance with Selenium 2 and the Web Timings API

published 738 days, 22 hours, 18 minutes ago posted by deanomachinodeanomachino 740 days, 9 hours, 51 minutes ago
Saturday, May 14, 2011 2:05:59 AM GMT Thursday, May 12, 2011 2:33:24 PM GMT
Measuring Web Page Performance with Selenium 2 and the Web Timings API I have always been interested in measuring web performance, and especially in measuring the improvements in performance. A while ago I attended a Selenium Meetup in London and heard an interesting presentation by one of the QA guys working at Mozilla. He talked about measuring the performance of a web page over a period of time using Selenium 2 and logging these statistics so we can track client-side performance improvements. ... (more)
category: Web Dev | clicked: 4 | comment | | source: deanhume.com
tags: C#, Google Charts, Web Timings API, MVC
6
Shouts

C#/.NET Little Wonders: 5 Easy Ways to Combine Sequences

published 736 days, 12 hours, 35 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 740 days, 1 hour, 15 minutes ago
Monday, May 16, 2011 11:49:14 AM GMT Thursday, May 12, 2011 11:09:45 PM GMT
Today I’m going to look at 5 different ways of combining two sequences together using LINQ extension methods. For the purposes of this discussion, I will split these 5 methods into homogeneous and heterogeneous methods which will combine like or unlike types respectively. (more)
category: Web Dev | clicked: 0 | comment | | source: blackrabbitcoder.net
tags: .NET, Concat, join, Little Wonders, C#, Union, Zip, GroupJoin, Linq
6
Shouts

Declarative Refactoring in C#

published 737 days, 19 hours, 55 minutes ago posted by KodefuGuruKodefuGuru 740 days, 2 hours, 4 minutes ago
Sunday, May 15, 2011 4:29:37 AM GMT Thursday, May 12, 2011 10:20:11 PM GMT
You will learn how to fully utilize the C# language to assign functionality where it belongs, make your code readable even for that future you, and in the process end up with a reusable framework. (more)
category: Screencast | clicked: 5 | comment | | source: channel9.msdn.com
tags: Extension Methods, Refactoring, C#, Declarative, continuations
4
Shouts

Step-by-Step Using ImplicitDataType in Silverlight 5 Beta

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 748 days, 6 hours, 40 minutes ago
Wednesday, May 04, 2011 5:44:23 PM GMT
ImplicitDataType is a new feature in Silverlight 5. Using ImplicitDataType, you can declare multiple Data Templates for your control and based on the data type, you can load the proper data template automatically. In this article we will discuss on the same step by step with a good example. Read the complete article to know it in depth. Do you have any queries, let me know. Feedbacks are always appreciated. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight5, Silverlight, Silverlight5 Features, Silverlight 5
4
Shouts

Detecting Memory Leaks with JustTrace Beta

posted by KodefuGuruKodefuGuru 747 days, 20 hours, 8 minutes ago
Thursday, May 05, 2011 4:15:59 AM GMT
Telerik JustTrace is a new performance and memory profiling utility, and the beta was released last week. Like many people, I’ve built projects with a focus on ensuring the functionality works, but it is vital that your application performs well without consuming unnecessary resources when it is finally delivered. To determine if there are issues I should be addressing, I downloaded the JustTrace beta and put my Win7 multitouch demo application, TouchCafe, to the the test. A quick note if you have troub... (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: JustCode, Telerik, JustTrace, memory leak
6
Shouts

Mindscape releases WPF Diagrams 2.0

published 746 days, 3 hours, 21 minutes ago posted by traskjdtraskjd 747 days, 12 hours, 6 minutes ago
Friday, May 06, 2011 9:03:41 PM GMT Thursday, May 05, 2011 12:18:34 PM GMT
Mindscape WPF Diagrams 2.0 has been released and adds to the existing product by adding 80+ new shapes out of the box, absolute positioned diagrams, improved toolbox and much more. But it's not all about features - it's about providing a way for developers to easily create 'WOW' experiences for their end users and WPF Diagrams does just that. (more)
category: UX | clicked: 1 | 4 comments | | source: www.mindscapehq.com
tags: Diagram, WPF, Flow Diagram, XAML, Shapes, Mindscape
5
Shouts

C#/.NET Little Wonders: The LINQ Set Operations -- they're not just for math!

published 745 days, 40 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 747 days, 6 minutes ago
Saturday, May 07, 2011 11:43:58 PM GMT Friday, May 06, 2011 12:18:10 AM GMT
Today we are going to examine the LINQ set operations that are part of the IEnumerable (more)
category: Web Dev | clicked: 2 | comment | | source: blackrabbitcoder.net
tags: .NET, sets, Little Wonders, C#, Linq
5
Shouts

Intersoft Solutions Debuts WebUI Studio 2011 R1

published 745 days, 40 minutes ago posted by jemmyjemmy 746 days, 21 hours, 9 minutes ago
Saturday, May 07, 2011 11:43:58 PM GMT Friday, May 06, 2011 3:15:20 AM GMT
Intersoft Solutions, a global vendor specializing in highly-reusable user interface controls for ASP.NET, Silverlight, and WPF, today announced the official release of WebUI Studio 2011 R1. It introduces over 30 new controls spanning across three platforms, including the flagship UXGridView, a high performance MVVM-compliant data grid for Silverlight and WPF, in addition to many enhancements. WebUI Studio R1 delivers a total of 290 powerful controls for small to large-sized enterprise business applicatio... (more)
category: Web Dev | clicked: 5 | comment | | source: intersoftpt.com
tags: Silverlight, webui, intersoft, webui studio, Framework, WPF, component, ASP.NET
Previous 1 2 3 4 5 6 7 8 9 10 ... 54 55 Next