Mike Spross
|
Registered User
|
Software developer for a small software shop and lead maintenance programmer/bug-hunter for a fairly large legacy VB6 application with some .NET (VB.NET with a dash of C#) mixed in. I've also worked in Java, C/C++, ASP.NET, PHP, and JavaScript, and have started playing around with Python and Ruby.
|
|
Dec 1 |
comment |
Why are professors or schools picking Java over C++ to teach to students? @Breton: I'm pretty sure it doesn't. stackoverflow.com/questions/105834/… seems to confirm this. |
|
Nov 30 |
comment |
Why are professors or schools picking Java over C++ to teach to students? @Amir, d03boy: Many imperative languages such as Java aren't optimized to handle recursion well, and provide other means to the same end (i.e. loops), whereas many functional languages, such as Haskell, are designed in a way that encourages and sometimes even requires you to use recursion (i.e. there is no such thing as a loop in Haskell, you must use recursion to iterate). Languages that are designed to support recursion well optimize it heavily to avoid performance problems and excessive memory use. |
|
Nov 24 |
comment |
Creative way to display tables with 35 columns +1 Was about to post the same answer :) |
|
Nov 23 |
awarded | ● Nice Answer |
|
Nov 22 |
accepted | Java Exceptions, What to catch and what not to? |
|
Nov 22 |
revised |
Java Exceptions, What to catch and what not to? added 168 characters in body |
|
Nov 22 |
answered | Java Exceptions, What to catch and what not to? |
|
Nov 21 |
comment |
What are some bad programming habits to look out for and avoid? Also, I have the same problem mentioned in the answer... |
|
Nov 21 |
comment |
What are some bad programming habits to look out for and avoid? Is there a term for yak shaving that involves reading about yak shaving? Hmmm, I was going to do something else, but now I need to figure this out. But first I need to check Wikipedia to find out what a yak is. Is it like a cow? Speaking of cows, I can't remember the last time I had a nice steak. Steak...stakes? Stakes...vampires! Which reminds me, what is up with all this Twilight/New Moon hype? And why do werewolves always have to get involved? Were they always the mortal enemies of vampires or is that just Hollywood? But seriously guys: Does anyone have a razor I could borrow? |
|
Nov 19 |
comment |
VB6 Type Mismatch in For loop condition @Timbuck. Array is not a valid identifier in VB6, because it conflicts with the built-in Array function. |
|
Nov 19 |
comment |
Go examples and idioms Ah, ignore my last comment. I understand why I'm confused now. I was assuming you would put all the defer statements at the top of the function (sort of like preconditions), which would make the LIFO order kind of weird to deal with. But you are putting a defer statement right after a resource acquisition, then the LIFO order makes perfect sense. So my example would be more like OpenDatabase(); defer CloseDatabase(); OpenTable(); defer CloseTable(); DoStuffWithTable();. Then the table is closed first, followed by the closing of the database. That makes way more sense to me now. |
|
Nov 18 |
comment |
Go examples and idioms @kaizer: I guess it depends how you read the defer statements in your head :). Since it's in LIFO order, you have to read it "backwards" to see how it's releasing things (defer CloseDatabase; defer CloseTable means "Close the database AFTER you close the table"). If I didn't know any better, I would have written it as defer CloseTable; defer CloseDatabase because my first instinct would be to read it as "Close the table first, THEN close the database."). But backwards to me is correct to someone else ;) |
|
Nov 15 |
comment |
Go examples and idioms Clever, although it would make more sense to me if defer statements where executed in FIFO order (top to bottom), but maybe that's just me... |
|
Nov 15 |
comment |
Go examples and idioms @Konrad, beat me to it! :) I've used that idiom in VB6 code before and it definitely can help readability in certain situations. |
|
Nov 12 |
revised |
Does Visual Source Safe really lack renaming functionality? fixed a typo |
|
Nov 12 |
revised |
Buildprocess for ActiveX / COM / VB6 enterprise projects added another reason to use Binary Compatibility when possible; added 2 characters in body |
|
Nov 10 |
comment |
How to determine the connected database type in VB6? @AngryHacker: I think it depends at what level of abstraction database-specific details come into play. For example, an ORM typically keeps all database-specific code separate so that SQL Server code doesn't mix with Oracle code for example. You still need implementation-specific code for each database, but you've added another layer on top of it (the object persistence layer) that stays the same even when the underlying database changes, so you are never mixing code for different databases together - each database-specific data access layer is in a self-contained library. |
|
Nov 8 |
comment |
Why is it bad practice to call an eventhandler from code? Of course, you can choose to mark your event handlers as Public, but that would go against best practice. The IDE marks the methods as Private to maintain consistency with the COM programming model: i.e. since they are implementing an interface, they should be private within the class itself, since they are not part of the class's own interface, but rather implementations of an interface that is implemented by the class. |
|
Nov 8 |
comment |
Why is it bad practice to call an eventhandler from code? @jpinto3912: Events are public, but handlers are private. Events are actually methods on a (hidden, but public) event sink interface. The (private) event handler methods are implementations of methods on the (public) event sink interface. Similar to how implementing an interface with the Implements keyword creates Private methods for the implementation by default, except that events and event handlers are treated specially (i.e. you don't have to implement handlers for all the events exposed by a class, the compiler inserts empty event handlers at compile-time). |
|
Nov 7 |
comment |
VB6: Runtime Error ‘13’: Type Mismatch when setting and int with an int Introducing Msgbox: Error-handling the EASY way! After all, Err.Raise and error handlers are just...too complicated. You need your errors now and need them to be in your face!! BAM! It's vbCritical that you adopt this new error-handling "best practice" today!! (Note : Actual results may vary. Use of MsgBox as an error-handling strategy may actually lead to increased debugging time, more frustration, higher cholesterol, and hair loss. In rare caes, blindness caused from gouging of eyes with eating utensils such as spoons may also occur). |
|
Nov 6 |
comment |
InfoPath Form Registration and Case-Sensitive File Path Strangeness: What’s going on here? I didn't know about the form cache (we don't do InfoPath development on a regular basis here - it's pretty much this one form). That's sounds pretty plausible actually, since we were updating this customer with a newer version of the form, and from my understanding of things, the previous version had worked fine. When I get a chance, I'll connect to the customer again and try out your suggestions. I've been at a complete loss with this issue. I'll +1 you just for the effort at this point ;) Thanks! |
|
Nov 3 |
revised |
Implementation of ISupportErrorInfo - what does it mean? fixed a typo and was a bit more explicit in the summary |
|
Nov 3 |
comment |
Should null == null be true when comparing objects? I think you mean True, False, or FileNotFound ;) |
|
Nov 2 |
awarded | ● Tumbleweed |
|
Oct 30 |
comment |
Best Practice: Should functions return null or an empty object? @Tobias: "It should not return null on one error and throw an exception on another error." I think it can make sense to return null or throw an exception. If null is documented to mean "no matching user found in the database", then null is an expected return value for this particular function, although it could still be an application-level error. On the other hand, if the database server is down, I wouldn't want the function to return null. I would want to get an exception. |
|
Oct 26 |
revised |
InfoPath Form Registration and Case-Sensitive File Path Strangeness: What’s going on here? edited tags |
|
Oct 26 |
revised |
InfoPath Form Registration and Case-Sensitive File Path Strangeness: What’s going on here? fixed a typo |
|
Oct 26 |
asked | InfoPath Form Registration and Case-Sensitive File Path Strangeness: What’s going on here? |
|
Oct 22 |
revised |
Sharepoint workflow vs Windows workflow formatting; added 3 characters in body |
|
Oct 20 |
comment |
Alternate use of the Array() function in VBA? @Kevin: The Split function already returns an array, so Array(Split(str, ",")) creates an single-element array containing an array. |
|
Oct 20 |
comment |
How many Beans should be enough ? Here's a direct link to the "Object Calisthenics" essay mentioned: xpteam.com/jeff/writings/… |
|
Oct 20 |
comment |
How many Beans should be enough ? "its very likely to have the number of beans in request scope lower than the number of beans in session scope" - did you mean to say this the other way around? |
|
Oct 14 |
comment |
Making a C# kill event for a vb6 app? +1. This is by far the easiest way to get multi-threading for free in VB6 and works well, plus it doesn't risk destabilizing your program or IDE the way that trying to do Win32 threads directly from VB6 code can. |
|
Oct 14 |
revised |
Recommendations for a programmable drivers license scanner? deleted 78 characters in body |
|
Oct 14 |
revised |
Recommendations for a programmable drivers license scanner? added 236 characters in body |
|
Oct 14 |
answered | Recommendations for a programmable drivers license scanner? |
|
Oct 11 |
comment |
Under what circumstances would you want Rails to be set NOT to reconnect to MYSQL OTOH, if you aren't using transactions, then using the auto-reconnect feature is probably less of an issue. |
|
Oct 11 |
comment |
Under what circumstances would you want Rails to be set NOT to reconnect to MYSQL The solution is to make sure your transactions are "atomic" - that is, if you lose the connection and reconnect, the whole transaction should be retried, not just a single statement within the transaction. I'm not sure how this works in Rails, but I guess one solution would be to put the transaction in a stored procedure - in the Rails code, you execute a single SQL statement to run the stored procedure, then if it auto-reconnects, the whole transaction starts over from the beginning. |
|
Oct 10 |
revised |
Avoiding Inheriting All Things from Base Class fixed a typo |
|
Oct 10 |
comment |
What is the operator precedence order in VB6? +1 for the advice, since it is still good advice. On a side note, I don't understand why people try to cram so many operators into a single line of code in the first place. Sometimes I wish languages defined no precedence, so that people had to use parentheses to make it clear what the heck they were trying to accomplish. I guess there's always Lisp... |
|
Oct 10 |
answered | Under what circumstances would you want Rails to be set NOT to reconnect to MYSQL |
|
Oct 7 |
comment |
Is object clearing/array deallocation really necessary in VB6/VBA (Pros/Cons?) @Bob: Good point. I think we agree actually: the point is indeed that there simply isn't a hard-and-fast rule for releasing objects. The "everything-must-be-released-always-no-matter-what" mentality seems to have originated out of want for a rule that can be consistently applied in every situation, and I can't say it's "wrong" to work under that assumption, but I think it's better to understand how GC works in VB6, so you can make an informed decision. What bothers me is people get this idea that VB6's memory management is horribly broken, but that's just an incorrect conclusion. |
|
Oct 6 |
comment |
Is object clearing/array deallocation really necessary in VB6/VBA (Pros/Cons?) There's nothing wrong with VB6's garbage collection mechanism. It's other components that don't properly release references or which require very specific teardown semantics that break it. It's not VB6's fault that there are poorly-written components that don't follow the rules. |
|
Oct 6 |
revised |
WPF: How can I have controls in a grid automatically resize when the grid is resized? tried to clarify title |
|
Oct 6 |
revised |
Sample WPF apps for line of business apps? corrected typo in title |
|
Oct 5 |
comment |
Winsock downloading files - vb6 This approach would keep everything asynchronous while avoiding the need to call DoEvents waiting for Winsock.State to change. I'm particularly wary of DoEvents after dealing with way too many hard-to-debug issues caused by code that used it, so I tend to avoid it at all costs, even when it seems like the easy way to do implement a busy-wait loop. |
|
Oct 5 |
comment |
Winsock downloading files - vb6 +1 - Hotfix or no hotfix, you have to wait for the connection to be opened before you can do anything with it. That behavior is by design. As an aside, to avoid using DoEvents (which is pretty evil in VB6 due to the nasty re-entrancy issues it can cause), I would prefer to create a separate FileDownloader class with a BeginDownload method that takes a URL and a WinSock instance as parameters. It opens the connection, and then starts the download when the WinSock Connect event fires. Then it could raise a DownloadCompleted event when all the data is received. |
|
Sep 30 |
comment |
What’s your favorite “programmer ignorance” pet peeve? @Rob: "If the software isn't solving one of the problems we're having, then what use is it to us?" Just because you can, doesn't mean that you should. If we implemented every customer feature request, our records management application would include it's own solitaire implementation by now...and it would read mail. |
|
Sep 29 |
revised |
Code Golf: Lasers deleted 2 characters in body; added 1 characters in body |
|
Sep 29 |
revised |
Code Golf: Lasers deleted 171 characters in body |
