| bio | website | |
|---|---|---|
| location | Minneapolis, MN | |
| age | ||
| visits | member for | 2 years, 7 months |
| seen | 16 hours ago | |
| stats | profile views | 197 |
|
Feb 22 |
answered | Why do web sites require certain characters in their credentials? |
|
Feb 22 |
comment |
When would using a scripting language within a larger program be useful? It's very useful for making absurdly complex pieces of software that require expensive consultants to maintain it, especially when the scripting language is terrible. |
|
Feb 18 |
comment |
Should object oriented programming be the first thing students learn? @ott: unlikely in HS, though its fairly common in university environments. |
|
Feb 18 |
awarded | Caucus |
|
Feb 18 |
comment |
Should object oriented programming be the first thing students learn? Too lazy to write a full answer, but no, I don't think starting with OO is the way to go. The key to programming is the analytical mind, and I think programming on the bare metal is how students should begin, in assembler, or maybe C. I think programming an Arduino or PIC, etc would be much better for a HS program. |
|
Feb 17 |
comment |
Interview - Create a portfolio to show my skills Several hundred little examples would be miserable. 5 or 6 big examples would be good. But design it to be shown on paper, and have it distributed as a PDF. Anything more complicated than that no one is going to want to bother with. |
|
Feb 14 |
comment |
At what stage of a project should documentation be done? I wouldn't say any documentation will help, not even in theory. Incorrect documentation can be and often is worse than no documentation at all. |
|
Feb 13 |
comment |
Implementing chat in 2013 Unless you began programming in the 60s, computers both had threads and multiple cores when you last implemented some sort of chat function. |
|
Feb 13 |
comment |
Is it plausible to use a filesystem-based configuration format rather than an INI file? @FrerichRaabe: We're all aware that it could work. We are all just arguing that your schemes disadvantages dominate its advantages. |
|
Feb 13 |
comment |
Is it plausible to use a filesystem-based configuration format rather than an INI file? @c-smile: how is that possibly any better than just using straight-up XML like a normal person? |
|
Feb 13 |
comment |
Is it plausible to use a filesystem-based configuration format rather than an INI file? @FrerichRaabe: Do you think anyone is going to want to type find -print -exec more {} \; constantly, instead of just seeing everything in an editor? |
|
Feb 13 |
awarded | Nice Answer |
|
Feb 13 |
answered | Is it plausible to use a filesystem-based configuration format rather than an INI file? |
|
Feb 11 |
comment |
Why is the main memory for object allocation called the 'heap'? @DeadMG: link to some then please, so we can put the dupe in the vote to close form. |
|
Feb 7 |
comment |
Communication between a C# application and C++ DLL @RobertHarvey: that is true, but you have the hassle of creating a C wrapper API around your objects. While COM isn't hassle free either, it can provide a better C# <-> C++ interface for objects. |
|
Feb 5 |
answered | When should pointers be checked for NULL in C? |
|
Feb 4 |
comment |
How can I get assembly from an EXE? That's only going to work if the original was written in .NET. |
|
Feb 4 |
comment |
Is it reasonable to expect all the items on the “Programmers Bill of Rights”? From the FAQ: "Chatty, open-ended questions diminish the usefulness of our site and push other questions off the front page.". Can this be rephrased into a question focusing on a single point? |
|
Feb 1 |
comment |
How is C/C++ more difficult to decompile than C#? @JesseC.Slicer: I wouldn't even bother with that, I would use whatever made it able to get the job done with the least difficulty, and not even sweat concerns about disassembly. It will make no difference to someone trying to pirate it, and someone trying to replicate it will probably have an easier time doing it from scratch than trying to reverse engineer OPs offering. |
|
Jan 27 |
comment |
What happens when an unexpected packet arrives at a computer? @RossPatterson: Sometimes. A lot of systems are configured to not respond whatsoever to unexpected packets. |