justinbezanson

Stories submitted by justinbezanson

GridView Plugin For JQuery(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years ago

Starting out we are going to keep this pretty simple and as it progresses we’ll add more features. For now we are going to start with a hand coded HTML table and CSS. In a later post we’ll look at populating the grid from a data source. In this post today we’ll apply the CSS to the table but will expand this to a skinning system later on. We’ll also be applying the row selection feature today. read more...

add a comment |category: |Views: 353

tags: another

C# Design Patterns - The Visitor Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 1 month ago

One principle that I really like is the Open/Closed principle which says that an object should be open to new functionality but closed to structural changes. The visitor pattern helps facilitate this principle by giving us the means to perform operations against an object without changing the objects structure. Looking back at a previous pattern we wanted to adjust the registration cost for a dog if they had been picked up by the dog catcher. read more...

add a comment |category: |Views: 595

tags: another

6 Tools To Be An Effective Web Developer(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 2 months ago

There has always been and probably always will be feuds over what is the best platform but what I want to show you is that those arguments are mostly irrelevant. Regardless of what platform you choose to develop on there are most of the same tools available in one form or another. The common components, for me anyway, that help me produce high quality code faster and is easier to maintain are a good IDE, easy to use unit testing and mocking frameworks, an ORM, a MVC framework, and a good JavaScript library. read more...

1 comment |category: |Views: 999

tags: another

C# Design Patterns - The Facade Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 2 months ago

In our city dog registration application lets assume there are a few things that need to be done when a new dog is registered. First the new dog and it’s owners must be entered into the system. Next the registration fee must be processed. Finally, we want the system to send the owners the welcome email. This is a very simple example but this action requires 3 separate systems to do something in order to complete this one task of registering a new dog. read more...

1 comment |category: |Views: 675

tags: another

Assume Your Users Are Lying(devlicio.us)

submitted by justinbezansonjustinbezanson(1555) 3 years, 2 months ago

is funny how often I find this problem, one I like to categorize as: "All users lie." Gregory House is, with some variations, a perfect person to have in your domain modelling or requirements gathering sessions, he seems to have a similar categorization as me: “I don't ask why patients lie, I just assume they all do.” read more...

add a comment |category: |Views: 11

tags: another

Why You Want To Be A Craftsman Instead Of A Cowboy(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 2 months ago

I was a bit surprised at first to hear Jeff and Joel’s comments because they are some smart guys that have produced some successful software. I highly doubt, regardless of how it came across, they intended to imply that you should ignore all guidelines and just string together your code. Unfortunately, the comments of their posts make it all too clear that this is exactly the way a lot of programmers took it. What’s worse is bad programmers will use this as a defense for their resistance to improving their skills. read more...

1 comment |category: |Views: 419

tags: another

C# Design Patterns - Observer Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 3 months ago

Continuing to use our city dog registration software senario, one of the project’s requirements is that the dog’s owner’s be notified whenever a dog is processed for an infraction (i.e. picked up by the dog catcher). The Observer pattern is perfectly suited to solve this problem. read more...

add a comment |category: |Views: 697

tags: another

Developer Productivity - 5 Ways To Kill It(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 4 months ago

In keeping with the sarcastic tone of my How To Be The Worst Developer Ever post I’m going to explore several ways for managers to systematically destroy productivity among their developers. Unfortunately I am writing some of these from experience, then again, I’m sure we have all experienced some of these at one time or another. read more...

5 comments |category: |Views: 763

tags: another

C# Design Patterns - Abstract Factory Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 4 months ago

We’ll be continuing on with our fictional city council that has commissioned us to develop an application that lets them manage their yearly dog registrations. Since the application is all about managing dogs and their owners it makes sense to have a DogFactory class that will create the different breeds of dogs that will be stored in the application. read more...

add a comment |category: |Views: 651

tags: another

JavaScript And The rel Attribute(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 5 months ago

Working in JavaScript is one of my favorite things to do. I love how dynamic the language is and how powerful it can be. This programming dream is often turned into a nightmare by varying browser implementations, blatant disregard for accepted Web Standards (I’m looking at you IE), and a host of other odd things that can pop up. read more...

add a comment |category: |Views: 339

tags: another

The Controls collection cannot be modified because the control contain(west-wind.com)

submitted by justinbezansonjustinbezanson(1555) 3 years, 5 months ago

Bummer. I've been mucking around with some more custom databinding that integrates validation into the databinding process. One of the things the control does is automatically add 'notification' icons or error text to the page. The idea is this: read more...

1 comment |category: |Views: 11

tags: another

C# Design Patterns - The Decorator Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 5 months ago

Probably the most common of these patterns that I used was the Decorator Pattern. I find that I use this pattern frequently when reworking older code that I have written when I want to guarantee that my new code won’t break any existing functionality. read more...

add a comment |category: |Views: 57

tags: another

C# Design Patterns - An Overview(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 5 months ago

Over the next number of posts I am going to be exploring the world of design patterns. We’ll look at some of the most commonly used patterns and how they look in C#. read more...

2 comments |category: |Views: 777

tags: another

4 Steps To Ensure You’re The Worst Developer Ever!(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 6 months ago

There are lots of articles about improving your skills as a developer. Everyone likes to talk about how to strengthen their skills and produce really good software. But, what if you want to be the worst developer ever? Nobody seems to want to share those secrets. read more...

3 comments |category: |Views: 1254

tags: another

Bad HTML Can Crash ASP.Net?(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 6 months ago

Yes, the title is a question. I think the answer to that is yes, although I am not sure. I encountered a very strange problem yesterday and it took a while to track down. I found this problem so frustrating that for a moment (only a brief one) I questioned my adoration for ASP.Net. read more...

add a comment |category: |Views: 16

tags: another

How To Find The Position Of An Element(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 8 months ago

From time to time I need to know what the position of a particular element is. I could use trial and error until I find the correct position but this is not efficient and it breaks the second I make an adjustment to the elements or any of it’s parent elements. So how can we easily get an elements position? read more...

add a comment |category: |Views: 7

tags: another