daruku

Stories kicked by daruku

A better, easier way to make sure you've globalized everything(milkcarton.com)

submitted by akcoderakcoder(830) 3 years, 3 months ago

A better, easier way to make sure you've globalized everything in your application read more...

add a comment |category: |Views: 474

tags: another

Re-index your database(milkcarton.com)

submitted by darukudaruku(240) 3 years, 3 months ago

FTA: "As our production database gets more and more data in it, we noticed that things were slowing down. I ran SQL Profiler trying to figure out if we needed to ad more indexes, better arrange the data, or anything we could do to improve the performance. After about an hour of running queries, creating indexes, profiling, and looking at execution plans; I had gotten barely anything for performance gains." read more...

add a comment |category: |Views: 405

tags: another

Live Framework Triggers(orand.blogspot.com)

submitted by darukudaruku(240) 3 years, 4 months ago

"The Live Framework has the ability to add triggers to resources. There is some documentation on triggers here and here (pgs. 14-15), but after reading it I was left with more questions than answers. So I took a deep dive exploring the nooks and crannies of triggers and this blog post is the result." read more...

2 comments |category: |Views: 136

tags: another

How to get remote debugging to work successfully(milkcarton.com)

submitted by darukudaruku(240) 3 years, 4 months ago

FTA:"After much time, trial and error, I was finally able to get Visual Studio's remote debugging features to work. In my travels around the Internet, no one seems to have compiled all the steps to make the process work successfully and seemlessly into one page, this is my attempt." read more...

3 comments |category: |Views: 284

tags: another

Fluent LiveFX Resource Scripts(orand.blogspot.com)

submitted by gemilsgemils(25) 3 years, 5 months ago

Oran Dennison posts some of his latest work with creating a helper library for Live Framework Resource Scripts. His focus this time is on keeping your scripts strongly typed and enabling a more concise fluent interface syntax. The enhancements he has made let Intellisense help you out quite a bit more, resulting in greater discoverability and productivity. read more...

add a comment |category: |Views: 9

tags: another

LINQ to NHibernate in LINQPad(orand.blogspot.com)

submitted by akcoderakcoder(830) 4 years, 1 month ago

LINQPad is like Query Analyzer for LINQ queries. Out of the box it does LINQ to SQL, LINQ to Objects, and LINQ to XML. Wouldn't it be nice if it did LINQ to NHibernate as well? Here's how. The setup process is a bit tedious, but you only need to do it once. read more...

add a comment |category: |Views: 288

tags: another

Why Silverlight 2 Deep Zoom Really is Something New(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 4 years, 2 months ago

"The reactions to [Deep Zoom] have fallen into two groups. Some folks say it's incredible, and some say they were impressed when they saw it in 2005, was called Google Maps (and zoomed all the way from outer space to their house). The unimpressed folks point out that there are other Flash applications that handle this, too, like Zoomify and Zoomarama. Haven't we seen this before?" read more...

add a comment |category: |Views: 8

tags: another

Rhino Mocks Quick Reference(orand.blogspot.com)

submitted by orandorand(295) 4 years, 5 months ago

Concise examples of all the main features of the Rhino Mocks mock object framework read more...

2 comments |category: |Views: 950

tags: another

De-crapify your code base with AOP using PostSharp(milkcarton.com)

submitted by akcoderakcoder(830) 4 years, 6 months ago

How to remove all the code thats irrelevant to what your trying to do, to make your code base easier to grok. read more...

add a comment |category: |Views: 27

tags: another

ASP.NET Resource Refactoring(milkcarton.com)

submitted by akcoderakcoder(830) 4 years, 8 months ago

Easy macros to help i18n your ASPX pages read more...

add a comment |category: |Views: 8

tags: another

Using Visual Studio Macros to Increase Productivity(milkcarton.com)

submitted by akcoderakcoder(830) 5 years ago

If you've ever tried to find a particular file or project in a 36 project solution when many projects and folders are expanded, then you know how fustrating it can be. After putting up with it for over a year, I finally asked a co-worker of mine if he knew of a way to quickly jump to a particular project in Visual Studio. He reminded me that Visual Studio has excellent macro support. read more...

2 comments |category: |Views: 16

tags: another

.NET Managed Library for the Nintendo Wiimote(brianpeek.com)

submitted by peekbpeekb(160) 5 years, 2 months ago

Use the Nintendo Wiimote from your .NET applications! Full source code in C# and VB. read more...

3 comments |category: |Views: 81

tags: another

Using Custom Attributes to Enable Quick Searching of Your Domain Entit(milkcarton.com)

submitted by akcoderakcoder(830) 5 years, 4 months ago

I've started work on the search piece of our application. Searching (no pun intended) for some inspiration on how users might want to search within our application, I brought up the current WinForms version, and then the ASP.NET version. I realized that we need to make searching easier in WinForms client, currently when searching for a patient in our WinForms client, you are presented with a separate text box for first name, last name, SSN, date of birth, and health record number. Our ASP.NET client presents just one text box to search all of those fields. read more...

add a comment |category: |Views: 8

tags: another

NHibernate, DateTime and UTC(milkcarton.com)

submitted by akcoderakcoder(830) 5 years, 4 months ago

We are in the midst of doing a total rewrite of our Software, and one of the things that has come up is date and time. How do we do it, how do we store it, and how do we ensure that we can compare DateTime from one timezone to DateTime in another timezone. After a lot of research, we settled on using UTC (or UCT depending on your preference). FxCop will take care of ensuring we use UTC (for the most part), or so we thought... read more...

4 comments |category: |Views: 178

tags: another

CompositeUserTypes in NHibernate(milkcarton.com)

submitted by akcoderakcoder(830) 5 years, 4 months ago

Often times when you’re developing an application, there is a one-to-one mapping between your domain model (object model) and your database schema. Doing it this way often times makes it easier to wrap your head around everything going on in your app. But this isn’t always the right way to do things. read more...

add a comment |category: |Views: 37

tags: another

Generic NHibernate Enum String Mapping(orand.blogspot.com)

submitted by akcoderakcoder(830) 5 years, 5 months ago

Today one of my coworkers mentioned all the little NHibernate enum mapping turd classes that were accumulating in our data access layer. See this post for more details on how it works and why you would want to do this. I wondered aloud if generics could be used to eliminate this waste of disk space. A few minutes later, this is what we came up with. read more...

add a comment |category: |Views: 561

tags: another