Sign in
|
Join
Jesse Ezell Blog
.NET and Other Interesting Stuff
This Blog
Home
Contact
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Tags
.NET
.NET 3.0
Actionscript
Adobe
AJAX
Apollo
Apple
Aptana
Articulate
ASP.NET
Bill Gates
C#
Captivate
Cloud Services
Dare Obasanjo
DHTML
Entity Framework
ESB
Flash
Flex
General Software Development
Google
Hack
Internet Explorer 7 Beta 3
iPhone SDK
Java
Javascript
Joel Spolsky
Linus Torvalds
Linux
Macintosh
Macromedia
Madcap
Microsoft
Microsoft Research
mobile
Moonlight
Mozilla
Multicore Processing
MySpace
MySql
Netika
Nial Kennedy
Nikhil Kothari
Notification Services
Novel
NServiceBus
On2
Open Source
OS X
Patents
PDF
Performance
PNG
Programming Languages
Proprietary Protocols
Prototype
Ray Ozzie
Red Hat
Riya
Rory Blyth
RSS
Ruby on Rails
Security
Silverlight
SOA
Social Networking
SQL 2005
SQL Server
SQL Server Reporting Services
SQLXML
Startups
Statistics
Stephen Elop
Steve Ballmer
Sun
Support
Surface Computing
SVG
SWF
Tamarin
TCO
Threading
Tim Anderson
Tim O'Reilly
Udi Dahan
Vista
Visual Studio
Visual Studio Express
VPC
Wasabi
WCF
Web 2.0
Webkit
Windows
Windows Forms
WPF
WPF/E
XPS
Zune
Navigation
Home
Blogs
Archives
October 2008 (1)
September 2008 (3)
August 2008 (1)
July 2008 (19)
April 2008 (1)
March 2008 (4)
February 2008 (5)
January 2008 (7)
December 2007 (1)
November 2007 (1)
August 2007 (4)
July 2007 (1)
June 2007 (5)
May 2007 (7)
April 2007 (10)
March 2007 (7)
November 2006 (14)
October 2006 (9)
September 2006 (9)
August 2006 (21)
July 2006 (1)
June 2006 (13)
May 2006 (15)
April 2006 (2)
March 2006 (14)
February 2006 (12)
January 2006 (6)
December 2005 (9)
November 2005 (8)
October 2005 (11)
September 2005 (4)
August 2005 (15)
May 2005 (2)
April 2005 (3)
March 2005 (8)
November 2004 (1)
October 2004 (2)
September 2004 (2)
August 2004 (6)
July 2004 (9)
June 2004 (6)
May 2004 (16)
April 2004 (32)
March 2004 (39)
February 2004 (24)
January 2004 (14)
December 2003 (25)
November 2003 (21)
October 2003 (39)
September 2003 (21)
August 2003 (11)
July 2003 (18)
June 2003 (29)
May 2003 (46)
April 2003 (97)
March 2003 (64)
Other
Articulate
iServiceOriented
Browse by Tags
All Tags
»
.NET
»
General Software Development
(
RSS
)
.NET 3.0
Anonymous Methods
Articulate
Asyncronous Programming
C#
Design
Engage
Generics
Nikhil Kothari
Script#
Threading
Udi Dahan
Vista
Visual Studio Express
Windows
WPF
Friday, July 11, 2008 4:23 PM
Events are your Friend
"Imagine trying to build a desktop application without events. How would you make a button click do what you want? One way would be to open the Button source code and add the code directly. That has approach has obvious problems, not the least of which...
Posted by
Jesse Ezell
| with
no comments
Filed under:
General Software Development
,
.NET
Thursday, January 10, 2008 7:52 PM
Designing a Generic Database Layer
Some people like to automatically generate their database tier. Personally, I had enough bad experiences with ORM tools that I try to avoid them. After all, data tier code can be knocked out pretty quickly and it's always nice to know you didn't take...
Posted by
Jesse Ezell
|
7 comment(s)
Filed under:
General Software Development
,
.NET
Thursday, October 05, 2006 9:21 AM
Udi: 3.0 is Meh
Udi thinks 3.0 isn't all that great. His response to my recent post is: "...The whole 3.0 story, I've got to tell you, I'm pretty underwhelmed. Everybody seems to be jumping up and down about WPF, and yes, it's new and shiny, but...
Posted by
Jesse Ezell
|
2 comment(s)
Filed under:
General Software Development
,
.NET
,
.NET 3.0
,
C#
,
Design
,
Udi Dahan
Thursday, October 05, 2006 3:57 AM
Screw 2.0, I'm Going Straight to 3.0
Recently the discussion came up about using .NET 2.0 in some future products. I work on server products, and we've been using 2.0 there for a while. However, there is a bit of concern around deploying the 2.0 framework with our desktop apps. Our software...
Posted by
Jesse Ezell
|
11 comment(s)
Filed under:
WPF
,
General Software Development
,
.NET
,
.NET 3.0
,
Vista
Tuesday, October 03, 2006 9:52 PM
Articulate Engage
It's official. We just shipped our first desktop product coded from the ground up on top of the .NET Framework: Engage ( http://www.articulate.com/engage.html ). Engage lets you create Flash based interactions. It's pretty slick for rapidly creating...
Posted by
Jesse Ezell
|
2 comment(s)
Filed under:
General Software Development
,
.NET
,
Articulate
,
Engage
Friday, August 18, 2006 5:27 PM
C#->Javascript Compiler
You had to know it was only a matter of time. Google has their Java->Javascript compiler and the Xamlon guys have their C#->ActionScript compiler. Soon, we will have a C#->Javascript compiler thanks to Nikhil Kothari (Script#): http://projects...
Posted by
Jesse Ezell
|
3 comment(s)
Filed under:
General Software Development
,
.NET
,
C#
,
Nikhil Kothari
,
Script#
Friday, August 11, 2006 1:18 AM
Visual Studio Express Should be Part of Windows
Jeroen van den Bos has made the case for adding VS Express to Windows. [1] Dan Fernandez responds by saying [2]: Legal: No really, this was an issue. I'm not going into details, but this is a "deal-breaker" if you will. Setup: Dropping bits...
Posted by
Jesse Ezell
|
2 comment(s)
Filed under:
General Software Development
,
.NET
,
Windows
,
Vista
,
Visual Studio Express
Saturday, August 05, 2006 3:45 AM
Asynchronous "For" Loops
With processors set to scale at the CPU level instead of the Mhz level, wouldn't it be great if you could write some code like: StringBuilder output = new StringBuilder(); foreach (MyObj o in collection) { string val; async { val = doSomethingHard...
Posted by
Jesse Ezell
|
3 comment(s)
Filed under:
General Software Development
,
.NET
,
C#
,
Asyncronous Programming
,
Threading
,
Generics
,
Anonymous Methods
More Posts