gpeipman
用户名: gpeipman
积分: 1,895.01
最近访问: 17 天, 1 小时, 10 分钟
注册时间: 23 July, 2009
9eFish
atom rss
1
臭虫

Some e-books and .NET 4.0 beta exams

gpeipmangpeipman 发表于 17 天, 1 小时, 10 分钟 之前
Thursday, March 04, 2010 3:48:56 PM GMT Tuesday, February 23, 2010 9:03:20 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)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net 4.0, office, virtualization, windows
1
臭虫

Code Metrics: Measuring LoC in .NET applications

gpeipmangpeipman 发表于 19 天, 11 小时, 14 分钟 之前
Tuesday, March 02, 2010 1:50:38 PM GMT Saturday, February 20, 2010 10:59:30 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)
类别: Language | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net, code metrics, loc, NDepend, visual studio
1
臭虫

Code Metrics: Lines of Code (LoC)

gpeipmangpeipman 发表于 21 天, 10 小时, 55 分钟 之前
Sunday, February 28, 2010 11:27:07 AM GMT Thursday, February 18, 2010 11:18:13 PM GMT
I started 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)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: code analysis, code metrics
1
臭虫

My object to object mapper source released

gpeipmangpeipman 发表于 21 天, 17 小时 之前
Sunday, February 28, 2010 11:27:07 AM GMT Thursday, February 18, 2010 5:13:16 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. It is Visual Studio 2008 project written on C# and besides mapper implementation it contains primitive sample application that shows you how to use my mapper. (more)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net, object to object mapping, tools
1
臭虫

User controls should never make redirects during GET request

gpeipmangpeipman 发表于 24 天, 2 小时, 35 分钟 之前
Friday, February 26, 2010 5:36:50 AM GMT Tuesday, February 16, 2010 7:38:26 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)
类别: Web Form | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: asp.net, user controls
1
臭虫

Writing object to object mapper: my mapper vs AutoMapper

gpeipmangpeipman 发表于 28 天, 3 小时, 48 分钟 之前
Sunday, February 21, 2010 6:23:28 AM GMT Friday, February 12, 2010 6:25:16 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)
类别: Architecture | 点击: 2 | 评论 | | 源: weblogs.asp.net
标签: .net, C#, object to object mapping, performance
1
臭虫

Writing object to object mapper: moving to generics

gpeipmangpeipman 发表于 29 天, 9 小时, 48 分钟 之前
Thursday, February 18, 2010 3:13:28 PM GMT Thursday, February 11, 2010 12:25:19 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)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net, CLR, object to object mapping, performance
1
臭虫

Visual Studio 2010 RC is available

gpeipmangpeipman 发表于 31 天, 36 分钟 之前
Thursday, February 18, 2010 3:13:28 PM GMT Tuesday, February 09, 2010 9:37:27 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)
类别: Foundation | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: -NET Framework 4.0, visual studio 2010
1
臭虫

IL perversions: throwing and catching strings

gpeipmangpeipman 发表于 31 天, 11 小时, 29 分钟 之前
Thursday, February 18, 2010 3:13:28 PM GMT Monday, February 08, 2010 10:44:46 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)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net, exception handling, IL, visual studio
1
臭虫

Writing object to object mapper: first implementations

gpeipmangpeipman 发表于 32 天, 21 小时, 46 分钟 之前
Tuesday, February 16, 2010 3:11:40 PM GMT Sunday, February 07, 2010 12:27:39 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 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)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net, C#, object to object mapping, performance
1
臭虫

ASP.NET MVC Performance II: Optimizing resources

gpeipmangpeipman 发表于 33 天, 33 分钟 之前
Tuesday, February 16, 2010 3:11:40 PM GMT Sunday, February 07, 2010 9:40:29 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)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, MVC, optimization, performance
1
臭虫

ASP.NET MVC Performance I: Combining resources

gpeipmangpeipman 发表于 33 天, 20 小时, 5 分钟 之前
Sunday, February 14, 2010 1:16:24 PM GMT Saturday, February 06, 2010 2:08:19 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)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, MVC, optimization, performance
1
臭虫

Performance: Using LCG to copy property values of two objects

gpeipmangpeipman 发表于 34 天, 15 小时, 53 分钟 之前
Sunday, February 14, 2010 1:16:24 PM GMT Friday, February 05, 2010 6:20:18 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)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: .net, C#, lcg, performance
1
臭虫

Using FullCalendar jQuery component with ASP.NET MVC

gpeipmangpeipman 发表于 36 天, 16 小时, 38 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Wednesday, February 03, 2010 5:35:30 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)
类别: Web Form | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: asp.net, fullcalendar, JQuery, MVC
1
臭虫

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

gpeipmangpeipman 发表于 37 天, 10 小时, 17 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Tuesday, February 02, 2010 11:56:58 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)
类别: Foundation | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: .net, Linq, performance, reflection
1
臭虫

Windows Azure Tools and SDK 1.1 (February 2010)

gpeipmangpeipman 发表于 37 天, 20 小时, 10 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Tuesday, February 02, 2010 2:03:56 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)
类别: Foundation | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: windows azure
1
臭虫

Linking jQueryUI DatePicker and FullCalendar

gpeipmangpeipman 发表于 37 天, 23 小时, 18 分钟 之前
Thursday, February 11, 2010 2:04:41 AM GMT Tuesday, February 02, 2010 10:55:56 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)
类别: Web Form | 点击: 3 | 评论 | | 源: weblogs.asp.net
标签: datepicker, fullcalendar, JQuery, JQuery UI
1
臭虫

.NET Framework 4.0: Comparing LINQ and PLINQ performance

gpeipmangpeipman 发表于 39 天, 13 小时, 16 分钟 之前
Monday, February 08, 2010 4:21:15 AM GMT Sunday, January 31, 2010 8:57:49 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)
类别: Foundation | 点击: 1 | 评论 | | 源: weblogs.asp.net
标签: .Net Framework 4.0, plinq
1
臭虫

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

gpeipmangpeipman 发表于 39 天, 20 小时, 37 分钟 之前
Wednesday, February 03, 2010 3:12:43 PM GMT Sunday, January 31, 2010 1:37:03 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)
类别: Web Form | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, iis
1
臭虫

Creating configuration reader for web and cloud environments

gpeipmangpeipman 发表于 40 天, 18 小时, 52 分钟 之前
Wednesday, February 03, 2010 3:12:43 PM GMT Saturday, January 30, 2010 3:21:58 PM GMT
Creating configuration reader for web and cloud environments Currently it is not possible to make changes to web.config file that is hosted on Windows Azure. If you want to change web.config you have to deploy your application again. If you want to be able to modify configuration you must use web role settings. In this blog post I will show you how to write configuration wrapper class that detects runtime environment and reads settings based on this knowledge. (more)
类别: Foundation | 点击: 0 | 评论 | | 源: weblogs.asp.net
标签: asp.net, Azure
Previous 1 2 3 4 Next