|
|
activa
activa
 |
|
Stories submitted by activa
|
|
submitted by
activa
6 days, 10 hours ago
blog.activa.be — We all love writing unit tests, don't we?. But what if you need to test code that relies on the date or some elapsed time?
Just fake the time! read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
1 month, 4 days ago
blog.activa.be — Detecting URLs in text is harder than you would expect. In fact, it can't be done with a set of hard rules, but we can get very close by using a single .NET regular expression.
Purists will protest, but what's wrong with "good enough"? read more...
|
|
tags:
RegEx | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
2 months, 9 days ago
blog.activa.be — Ever seen weird bytes in your javascript code? Having problems with javascript not working in Google Chrome?
Maybe you're the victim of BOM (byte-order marks) bytes that are saved with every javascript file you create in Visual Studio.... read more...
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 3 days ago, submitted by
activa
3 months, 5 days ago
blog.activa.be — After months of writing documentation, the first release candidate of ProMesh.NET v2.0 has been released in the wild.
ProMesh.NET is a powerful MVC framework for .NET 2.0 that has been around for a long time, but today it finally reached another important milestone.
read more...
add a comment
|
category: Open Source | Views: 271
|
|
tags:
MVC, ProMesh.NET, ASPNETMVC, OpenSource, ProMesh | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
3 months, 19 days ago
blog.activa.be — Time for an update on the state of ProMesh.NET, the open-source MVC Web Application framework I started a few years ago. The last public release was almost 7 months ago, and a lot has been changed since then. The original plan was to create a version 1.5, but I decided against that and made it in a full 2.0 release read more...
add a comment
|
category: Open Source | Views: 13
|
|
tags:
ProMesh, ProMesh.NET, OpenSource, MVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
6 months, 5 days ago
blog.activa.be — It has been almost one year since the last public release of CoolStorage.NET ("cool" open-source object mapper for .NET 2.0), but this doesn't mean the product was dead. A lot of people regularly downloaded the latest builds from CodePlex and I received a lot of great feedback, which finally lead to the release of version 1.2. read more...
add a comment
|
category: Open Source | Views: 27
|
|
tags:
ORM, OpenSource | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 7 days ago, submitted by
activa
6 months, 8 days ago
blog.activa.be — Am I the only one who believes a great programming font can boost your productivity and increase your coding joy?
Check out Damien Guard's superb new release of Envy Code R, my favorite coding font. read more...
9 comments
|
category: Other | Views: 864
|
|
tags:
IDE, Fonts | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 7 days ago, submitted by
activa
6 months, 9 days ago
blog.activa.be — Value types can sometimes cause unexpected behavior. This post explains one of the pitfalls you can encounter when using arrays and lists of value types. read more...
1 comment
|
category: C# | Views: 324
|
|
tags:
arrays, Generics, C#, pitfalls | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
6 months, 12 days ago
blog.activa.be — Generated code is great... if it was generated by you,or you fully understand the generated code!
Essentially, when you are using a code generator, you will be screwed at some point in the future. read more...
add a comment
|
category: Other | Views: 6
|
|
tags:
maintenance, Generators | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 13 days ago, submitted by
activa
6 months, 14 days ago
blog.activa.be — This is another one in the series "heck, I never thought of that"... Like most of these articles, if you already knew this trick, ignore me... read more...
2 comments
|
category: C# | Views: 507
|
|
tags:
Generics, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 13 days ago, submitted by
activa
6 months, 14 days ago
blog.activa.be — Introducing SharpTemplate.NET, a lightweight general-purpose template engine for .NET 2.0. It allows you to incorporate template parsing in your .NET applications. Perfect for code generators, reporting tools, mass-mailing applications, etc. read more...
add a comment
|
category: Open Source | Views: 296
|
|
tags:
CodePlex, OpenSource | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 23 days ago, submitted by
activa
8 months, 23 days ago
blog.activa.be — Did you know there's an alternative way of writing "if .. else if .. else if .. etc.." in C#? You probably do, but if you don't, read on... read more...
5 comments
|
category: C# | Views: 23
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 8 months, 27 days ago, submitted by
activa
8 months, 27 days ago
blog.activa.be — Using empty lines in source code may seem like a waste of precious screen space, but it's crucial to writing readable code. read more...
6 comments
|
category: Patterns | Views: 4
|
|
tags:
Style, Patterns | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
8 months, 27 days ago
blog.activa.be — How many times have you written some timing code around a method call? If the answer is never, move on, skip this article...
For timing purposes, I always use a simple "TimeRunner" class that allows you to accurately measure the time it takes to execute a specific method. A kind of "poor man's profiler". read more...
add a comment
|
category: C# | Views: 4
|
|
tags:
Profiling, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
8 months, 29 days ago
blog.activa.be — A simple example on how to use the Factory Method pattern for reading objects from XML, resulting in clean, maintainable code.
Examples are in C# 3.0 read more...
add a comment
|
category: C# | Views: 0
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
activa
9 months, 2 days ago
blog.activa.be — A little sooner than expected, I decided to publish the source code for LazyParser.NET on CodePlex.
LazyParser.NET is a lightweight C# expression parser that allows you to add late-bound expression parsing to your .NET applications. read more...
add a comment
|
category: Open Source | Views: 4
|
|
tags:
CodePlex, OpenSource | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|