toast

2,279
Reputation
398 views

Registered User

Name toast
Member for 1 year
Seen yesterday
Website
Location US
Age 29
Software Developer for a small consulting company.
twitter feed
2d
comment Is “Dying is Awesome” preferred?
If it's not exceptional, then it is at least expected. If it is expected, your program should be handling the situation. If the printer is not available, you shouldn't even try to print. This is something you can plan for. Throwing exceptions for things you cannot do is bad lazy. If you are writing a calculator, you should never throw a divide by zero exception. You should instead make sure hat it will never happen by checking divisors before use.
Nov
18
comment Linq Query Returns Incorrect Result Set
I responded to your comment on my answer below.
Nov
18
comment Linq Query Returns Incorrect Result Set
Not the DBML, but the actual DataContext. You should be doing Dim db as context = new MyDbContext() every time you do a new operation. If MyGetDataContextHelper() creates resuses a context between calls, it won't be grabbing the freshest table from the database.
Nov
17
revised How to rotate an object in C# 3D?
added 3 characters in body
Nov
17
answered Linq Query Returns Incorrect Result Set
Nov
11
comment Extracting two numbers from a string
Wouldn't \D*(\d+)^\D]*(\d+)^\D* be slightly more appropriate? As we explicitly don't want digits and . has the potential to match a digit before we get to \d.
Nov
6
comment Parameters with no identifiers in C#?
int isn't an object so I don't think you can send it null. You would get a compile error.
Nov
3
awarded  Good Answer
Oct
22
comment Patterns in Binary Numbers
I like this because it says so much and so little at the same time.
Oct
22
comment Checking website status in .NET
Ping isn't the best solution because it only checks to see if the machine is up or not. The status of the web server is still in question.
Oct
20
revised How can I prevent a Checkbox state switch when the user clicks on the text?
Minor capitalization issues.
Oct
20
answered How can I prevent a Checkbox state switch when the user clicks on the text?
Oct
5
revised How do I insert/delete/update in an ordered tree
Minor grammar and spelling
Oct
5
revised How long would it take me to learn Objective C programming having no prior programming experience?
added 5 characters in body; edited title
Sep
11
comment Are do-while-false loops common?
Not trying to imply anything bad about you. Just trying to illustrate why we should keep obscure coding tricks to a minimum.
Sep
11
comment Are do-while-false loops common?
It's not an infinite loop. That's part of the weird. It's a do while loop that will only execute once. He's using breaks to skip over methods he doesn't want to execute. Of course, the fact that you did miss this subtlety is good reason to not use it. If reasonably experienced developers can miss this, then what hope do less experienced ones have.
Sep
1
awarded  Yearling
Aug
5
comment Using IDisposable to unsubscribe events
Wouldn't letting go of listeners be considered cleaning up?
Aug
5
revised help with simple linq query
deleted 27 characters in body
Jul
27
revised How do I gather info about contention rate?
edited title
Jul
27
awarded  
Jul
22
comment How to Write a Windows Application?
Programming Windows is a great book.
Jul
21
revised Is it possible to reference a COM DLL in a managed project by path rather than by GUID?
Added the MSBuild tag and removed it from title
Jul
21
revised How do you remove an object from an array ?
added 4 characters in body; edited title; edited tags
Jul
21
answered How do you remove an object from an array ?
Jul
16
revised How do you do case-insensitive string replacement using regular expressions?
Changed title
Jul
15
revised XML to C# Class Question
fixed markdown
Jul
14
revised Memory consumption keeps increasing while running application.
added 57 characters in body
Jul
14
revised How to make a UITextField move up when keyboard is present
edited title
Jul
14
revised Why should default parameters be added last in C++ functions?
Minor English corrections.
Jul
14
revised How can I determine the path to the C# compiler?
Edited the title to explicitly state the problem, minor grammar fixes.
Jul
14
revised How do I manually call a UIView’s touch event on the iPhone?
Added some markdown to emphasize certain parts. Fixed some capitalization.
Jul
12
revised How do I manually call a UIView’s touch event on the iPhone?
added 3 characters in body; edited title
Jul
10
revised Changing Image SRC Based on SELECT
Added some indentation and removed most of the options to shorten it up some.
Jul
10
revised LinqtoSQL — Mapping Problem: Unable to resolve root for type
fixed markdown
Jul
10
comment Get Day of Week in SQL 2005/2008
If you have a table containing lookups for date portions, you have generally done something wrong. SQL Server's date functions are many and robust so any data you need to extract from a date can be readily done on a datetime column.
Jul
10
revised How do I get the touch location of a different view?
Reworded title to better describe problem, removed xcode tag since the problem has nothing to do with XCode
Jul
10
revised In a LotusScript Agent how do you get the name of the current server?
Edited formatting
Jul
10
revised TreeView Drag & Drop help - _Invalid FORMATETC structure_ exception
Added formatting removed <br> tags
Jul
10
revised How do I get rid of the “multiple describeType entries” warning?
Removed tag from title, shortened it a bit.
Jul
10
comment Keyboard doesn’t disappear
That's probably why everyone gets caught by the keyboard. If both acquiring and resigning were automatic or if both were manual, I don't think it would be an issue.
Jul
10
revised Unwanted Edit button in my navigation bar?
edited title
Jul
10
comment Keyboard doesn’t disappear
Classic. I think just about everyone misses this. I know I did when I first started with iPhone development.
Jul
10
comment Linq equivalent of foreach for IEnumerable
Why wouldn't DoStuff() return an item? If you have the code for Item, you can make return whatever you want. If you don't, you can create an extension method.
Jul
9
comment Is it better to call ToList() or ToArray() in LINQ queries?
@Stan: It will be stored in a List. var is syntatic sugar for whatever type is on the rhs. It's still strongly typed.
Jul
9
comment Exam Question Text Messaging
Definitely looks like a homework assignment.
Jul
8
answered GET vs. POST does it really really matter?
Jul
7
accepted LINQ to SQL: How To Extend An Entity Class With A Column Alias
Jul
7
comment LINQ to SQL: How To Extend An Entity Class With A Column Alias
To do what he wants, this is probably the easiest way to manage it. Yes, if he changes the database and has to refresh the model, he'll have to recreate his changes. But it shouldn't happen too often and the change is a minor one in any case, easily redone.
Jul
7
answered LINQ to SQL: How To Extend An Entity Class With A Column Alias