joseph.ferris
|
Registered User
|
I am recently unemployed and looking for a new position in the New York metro area. If you, or someone you know, is looking for a .NET Architect / Lead, please drop me a line or pull a copy of my resume from http://snaploop.com/joseph-ferris-resume.docx
|
|
Nov 23 |
comment |
Table Naming Dilemma: Singular vs. Plural Names What's up with the downvotes? Comments would be nice. Downvotes without discussion implies that the downvoters are actually downvoting a subjective answer to a subjective topic just based on the fact that he/she disagrees. |
|
Nov 23 |
answered | Ever had to “dumb down” for a job? |
|
Nov 20 |
comment |
What is your best programmer joke? No it is not. Baggins is his name. |
|
Nov 20 |
comment |
kannel’s ‘failed’ on status page This should be on serverfault.com. You probably aren't going to have the right target audience on here for your question. Marked to move. |
|
Nov 19 |
accepted | How often should applications be stress or load tested? |
|
Nov 17 |
comment |
How to find how many people are online in a website +1 That sounds like a very sound approach. Using the SQL Server for backing storage is required for web farm implementations (unless you use something like Velocity for a Session store). Bookmarked for future experimentation. Thanks! |
|
Nov 12 |
answered | What is the thing that irritates you while doing maintenance coding? |
|
Nov 10 |
awarded | ● Good Answer |
|
Nov 9 |
comment |
What should I load into memory when my app loads? +1. Being stuck maintaining an application that loads everything up-front, I could not agree more. There is no reason to have to add time after compilation before you can actually begin execution. It makes those "quick fixes" anything but quick. |
|
Nov 9 |
comment |
Is there a good argument for software patents? Correct. It was Unisys patenting the LZW algorithm, which is used as the data compression algorithm in GIF formatted images, that spurred the creation of PNG. More information about the algorithm: en.wikipedia.org/wiki/… |
|
Nov 9 |
comment |
Reduce Duplicated Code in Controller Actions @Robert - Generally, I agree. I am more for the general idea of the article, as opposed to the implementation. Good example of what a BaseController might do, though. |
|
Nov 9 |
comment |
Reduce Duplicated Code in Controller Actions Looking again - this does not directly address your needs, but I still think it could be adapted to what you are trying to do. |
|
Nov 9 |
answered | Reduce Duplicated Code in Controller Actions |
|
Nov 6 |
revised |
Which programming languages have helped you to understand programming better? Gr |
|
Nov 6 |
answered | Which programming languages have helped you to understand programming better? |
|
Nov 6 |
revised |
Should one interface inherit another interface. Retagging |
|
Nov 6 |
comment |
How can I calculate how many nights are there in a date range? Are you accounting for late arrivals, too? What if a person check's in after midnight? A late arrival that has a one day stay would still be leaving the same morning, but technically still stayed a "night". |
|
Nov 6 |
comment |
Sending E-mail using C# The NetworkCredential class is overloaded. If you provide an empty constructor, it will create the instance with the current user. Alternatively, you could also encrypt the username and password and store it externally. It also depends on how you set up your mail server. You can set up an SMTP server on the localhost and allow it to be a relay for the loopback address, so that you can send email without credentials. We do the latter. It is lightweight, simple, and requires no storing of passwords (since anyone can relay from the loopback address - meaning IIS can, as well). |
|
Nov 1 |
accepted | Lucene Index and Query Design Question - Searching People |
|
Nov 1 |
comment |
How to search for text fragments in a database If the OP is in an MS shop, I would recommend Lucene.Net. As of October 20th, it has passed its graduation vote to be be an official subproject of Apache. We are implementing Lucene.Net currently, and it has been a completely pleasant experience. You have such control over both searching and indexing that you can really squeeze performance out of it. |
|
Nov 1 |
comment |
Free HTML editor for Windows VS start time can always be improved by simply turning off the Start Page. On my laptop with Windows 7, VS 2008 is up and running in about fifteen seconds. VS 2010 is up in about ten seconds. Considering the featureset, that is more than reasonable on any semi-modern piece of hardware. |
|
Oct 30 |
accepted | Which Microsoft certification Path |
|
Oct 29 |
comment |
How to train new programmer without giving full source code access? Depends on the situation. For the one it is applied for it is perfectly reasonable. Front-end designers stay out of back-end code and back-end developers don't pretend to be designers. It is a trade off that both sides end up liking. As for the OP situation, many places are going to limit exposure for new hires and gradually broaden. It isn't as much a trust issue as an exposure issue. |
|
Oct 29 |
comment |
How to train new programmer without giving full source code access? I don't think it is as much seeing it as it is modifying it, from what the OP is describing. |
|
Oct 29 |
answered | How to train new programmer without giving full source code access? |
|
Oct 29 |
comment |
Automatically Create UML diagrams from Visual Studio 2008 They officially changed the name since Beta 1, but it is the same concept. It is now "Architecture Explorer", I believe. The overbranding with 2010 is my only problem with it, so far. ;-) |
|
Oct 29 |
comment |
Why no love for SQL? Downvoter - care to explain why or just clicking the down button for everything you don't agree with? |
|
Oct 29 |
comment |
asp.net publish with whitespace removed It might not significantly improve performance, but it can improve bandwidth consumption and cost. For those who have bandwidth caps and a fair amount of traffic, the savings add up quickly. |
|
Oct 29 |
comment |
What’s your most controversial programming opinion? Wow... I don't know where you people are working (and no, not that "you people"). The last few places that I have worked are diversified and definitely not a privileged position. Maybe if you are a COBOL programmer from the 60s... |
|
Oct 29 |
comment |
What’s your most controversial programming opinion? Premature optimization does indeed exist and is very much a problem. With very few exceptions, your goal is to satisfy a function as per business requirements. Make it work, make it right, then make it faster. Optimizing without understanding the whole application profile is like throwing money out of a window. Let me know where you work, because I'll be downstairs with a net to catch some of it. ;-) |
|
Oct 29 |
comment |
What’s your most controversial programming opinion? Code will only explain the "how" something is done and not the "why". It is really important to distinguish between the two. Decisions sometimes have to be made and the reason for that decision needs to live on. I find that it is important to find a middle ground. The "no comments" crowd are just as much cultists as "comment everything" crowd. |
|
Oct 29 |
comment |
What’s your most controversial programming opinion? I think that language is secondary - either you have the aptitude to be a developer or you do not. Those that do can transition between languages have this skill and a lot of people who pigeonhole themselves (by choice) are on the shorter side of the aptitude equation. A good programmer will get the job done; a great programmer will adapt and apply language / framework specific paradigms to reach a solution and look to how the equivalent can be executed on the next toolset. |
|
Oct 29 |
comment |
What’s your most controversial programming opinion? Finding the answer efficiently is just as important as being able to apply it. I would always prefer my developers to Google something that they don't know, find out what and why, and learn how to apply it. Used correctly, it isn't just a search application, it is a learning tool. If people mindlessly look something up and copy and paste code snippets without understanding what they do, it is more likely a problem with the developer than the tool. |
|
Oct 29 |
comment |
What’s your most controversial programming opinion? One of the best uses of XML hasn't been mentioned - object serialization/deserialization. Sending stateful objects from one point to another has tremendous traction in distributed caching. In fact, whenever you need a disk-based storage of a hierarchy, I think XML is appropriate - and that includes configuration files. |
|
Oct 29 |
comment |
What to replace FrontPage with? I was going to recommend the same thing. Microsoft has done a really good job at under-advertising the Expression family of tools. |
|
Oct 29 |
answered | Which Microsoft certification Path |
|
Oct 29 |
comment |
C# or Python for my app Interop isn't that bad - at least not after doing any sort of Office development in a pre-.NET world. ;-) However, there is a nice wrapper up on Codeplex that I have used that has a much cleaner API: msofficefornet.codeplex.com |
|
Oct 29 |
answered | Automatically Create UML diagrams from Visual Studio 2008 |
|
Oct 29 |
comment |
Design Aggregate Root Properly Not a problem. Glad I could help. DDD is still relatively new to us, as well. We have been working with it for about six months and just deployed our first "real" project using these practices. You will find that understanding how to build the domain is going to be a trial and error process. Don't be afraid to refactor if you need to. We definitely had changes of heart about aggregate boundaries and value object vs. entity decisions throughout the release, and refactoring helped us to adjust our gameplan on the fly. |
|
Oct 29 |
accepted | Design Aggregate Root Properly |
|
Oct 29 |
comment |
Why no love for SQL? Very diplomatic! (And true, to boot!) |
|
Oct 29 |
answered | Why no love for SQL? |
|
Oct 29 |
comment |
Design Aggregate Root Properly ...the Zone's identifier. If you are fine with making changes to a Zone through a Store and that shared Zone's changes would impact other Stores, you can leave the Zone as an entity within the Store aggregate. |
|
Oct 29 |
comment |
Design Aggregate Root Properly My assumption about Zones would be because they seemingly need to exist within a Store. Although, a Zone could easily be independent of them in the way that you implement it. For example, if you have want to access Zones independently, your domain service for Stores could have a method like GetStoresByZone(), where you would return Stores for a Zone. Conversely, your domain service for Zones could have a method like GetZonesByStore() where only the relevant stores are returned. What would make Zone an aggregate would be if the only way to work with a Zone needs to be be through... |
|
Oct 29 |
comment |
Interfaces separated from the class implementation in separate projects? I'm glad we don't have that rule where I work now, too. ;-) |
|
Oct 28 |
answered | Design Aggregate Root Properly |
|
Oct 28 |
answered | Interfaces separated from the class implementation in separate projects? |
|
Oct 26 |
answered | Best Practice: Should functions return null or an empty object? |
|
Oct 26 |
answered | Is a “404 redirect” a legitimate redirect? |
|
Oct 26 |
revised |
How often should applications be stress or load tested? Clarification and grammar. |
