Robert Paulson
|
Registered User
|
Thinks it's funny that most answers are found using Google
You can just call me
little bobby tables.
|
|
10h |
answered | What is a good example to show to a non-programmer to explain what programming “looks like”? |
|
10h |
comment |
What is a good example to show to a non-programmer to explain what programming “looks like”? This must have been my first introduction to programming. It has enough fundamentals for people to understand what programming is about without boring them to death. |
|
10h |
revised |
What is a good example to show to a non-programmer to explain what programming “looks like”? add links, info |
|
2d |
answered | What motivates you to achieve a deadline? |
|
Dec 17 |
answered | How can I test my webpage in different IE versions? |
|
Dec 14 |
comment |
How to better initialize nullable type from non-nullable? yuck! TryParse() was added to prevent writing this sort of code, and using TryParse is far, far better than swallowing all exceptions! |
|
Dec 13 |
comment |
What is the proper object relationship? (C#) @Jason. I agree with your comments RE copy/paste code and the tautological statement of people who do things without understanding what they do regularly leads to inefficiencies. However it still has little bearing on my answer! You have your answer, I have mine, and this ongoing dialog isn't productive in the slightest. If you want to express your ideas re autogenerated code and your issues with linq, create a new answer (or comment to @jrista instead). |
|
Dec 13 |
accepted | How to timeout a user in asp.net formsAuthentication |
|
Dec 13 |
comment |
What is the proper object relationship? (C#) @Jason, you're prematurely optimising, and while your concerns are valid, they are at this stage jumping the gun. OP was asking how to model relationships in code, which is what I answered. I attempted to answer in such a way that OP thinks about how they implement, because data access pattern is usually the driver. That said, nothing I have written, aside from showing linq query, doesn't necessarily use autogenerated code, so I don't know what that is a sore point with you. By all means OP should write unit tests for performance and optimise where necessary. |
|
Dec 7 |
comment |
Can someone copyright a SQL query? @David, That goes without saying, it's also entirely dependent where you live and work. My point was to understand the spirit of what copyright is for, and that modifying something you own is not a copyright violation. It may be a violation of the contract, or of the warranty, but what they're proposing doesn't appear to be a violation of copyright. |
|
Dec 7 |
comment |
Can someone copyright a SQL query? Wiki - history of copyright law - en.wikipedia.org/wiki/History_of_copyright_law/… |
|
Dec 7 |
comment |
Can someone copyright a SQL query? @Goran, fundamentally copyright is about the limited monopoly granted to an author of a work to control copying and distribution. |
|
Dec 4 |
answered | Can someone copyright a SQL query? |
|
Dec 1 |
answered | How to Iterate Through Array in C# Across Multiple Calls |
|
Nov 27 |
revised |
What is the proper object relationship? (C#) more info |
|
Nov 27 |
comment |
What is the proper object relationship? (C#) Yes Linq (to Sql) can have performance issues, but I wouldn't dismiss it out of hand. We use it all the time, and yes you have to be careful because, just like sql, you can write some shockingly performance poor queries. Linq itself though is fantastic. |
|
Nov 27 |
answered | What is the proper object relationship? (C#) |
|
Nov 26 |
comment |
What is the proper object relationship? (C#) Your answer makes it seem m:n relationships are hard in OO. They're not. My point RE code was that the (premature) optimisations you have attempted are tangential to the discussion at hand. OP's question was not "What are possible techniques to avoid circular references and prevent premature garbage collection". I realize SO is terrible for more than 5 lines of code, but: 1) the code quality isn't great 2) your code really detracted from your other comments and 3) what the code was doing didn't flow logically from the text you had already written. |
|
Nov 25 |
comment |
What is the proper object relationship? (C#) I would recommend looking at Patterns of Enterprise Architecture by Martin Fowler. It's a great book and cover a lot of what you're asking about. |
|
Nov 25 |
comment |
What is the proper object relationship? (C#) OO systems have no trouble implementing many-many relationships. Your answer is good up until the code. |
|
Nov 13 |
comment |
When should I use GC.SuppressFinalize()? @Eduardo, yes you can absolutely. The recommended Dispose method is protected virtual for this reason, and follows what is called the NVPI pattern (Non Virtual Public Interface). Just make sure you document how subclasses should implement IDisposable and you're set. |
|
Nov 13 |
answered | How to timeout a user in asp.net formsAuthentication |
|
Nov 13 |
comment |
How to timeout a user in asp.net formsAuthentication @chobo2, you can't have sliding and say "but only for 2 weeks max". Also, are you closing your browser? If you don't have the authentication cookie set to be persistent, the cookie itself will not be saved to disk, so you will not be logged in when you reopen your browser. See also msdn: msdn.microsoft.com/en-us/library/… |
|
Nov 11 |
comment |
Working with code held in Subversion from a remote computer If you're going to do it this way, I'd recommend using something like robocopy to ''mirror'' the directories work_pc -> portable drive -> home_pc and then home_pc -> portable drive -> work_pc. I do this all the time and haven't had any issues, but I did make some batch files to automate the process a little and reduce the chance of me mirroring in the wrong direction. |
|
Nov 10 |
comment |
Example sites with broken security certs There are heaps of programs to test website security softwareqatest.com/qatweb1.html . Maybe this question should be on serverfault instead. |
|
Nov 10 |
answered | When is the earliest I can access SESSION in the ASP.NET MVC page lifecycle? |
|
Nov 9 |
comment |
Help me to parse this input in C It's called string tokenizing, and you can find a tutorial computerprogramming.suite101.com/article.cfm/… |
|
Nov 9 |
comment |
C - Saving a Small File As a String google 'c file tutorial' first hit: cprogramming.com/tutorial/cfileio.html |
|
Nov 9 |
comment |
How to timeout a user in asp.net formsAuthentication I've updated my answer with another link to another answer about ASP.NET and sessions / authentication. Please read the referenced info, especially the links and tutorial video's. |
|
Nov 9 |
answered | How to timeout a user in asp.net formsAuthentication |
|
Nov 8 |
comment |
robust string reverse A tip for writing interview code is to make code as readable as possible. Pretend they're going to hire you not on some l33t tricks you manage to stuff in there, but on sound engineering discipline like good naming, readable formatting, and the odd comment. Interview questions are meant to show you're not a complete liar and can write code that other people can maintain. You'll never be hired because you managed to save 1 char. |
|
Nov 8 |
comment |
robust string reverse Should rename this question to be 'An implementation of a simple in-place Ascii string reversal in C'. Don't try this on a Unicode string btw. wiki.answers.com/Q/Reverse_a_string_in_C_language/… |
|
Oct 28 |
comment |
How would you compare IP address? It was anecdotal response of the KISS principle, and storing an IP address as a string was sufficient for the purpose at hand. |
|
Oct 28 |
comment |
Insert a Row Only if a Row does not Exist it looks like sql server tag was added after this answer was posted. |
|
Oct 28 |
comment |
Insert a Row Only if a Row does not Exist I assumed they were keeping track of last visited. My mistake. In any event, IP addresses aren't good for tracking unique visits - e.g. NAT and DHCP |
|
Oct 28 |
comment |
Insert a Row Only if a Row does not Exist This behavior is sometimes called an 'Upsert'. e.g. Update or Insert. |
|
Oct 9 |
revised |
Purpose of having API wrapped around interface added 3 characters in body |
|
Oct 5 |
comment |
Variable expansion with Regex .NET style I guess any time I see a strings being created/used a bunch of times I wonder if it's the best way, and my first instinct is to use a StringBuilder (hence my original comment). Each intermediate exists somewhere in memory for a period of time, and the memory use penalty increases the more often the code runs, and also increases the work the GC has to do. Also the OP did ask about using a Regex, so I went with that approach after my initial comment to you. I didn't profile anything. When it comes down to it, if it really matters, it should be profiled. Cheers. |
|
Sep 18 |
accepted | Purpose of having API wrapped around interface |
|
Sep 17 |
revised |
Purpose of having API wrapped around interface edited body |
|
Sep 17 |
answered | Purpose of having API wrapped around interface |
|
Sep 17 |
comment |
Purpose of having API wrapped around interface I don't think there's enough information in the question to reach this conclusion. How does you answer help if MainPage can't instantiate the class? If it's myAPI that's instantiating the class, then in effect, this is already a variant of IOC. |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 16 |
comment |
Purpose of having API wrapped around interface I don't think there's enough code provided in your question to give you an adequate answer. What is some of the other code in api.SomeMethod()? How is it using reflection? |
|
Sep 6 |
comment |
How do I pass a const reference in C#? A good reference for this sort of thing is Eric Lipperts blog. In particular his "References are Not Addresses" entry. blogs.msdn.com/ericlippert/archive/… |
|
Sep 5 |
comment |
C#, how to handle constant tables you could always change that constructor to make a new T[][][] and copy all the values, but as the use-case appeared to be it's set once, it didn't seem necessary. |
|
Sep 4 |
answered | C#, how to handle constant tables |
|
Sep 4 |
accepted | Variable expansion with Regex .NET style |
|
Sep 2 |
comment |
What is a Surefire way to get a string Word Count in C# @280Z28 - you bring up a good point. fyi even MS Word treats that as 1 word. |
|
Sep 2 |
accepted | What is a Surefire way to get a string Word Count in C# |
