gpeipman
Name: gpeipman
Score: 1,905.03
Last Seen: 14 days, 12 hours, 8 minutes ago
Member Since: 3 March, 2009
DotNetShoutout
atom rss
7
shouts

Some e-books and .NET 4.0 beta exams

published 18 days, 5 hours, 18 minutes ago posted by gpeipmangpeipman 19 days, 15 hours ago
Wednesday, February 24, 2010 6:40:36 PM GMT Tuesday, February 23, 2010 8:58:02 AM GMT
Lately I have found some pretty interesting e-books about different technologies and one announcement about .NET Framework 4.0 beta exams. In this posting I will introduce you books I found and first beta exams. (more)
category: Foundation | clicked: 36 | comment | | source: weblogs.asp.net
tags: .NET, Office, Virtualization, Windows
4
shouts

Simple pager for ASP.NET MVC

posted by gpeipmangpeipman 21 days, 14 hours, 3 minutes ago
Sunday, February 21, 2010 9:55:10 AM GMT
I needed simple pager for one of my ASP.NET MVC projects. I mean really simple pager – no new types my code should be aware of, no any other chemistry I don’t really need in early stages. As ASP.NET MVC has nothing to offer I wrote my own really simple pager implementation. Here is what I did. (more)
category: ASP.NET | clicked: 6 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, Pager
4
shouts

Code Metrics: Measuring LoC in .NET applications

published 21 days, 5 hours, 22 minutes ago posted by gpeipmangpeipman 22 days, 1 hour, 4 minutes ago
Sunday, February 21, 2010 6:36:05 PM GMT Saturday, February 20, 2010 10:54:55 PM GMT
My previous posting gave quick overview of code metric called Lines of Code (LoC). In this posting I will introduce you how to measure LoC in Visual Studio projects using Visual Studio Code Analysis and NDepend. (more)
category: Foundation | clicked: 9 | comment | | source: weblogs.asp.net
tags: .NET, Code Metrics, loc
9
shouts

Code Metrics: Lines of Code (LoC)

published 21 days, 5 hours, 22 minutes ago posted by gpeipmangpeipman 24 days, 47 minutes ago
Sunday, February 21, 2010 6:36:05 PM GMT Thursday, February 18, 2010 11:11:03 PM GMT
I start writing series of blog posting about code metrics. I plan to introduce different metrics and explain their meaning. Also I plan to introduce tools you can use to measure those metrics. Where possible I will introduce you how to use one or another metric. The first metric is the simplest one and it is called Lines of Code (LoC). (more)
category: Foundation | clicked: 47 | 1 comment | | source: weblogs.asp.net
tags: code analysis, Code Metrics
4
shouts

My object to object mapper source released

published 23 days, 11 hours, 32 minutes ago posted by gpeipmangpeipman 24 days, 6 hours, 51 minutes ago
Friday, February 19, 2010 12:26:42 PM GMT Thursday, February 18, 2010 5:07:53 PM GMT
Some readers asked me for Visual Studio project of my simple object to object mapper. I am glad to announce that the source code of my mapper is now available for download. (more)
category: Foundation | clicked: 51 | 1 comment | | source: weblogs.asp.net
tags: .NET, object to object mapping, Source, Tools
5
shouts

User controls should never make redirects during GET request

published 25 days, 10 hours, 7 minutes ago posted by gpeipmangpeipman 26 days, 16 hours, 25 minutes ago
Wednesday, February 17, 2010 1:51:42 PM GMT Tuesday, February 16, 2010 7:33:14 AM GMT
Why is my page redirecting me back to front page although it gets all the data it requires? I was going out of my mind when exploring the problem in one system but this time there was really simple answer: you cannot fully trust the code written by n00bs. Okay, here is my story. (more)
category: ASP.NET | clicked: 59 | comment | | source: weblogs.asp.net
tags: ASP.NET, controls
7
shouts

Writing object to object mapper: my mapper vs AutoMapper

published 28 days, 12 hours, 36 minutes ago posted by gpeipmangpeipman 30 days, 17 hours, 43 minutes ago
Sunday, February 14, 2010 11:22:25 AM GMT Friday, February 12, 2010 6:15:37 AM GMT
As my object to object mapper is now almost completed and I am sure it is good idea to stay on LCG (Lightweight Code Generation) I can now compare the performance of my mapper to AutoMapper. (more)
category: Foundation | clicked: 46 | comment | | source: weblogs.asp.net
tags: .NET, C#, object to object mapping, Performance
6
shouts

Writing object to object mapper: moving to generics

published 31 days, 12 hours, 27 minutes ago posted by gpeipmangpeipman 31 days, 23 hours, 36 minutes ago
Thursday, February 11, 2010 11:30:56 AM GMT Thursday, February 11, 2010 12:22:30 AM GMT
In my previous posting about object to object mapping Writing object to object mapper: first implementations I wrote first and simple implementations of mapper. These implementations based heavily on reflection. In this posting I will boost up mapper performance by using generics. (more)
category: Foundation | clicked: 40 | comment | | source: weblogs.asp.net
tags: .NET, lcg, object to object mapping, Performance
11
shouts

Visual Studio 2010 RC is available

published 30 days, 12 hours, 6 minutes ago posted by gpeipmangpeipman 33 days, 14 hours, 24 minutes ago
Friday, February 12, 2010 11:52:09 AM GMT Tuesday, February 09, 2010 9:34:44 AM GMT
VS2010 RC is out now and available for MSDN users since now. Other guys have to wait until tomorrow when VS2010 RC is made publically available. Reading first news I discovered that most important thing is hardly improved performance of VS2010 RC IDE. All your feedback is welcome to VS2010 RC Connect site. (more)
category: Foundation | clicked: 59 | comment | | source: weblogs.asp.net
tags: .NET Framework 4.0, Visual Studio 2010
5
shouts

IL perversions: throwing and catching strings

posted by gpeipmangpeipman 34 days, 1 hour, 23 minutes ago
Monday, February 08, 2010 10:35:52 PM GMT
Inspired by Mohamed Mahmoud’s blog posting How to: Create Interfaces with Static Methods via IL? I wrote another sick example on IL (Intermediate Language) to show you how different is the world behind compilers. Tonight I have enough of exceptions, I want to throw some strings! Let’s do it! (more)
category: Foundation | clicked: 5 | comment | | source: weblogs.asp.net
tags: .NET, Exception Handling, IL, Visual Studio
3
shouts

Writing object to object mapper: first implementations

posted by gpeipmangpeipman 35 days, 11 hours, 39 minutes ago
Sunday, February 07, 2010 12:19:40 PM GMT
I wrote some object to object mapping code and introduced it in some of my previous postings about performance. As I received 22x performance raise when trying out different mapping methods and it is now time to make my code nice. In this posting I will show you how I organized my code to classes. Yes, you can use my classes in your work if you like. (more)
category: Foundation | clicked: 8 | comment | | source: weblogs.asp.net
tags: .NET, C#, O/O mapping
8
shouts

ASP.NET MVC Performance II: Optimizing resources

published 34 days, 10 hours, 18 minutes ago posted by gpeipmangpeipman 35 days, 14 hours, 23 minutes ago
Monday, February 08, 2010 1:40:11 PM GMT Sunday, February 07, 2010 9:35:04 AM GMT
In my previous posting about ASP.NET MVC performance I showed you how to combine resources like scripts, style sheets and images. In this posting I will show you how to minimize resources so we don’t waste the bandwidth we got. (more)
category: ASP.NET | clicked: 95 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, optimizing, Performance
7
shouts

ASP.NET MVC Performance I: Combining resources

published 35 days, 12 hours, 39 minutes ago posted by gpeipmangpeipman 36 days, 9 hours, 54 minutes ago
Sunday, February 07, 2010 11:19:44 AM GMT Saturday, February 06, 2010 2:04:50 PM GMT
I wrote a small postings series about how to optimize ASP.NET MVC applications. This posting is small introduction to series and it also introduces first two optimization steps: resources and images combining. (more)
category: ASP.NET | clicked: 81 | comment | | source: weblogs.asp.net
tags: ASP.NET, MVC, optimization, Performance
7
shouts

Performance: Using LCG to copy property values of two objects

published 34 days, 10 hours, 18 minutes ago posted by gpeipmangpeipman 37 days, 5 hours, 40 minutes ago
Monday, February 08, 2010 1:40:11 PM GMT Friday, February 05, 2010 6:18:32 PM GMT
Today I gave last performance boost to my property values copying mechanism. I would like to thank my readers Ron and David to remind me Lightweight Code Generation (LCG) and pointing me out aussie bloke blog entry Generic copy object using Lightweight Code Generation. In this posting I will show you last performance boost and put down a summary about my experiment this far. (more)
category: Foundation | clicked: 68 | comment | | source: weblogs.asp.net
tags: .NET, C#, lcg, Performance
5
shouts

Using FullCalendar jQuery component with ASP.NET MVC

published 38 days, 12 hours, 37 minutes ago posted by gpeipmangpeipman 39 days, 6 hours, 28 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 5:30:39 PM GMT
I found very good jQuery component called FullCalendar. My special favorites are agenda views because they make this calendar really useful in business applications. In this posting I will show you how to use FullCalendar with ASP.NET MVC. (more)
category: ASP.NET | clicked: 70 | comment | | source: weblogs.asp.net
tags: ASP.NET, fullcalendar, jQuery, MVC
7
shouts

Performance: Using dynamic code to copy property values of two objects

published 39 days, 13 hours, 13 minutes ago posted by gpeipmangpeipman 40 days, 7 minutes ago
Wednesday, February 03, 2010 10:45:04 AM GMT Tuesday, February 02, 2010 11:51:01 PM GMT
Last year I wrote short posting about how to use LINQ to find matching properties of two objects. In this posting I will show you how to copy values from one object to another and how to boost up performance so you can use this strategy also on in servers under heavy load. (more)
category: Foundation | clicked: 35 | comment | | source: weblogs.asp.net
tags: .NET, Linq, Performance, Reflection
6
shouts

Windows Azure Tools and SDK 1.1 (February 2010)

published 39 days, 13 hours, 13 minutes ago posted by gpeipmangpeipman 40 days, 9 hours, 57 minutes ago
Wednesday, February 03, 2010 10:45:04 AM GMT Tuesday, February 02, 2010 2:01:25 PM GMT
With Windows Azure official launch there is available new version of Windows Azure Tools and SDK 1.1. Also there are updated and new sample applications available in MSDN Code Library. (more)
category: Foundation | clicked: 27 | 1 comment | | source: weblogs.asp.net
tags: Windows Azure
7
shouts

Linking jQueryUI DatePicker and FullCalendar

published 39 days, 13 hours, 13 minutes ago posted by gpeipmangpeipman 40 days, 13 hours, 6 minutes ago
Wednesday, February 03, 2010 10:45:04 AM GMT Tuesday, February 02, 2010 10:52:53 AM GMT
In one of my sample projects I wrote simple calendar solution. Users can select dates from calendar and see what events they have on selected days. I used jQueryUI DatePicker and FullCalendar components. In this posting I will show you how to link them together. (more)
category: Ajax | clicked: 52 | comment | | source: weblogs.asp.net
tags: DatePicker, fullcalendar, jQuery
7
shouts

.NET Framework 4.0: Comparing LINQ and PLINQ performance

published 41 days, 10 hours, 14 minutes ago posted by gpeipmangpeipman 42 days, 3 hours, 5 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Sunday, January 31, 2010 8:53:06 PM GMT
In one of my sessions I demonstrated how PLINQ uses two CPU-s instead of one and has better performance than non-parallel processing. In this posting I will introduce my experiment and show you my example results. In the end of this posting you can find source code that is ready for demonstration. (more)
category: Foundation | clicked: 41 | comment | | source: weblogs.asp.net
tags: .Net 4.0, Plinq
6
shouts

ASP.NET 4.0: How to use application warm-up class

published 41 days, 10 hours, 14 minutes ago posted by gpeipmangpeipman 42 days, 10 hours, 27 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Sunday, January 31, 2010 1:31:25 PM GMT
About week ago I introduced IIS Application Warm-up Module. ASP.NET 4.0 provides separate mechanism for same purposes. ASP.NET 4.0 application warm-up is different and if you like you can use both warm-up methods together. In this posting I will show you how to make ASP.NET 4.0 application warm-up work. (more)
category: ASP.NET | clicked: 43 | comment | | source: weblogs.asp.net
tags: ASP.NET, IIS
Previous 1 2 3 4 5 6 7 Next