vertigo

Stories kicked by friends of vertigo

Displaying Relative Time (C#)(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 2 years, 3 months ago

When developing software that works with time stamped information, it is common to show the date and time at which an item was created or last updated. A user-friendly alternative is to display a relative time, such as "Two Hours Ago". read more...

add a comment |category: |Views: 36

tags: another

Reduce Chain and Extract Projection Refactorings(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 years, 3 months ago

One of the principles I introduce in my new talk is Strive for Functional Cohesion. My original article on the subject focuses on determining where the functionality belongs, then adding it to it’s appropriate place. In that scenario, I had complete access to the code. Sometimes, however, you don’t have access to the code to make the change, or the implementation belongs to an interface. read more...

add a comment |category: |Views: 5

tags: another

Mapping Many to Many relationships using Fluent NHibernate(www.mattlong.com.au)

submitted by mattdlongmattdlong(90) 2 years, 3 months ago

In my previous posts I went over the basics of mapping objects to traditional relational database tables and mapping relationships using Fluent NHibernate. One relationship I neglected to discuss in the previous post was a Many to Many relationship and how it is mapped using Fluent NHibernate, that is going to be the topic of today’s post. read more...

2 comments |category: |Views: 759

tags: another

Write C# instead of JavaScript - gain the productivity of C# dev. (sharpkit.net)

submitted by alexgrossalexgross(258) 2 years, 4 months ago

SharpKit is a Web Toolkit that enables you to write C# and convert it to JavaScript during compilation. Writing and maintaining JavaScript code can be very expensive. Migrating from JavaScript to C# enables you to: *Leverage Visual Studio C# productivity *Maximize cross-browser compatibility *Streamline client-side code review read more...

12 comments |category: |Views: 709

tags: another

Is ALL code important?(vukoje.net)

submitted by vukojevukoje(50) 2 years, 5 months ago

Is all code important? Should really all code follow best coding practices and coding standard? read more...

add a comment |category: |Views: 16

tags: another

5 Very Useful C# Attributes(hatim.indexdev.net)

submitted by HatimrHatimr(1492) 2 years, 5 months ago

A look at some of the useful attributes in c# read more...

6 comments |category: |Views: 1620

tags: another

Any() versus Count()(kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 years, 5 months ago

Jimmy Bogard brought to my attention today that I had been doing something wrong all along. I’ve been using Count() on my enumerations when I should have been using Any(). I’ve even done this in a presentation I’ve been giving the past few months. This is from Mash Up. read more...

2 comments |category: |Views: 692

tags: another

Dependency Injection For Dummies(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 6 months ago

The goal of this series is to introduce programming patterns and practices to developers who have little to no familiarity with them. This series does not intend to dive into the intricacies of each pattern / practice, but to give a brief overview that will (hopefully) inspire developers to learn more about them. read more...

add a comment |category: |Views: 617

tags: another

CSS transparency in all the browsers(subodhpatel.co.cc)

submitted by subodhpatelsubodhpatel(120) 2 years, 6 months ago

There are many cross-browser issues and transparency is one of the wierd issues among them.All the browsers treat transparency in a different way. Here is the possible solution for the IE6 PNG background image transparency fix. read more...

add a comment |category: |Views: 388

tags: another

UML Class Diagrams(dotnet2008interviewquestions.blogspot.com)

submitted by amitmittal77amitmittal77(20) 2 years, 7 months ago

UML Class Diagrams in details read more...

add a comment |category: |Views: 37

tags: another

Principles, Patterns, and Practices of Mediocre Programming(stevesmithblog.com)

submitted by ssmithssmith(1160) 2 years, 7 months ago

A list of anti-patterns, principles, and practices of software development. read more...

add a comment |category: |Views: 38

tags: another

Do we need to know basic math as programmers?(blogs.lessthandot.com)

submitted by SQL_MenaceSQL_Menace(4890) 2 years, 7 months ago

How much math does a programmer need to know to do his job? These days with all the frameworks that exists you don't need to know how to do a square root, a power function or a quick sort these will likely already be built in read more...

add a comment |category: |Views: 16

tags: another

C# Identify Crisis, You Have To Know Your Identity(devcomponents.com)

submitted by devexpertdevexpert(260) 2 years, 8 months ago

Marking the beginning of the end of C# as language and its ongoing identity crisis. read more...

6 comments |category: |Views: 855

tags: another

What's new in NHibernate 2.1(zvolkov.com)

submitted by brijeshsnmbrijeshsnm(126) 2 years, 10 months ago

NHibernate 2.1 features read more...

add a comment |category: |Views: 629

tags: another

Code Contract framework(tr3v.net)

submitted by Tr3vTr3v(376) 2 years, 11 months ago

When we write code we often have to validate the parameters passed into our methods to make sure that they are appropriate, this usually leaves us with repettitive and ugly code at the start of each method. How nice would it be if we could replace that with a more readable & more concice structure so that we can simply write: Require.That(fileInfo, IsNot.Null, Is.ExistingFileSystemObject) read more...

add a comment |category: |Views: 21

tags: another

LINQ to SQL is NOT dead!(jonkruger.com)

submitted by david_hollanddavid_holland(605) 2 years, 11 months ago

Ever since Microsoft announced that the Entity Framework was their ORM of choice, people everywhere have been saying, “LINQ to SQL is dead!” A lot of people feel like they’re not allowed to use LINQ to SQL anymore and that they have to use Entity Framework instead. In fact, LINQ to SQL is not only alive and well, Microsoft has even announced LINQ to SQL improvements in .NET 4.0, including finally adding using ITable<T> for tables instead of Table<T>, which makes it much easier to test. Combine that with this open source tool that will create an IDataContext interface for you and you’re on your way to testable LINQ to SQL. So no, LINQ to SQL is not dead!! read more...

2 comments |category: |Views: 501

tags: another