dreinavarro

Stories kicked by dreinavarro

VB.net, oh how I hate thee, let me count the ways...(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 4 years, 2 months ago

A developer who is forced to work in VB.net finally hits the tipping point. Oh, and that developer is me. read more...

2 comments |category: |Views: 89

tags: another

Retaining Good Developers - 10 Things To Keep Them Happy(keepitsimpleprojects.com)

submitted by simplicityiskeysimplicityiskey(650) 4 years, 2 months ago

This is a great article. I just wish some of my previous employers would have done just a few of these things. I probably would have stuck around longer. read more...

6 comments |category: |Views: 161

tags: another

CSS and JS compression through ASP.NET handlers(blog.computerero.com)

submitted by dreinavarrodreinavarro(25) 4 years, 2 months ago

In this article, I will discuss a technique for distributing compressed website assets (CSS and javascript files) using ASP.NET. Compressing these files reduces bandwidth usage, which means decreased costs on server traffic. (Take 10,000 viewers/users and up, and the savings become significant.) read more...

1 comment |category: |Views: 132

tags: another

Douchebaggery(codinghorror.com)

submitted by jdelatorjdelator(500) 4 years, 2 months ago

To imply that programmers using Windows "don't care enough about their tools to get the best"? I have a pretty thick skin based on the psychic scars of the thousands of petty internet religious wars I've participated in, and this one even ruffles my feathers a little. I read more...

14 comments |category: |Views: 5

tags: another

LINQ Gymnastics: Creating A Predictive Query With LINQ(blog.wekeroad.com)

submitted by adminjewadminjew(1490) 4 years, 2 months ago

The Code I wrote about this before, but the best way to approach a difficult query is to cut it up into pieces. It really helps in this case, since what we’re doing is statistical and therefore may seem simple, but isn’t really. So let’s break it out: * We need to know all the Orders that our Product was part of * We need all of the Products that were part of those Orders, omitting the one we just bought * We need to roll these up by the SUM of the quantity of the products bought, and order them in descending order * We need to take the top 5 of this SUM, and query the Products table for the related Products read more...

add a comment |category: |Views: 5

tags: another