Andrew Siemer

5,144
Reputation
537 views

Registered User

Name Andrew Siemer
Member for 8 months
Seen 2 days ago
Website
Location los angeles, ca
Age 33
I am an architect/engineer for OTX Research, author of ASP.NET 3.5 Social Networking, father of 6, and a big friendly guy. I love to ride horses, play with my kids, learn new stuff, teach new stuff, and have fun with life.

Books: Sites:
Nov
18
answered Getting rid of Microsoft AJAX
Nov
18
revised Getting rid of Microsoft AJAX
deleted 1 characters in body
Nov
17
awarded  Nice Question
Nov
17
accepted What design pattern do you use the most?
Nov
11
comment I’m starting an opensource project. Any advice?
Perforce has all the benefits of TFS...without the cost (though it does have some cost). The concept that code can move from one branch to the other without losing information about a given file along its migration is very powerful! VSS, SVN, Vault, etc - just can't compare. Again, this was only if it was not to be publicly editable!
Nov
11
answered I’m starting an opensource project. Any advice?
Nov
11
answered nhibernate session for different database servers with same entity
Nov
10
comment Database design - exposing Primary Key
+1 I couldn't agree more!
Nov
10
answered Database design - exposing Primary Key
Nov
9
answered Choose Enter Rather than Pressing Ok button
Nov
8
accepted Web Site Design Allowing XML Upload with Supporting XSD
Nov
5
answered Web Site Design Allowing XML Upload with Supporting XSD
Nov
3
comment Linq to nhibernate - Having where clause problems
That is a great bit of information!
Nov
3
comment Who are some well known African-American Software Engineers
If someone mentions a notable black software engineer I would be happy to interview them on DotNetRadio.com!
Nov
3
answered Design Pattern - ASP.net
Nov
2
answered How to code via mental-models, in the absence of a keyboard.
Nov
2
answered MVC, UpdateModel OR delete depending on form field value?
Oct
30
awarded  Taxonomist
Oct
29
comment ASP.Net MVC 1.0 Web Hosting
Isn't ASP.NET MVC framework dependent on 3.5? Technically you can ship the DLLs to the bin to see if what they have will work with what you have as the MVC is built on standard webforms framework. It will work or it won't...but I think it won't work!
Oct
29
revised What design pattern do you use the most?
Seperated DRY from SOLID and posted YAGNI
Oct
29
accepted MVC Pattern: What other Pattern to use with it?
Oct
29
comment What design pattern do you use the most?
Then most likely someone that does pay attention to the names of well defined patterns and where they fit in and how they are used will be called in behind you to clean up! No offense...but this attitude of "I don't need no stinking patterns" is what gives software engineering as a profession a bad name. No one says you have to use them all the time...but at least be aware of where they should be used.
Oct
28
comment Planning web applications
Also, if you are doing starts up you should subscribe to the podcast "this week in startups". Lots of great free information. They talk about concepts such as Free, ABC (not always be closing but always be cheap!), etc. It will all apply to your issues! thisweekinstartups.com
Oct
28
answered Planning web applications
Oct
28
answered How can I start designing my program on paper without over engineering things?
Oct
28
answered What design pattern do you use the most?
Oct
28
comment Auto generating DAL in an ASP.NET application
As I stated...wait for official release! LINQ to SQL or LINQ to NHibernate...Fluent NHibernate..etc.
Oct
28
comment What design pattern do you use the most?
TOO FUNNY. I hadn't heard of that one...perhaps for good reason. But so true.
Oct
28
answered MVC Pattern: What other Pattern to use with it?
Oct
28
comment Auto generating DAL in an ASP.NET application
The statement that it is dead was correct about 6 months ago. However the team that is working on EF is also working on L2S and L2S will have many new features added to it in the .NET 4.0 release.
Oct
28
answered Auto generating DAL in an ASP.NET application
Oct
26
answered Tough Client Management Situation
Oct
12
answered Are there useful static analysis tools for databases?
Oct
12
answered LINQ to SQL Cannot create database [Schema Permissions]
Oct
12
answered How do sites like LinkedIn efficiently display 1st/2nd/3rd-level relationship next to each person’s name?
Oct
8
answered Asp.net MVC database connection setting in Visual studio 2008
Oct
8
answered Should I delete files using window manager or in version control - svn
Oct
8
revised Verify database changes (version-control)
added 2755 characters in body
Oct
8
answered sql server - full-text search
Oct
8
answered c#, ASP, HyperLink
Oct
7
answered Verify database changes (version-control)
Oct
4
accepted model classes in a database with my own enum types
Oct
4
answered model classes in a database with my own enum types
Sep
30
answered How many Programming Books do you read each year?
Sep
30
asked Does an abstract class work with StructureMap like an interface does?
Sep
29
comment Implementing conditional in a fluent interface
Did you ever get this implementation fully working? Oddly enough there is not really all that much out there on this topic! Can you post your working solution to this problem or send it to me directly? Thanks!
Sep
29
answered URLRewriting challange
Sep
24
comment msbuild release - must have features
:P Thank you for the compliment!
Sep
24
comment Great programming quotes
You will have to look here to understand: en.wikipedia.org/wiki/… This is super old school (1991 :P) so if you have never heard it before...you might not be that old!
Sep
21
comment how to show progress bar when email is send
Regardless of internet speed the user that is sending the email should not have to sit around while the server processes the request when the processing can simply be moved offline. In the case that the user has a slow connection and a slow server this is even more cause to move the processing of such tasks offline and out of process! This would greatly improve the user experience!