User Thomas Owens - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:46:21Zhttp://stackoverflow.com/feeds/user/572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/164938/what-are-some-free-and-or-open-source-requirements-management-tools15What are some free and/or open source Requirements Management tools?Thomas Owens2008-10-02T22:45:52Z2009-12-16T17:24:11Z
<p>I am looking for free and/or open source requirements management tools. Does anyone have any experience with these tools and can recommend one or two? Thanks.</p>
http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use71What bug tracking software do you use?Thomas Owens2008-08-15T15:05:06Z2009-12-16T16:56:43Z
<p>I'm currently looking at <a href="http://en.wikipedia.org/wiki/Bugzilla" rel="nofollow">Bugzilla</a> and <a href="http://en.wikipedia.org/wiki/Trac" rel="nofollow">Trac</a>, as they seem to be the most popular (and I'm hoping that also means if there are any problems, it will be easier to get help), but I'm curious what solutions you use or have used and what your thoughts are.</p>
<p>I'm currently leaning toward Trac, as it's Wiki functionality can be used to support documentation. But that might not be a good enough reason to jump on Trac.</p>
http://stackoverflow.com/questions/1910040/how-to-insert-shapefiles-into-a-mysql-database/1910067#19100670Answer by Thomas Owens for How to insert shapefiles into a MySQL database?Thomas Owens2009-12-15T20:12:22Z2009-12-15T20:12:22Z<p>I'm not sure you would want to insert files into a database, but if you had to, I don't see why you can't use MySQL's BINARY or BLOB data type (I can't recall if a .shp file is binary or text). Just read in the file using [insert your favorite language] and construct the appropriate MySQL query statement to add it to the database - it's pretty easy, almost trivial.</p>
<p>A better solution would be to store the file in your file system and record a path to it in your database, allowing you to open the file and read it when needed.</p>
http://stackoverflow.com/questions/1909871/how-can-i-access-the-configured-log4j-appenders-at-runtime/1909921#19099210Answer by Thomas Owens for How can I access the configured Log4J appenders at runtime?Thomas Owens2009-12-15T19:50:40Z2009-12-15T19:50:40Z<p>The <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Logger.html" rel="nofollow">Logger</a> class has methods to <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Category.html#getAllAppenders%28%29" rel="nofollow">getAllAppenders()</a>, <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Category.html#getAppender%28java.lang.String%29" rel="nofollow">getAppender()</a>, <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Category.html#addAppender%28org.apache.log4j.Appender%29" rel="nofollow">addAppender()</a>, and <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Category.html#removeAllAppenders%28%29" rel="nofollow">removeAppender()</a> methods, inherited from the <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Category.html" rel="nofollow">Category</a> class. However, the Category class is deprecated, and on top of that, I've never tried to do this before, but this might be a useful starting point.</p>
http://stackoverflow.com/questions/1909779/should-methods-with-return-type-void-use-a-return-statement/1909795#19097957Answer by Thomas Owens for Should methods with return type void use a return statement?Thomas Owens2009-12-15T19:30:34Z2009-12-15T19:30:34Z<p>I avoid them, myself. It's just a useless line of code. In fact, <a href="http://pmd.sourceforge.net/" rel="nofollow">PMD</a> has a rule that checks for such useless <code>return</code> statements.</p>
http://stackoverflow.com/questions/1898161/memory-vs-performance/1898174#18981742Answer by Thomas Owens for Memory vs. PerformanceThomas Owens2009-12-13T23:22:30Z2009-12-13T23:22:30Z<p>There's no one right choice - it depends on your application and its requirements. However, it's often a one-or-the-other choice - you can't often (if ever) maximize performance and reduce memory consumption. If this is any kind of critical system, the maximum bounds for memory and/or lowest bounds for performance should be specified by the customer - if they aren't, they should be.</p>
http://stackoverflow.com/questions/28197/do-you-follow-the-personal-software-process-does-your-organization-team-follow-t5Do you follow the Personal Software Process? Does your organization/team follow the Team Software Process?Thomas Owens2008-08-26T14:29:56Z2009-12-11T02:06:51Z
<p>For more information - <a href="http://en.wikipedia.org/wiki/Personal_Software_Process" rel="nofollow">Personal Software Process on Wikipedia</a> and <a href="http://en.wikipedia.org/wiki/Team_Software_Process" rel="nofollow">Team Software Process on Wikipedia</a>.</p>
<p>I have two questions:</p>
<ol>
<li>What benefits have you seen from
these processes?</li>
<li>What tools and/or
methods do you use to follow these
processes?</li>
</ol>
http://stackoverflow.com/questions/1876997/best-free-ide-for-php-development/1877017#18770175Answer by Thomas Owens for Best Free IDE for PHP Development?Thomas Owens2009-12-09T21:28:06Z2009-12-09T21:28:06Z<p>The <a href="http://netbeans.org/" rel="nofollow">NetBeans</a> <a href="http://netbeans.org/features/php/" rel="nofollow">PHP plugin</a> is quite good, but there's no such thing as "the best" - a lot of things are common between IDEs and the only way to find the one you like the best is to try a number of them.</p>
http://stackoverflow.com/questions/27827/what-are-good-books-about-security-hacking-and-computer-forensics4What are good books about security, hacking, and computer forensics?Thomas Owens2008-08-26T12:00:00Z2009-12-07T05:28:50Z
<p>I know this is a broad area, but...</p>
<p>I'm looking at <a href="http://www.microsoft.com/mspress/books/5957.aspx" rel="nofollow">Writing Secure Code, Second Edition</a>, but I was wondering what other good books were out there on the subjects of security, hacking, and computer forensics. A quick search turns up plenty, but I'm not sure where to begin.</p>
<p>For the record, I am a software engineering undergraduate student, so I would like books that aren't all that complex, but I'm sure there are other people here with varied backgrounds and levels of experience and education that might enjoy some more comprehensive books, so feel free to post any good books on the subject. Please identify who they are appropriate for, though.</p>
http://stackoverflow.com/questions/1842591/getsize-getwidth-getheight-returns-1/1842610#18426102Answer by Thomas Owens for getSize(), getWidth(), getHeight() returns -1Thomas Owens2009-12-03T20:17:13Z2009-12-03T20:17:13Z<p>According to <a href="http://java.sun.com/javase/6/docs/api/java/awt/Image.html" rel="nofollow">the documentation for Image</a>, these methods return a -1 if the size, width, or height (respectively) are not yet known.</p>
<p>Also, <a href="http://java.sun.com/javase/6/docs/api/java/awt/image/ImageObserver.html" rel="nofollow">ImageObserver</a> is simply an interface that provides methods to get notifications about the information of an Image object that is being constructed.</p>
http://stackoverflow.com/questions/1840032/good-articles-on-usability/1840055#18400553Answer by Thomas Owens for Good articles on usability?Thomas Owens2009-12-03T14:07:20Z2009-12-03T14:07:20Z<p><a href="http://rads.stackoverflow.com/amzn/click/0465067107" rel="nofollow">The Design of Everyday Things by Donald A. Norman</a> is a standard book on general usability considerations that can be applied to just about everything in day-to-day life. It's not specifically about software, but it's worth it to read it.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1592530079" rel="nofollow">Universal Principles of Design</a> is a recommended textbook for my university's Engineering Methods of Software Usability course. Myself, and others who have taken this course, have found this book to be more useful than the required textbook. There appears to be an updated version, called <a href="http://rads.stackoverflow.com/amzn/click/1592535879" rel="nofollow">Universal Principles of Design, Revised and Updated: 125 Ways to Enhance Usability, Influence Perception, Increase Appeal, Make Better Design Decisions, and Teach through Design</a>, but I can't speak about that one.</p>
http://stackoverflow.com/questions/314457/does-the-use-of-the-fieldset-html-tag-have-meaning-beyond-grouping-forms2Does the use of the fieldset HTML tag have meaning beyond grouping forms?Thomas Owens2008-11-24T15:21:50Z2009-11-29T18:23:04Z
<p>Usually, I've seen it with forms, but I've found it helpful to group related sets of data (eg when you have multiple tables on a page, using a fieldset around each table or group of related tables to define a visible meaning and a group name (legend)). Is this abusing the fieldset tag to the point where, in my uses, it no longer has semantic meaning?</p>
http://stackoverflow.com/questions/1815464/is-there-a-library-that-can-perform-packet-analysis-and-block-certain-packets-fro1Is there a library that can perform packet analysis and block certain packets from being sent?Thomas Owens2009-11-29T12:52:59Z2009-11-29T13:03:39Z
<p>I found <a href="http://netresearch.ics.uci.edu/kfujii/jpcap/doc/index.html" rel="nofollow">Jpcap</a>, however it only meets half my requirements - it does not allow me to block packets, <a href="http://netresearch.ics.uci.edu/kfujii/jpcap/doc/faq.html" rel="nofollow">as stated in the FAQ</a>. I would prefer a cross-platform (Windows, Mac, Linux) solution, but if one does not exist, OS-specific solutions would be acceptable.</p>
<p>My goal is to, under certain conditions, block access to certain Internet and network resources by finding out where the packets are going and blocking the ones that meet specific criteria, regardless of how the resource was accessed. Perhaps I'm going about this the wrong way, so any advice would be appreciated.</p>
http://stackoverflow.com/questions/874762/is-there-a-maximum-effective-team-size-for-rational-unified-process1Is there a maximum effective team size for Rational Unified Process?Thomas Owens2009-05-17T14:47:49Z2009-11-25T08:43:40Z
<p>I'm aware that the Rational Unified Process (RUP) scales depending on the team and project. I'm also aware of the general outlines provided in The Mythical Man-Month by Fred Brooks regarding team size and structure. However, is there a particular team size in which RUP begins to break down in effectiveness?</p>
http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language14"Projects" for learning a new languageThomas Owens2008-08-14T12:42:14Z2009-11-20T21:03:37Z
<p>When you are learning a new programming language, what are some good projects that can be done across a spectrum of languages?</p>
<p>I'm familiar with <a href="http://projecteuler.net/" rel="nofollow">programming puzzles</a> and <a href="http://beta.stackoverflow.com/questions/10583/what-do-you-do-when-youre-learning-a-new-programming-language" rel="nofollow">read the other related question</a>, but as I think about how I learn a language, I go through stages. First, I learn the basic syntax, then I learn the more advanced (and often language specific features), finally I learn how to manage a project in that language. Programming puzzles are OK for learning the basic syntax and, from my experience, very good for learning the more advanced features of the language, I'm looking for ideas that go from the very basics of the language to the most advanced aspects.</p>
http://stackoverflow.com/questions/1772795/best-framework-in-php/1772808#17728082Answer by Thomas Owens for Best Framework in PHPThomas Owens2009-11-20T19:45:00Z2009-11-20T19:45:00Z<p>There is no single best framework. It all depends on the problem that you are trying to solve and your personal preferences.</p>
<p>That said, the major frameworks that I'm aware of (in no particular order) are:</p>
<ul>
<li><a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a></li>
<li><a href="http://cakephp.org/" rel="nofollow">CakePHP</a></li>
<li><a href="http://www.symfony-project.org/" rel="nofollow">Symphony</a></li>
<li><a href="http://codeigniter.com/" rel="nofollow">CodeIgniter</a></li>
<li><a href="http://www.kohanaphp.com/" rel="nofollow">Kohana</a></li>
</ul>
<p>You should browse through their sites and associated documentation to see which one best solves the problem(s) you are trying to solve.</p>
<p>Also, as Ivan Nevostruev points out in his answer, you can read through other questions here on Stack Overflow:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why">What PHP framework would you choose for a new application and why?</a></li>
<li><a href="http://stackoverflow.com/questions/257212/best-php-framework-for-an-experienced-php-developer">Best PHP framework for an experienced PHP developer?</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/framework+php">Other questions tagged with "framework" and "php"</a></li>
</ul>
http://stackoverflow.com/questions/1771510/why-does-this-if-statement-return-false/1771529#177152910Answer by Thomas Owens for Why does this IF statement return false?Thomas Owens2009-11-20T16:11:49Z2009-11-20T16:11:49Z<p>You should replace your <code>&&</code> with <code>||</code>. Currently, the code in the <code>if</code> block will only be executed if both text fields have text in them.</p>
http://stackoverflow.com/questions/1770898/how-to-get-fields-from-such-a-string/1771187#17711870Answer by Thomas Owens for How to get fields from such a string?Thomas Owens2009-11-20T15:24:44Z2009-11-20T15:24:44Z<p>This appears to be serialized PHP objects. There are probably some Python packages that you can use to unserialize this data - I was able to find one package called <a href="http://pypi.python.org/pypi/phpserialize" rel="nofollow">phpserialize</a> that might be of interest, but I've never used it, so I can't comment on how well it works. There might be others out there.</p>
http://stackoverflow.com/questions/1770591/coding-everything-in-java-opinions-please/1770686#17706862Answer by Thomas Owens for Coding EVERYTHING in Java - opinions pleaseThomas Owens2009-11-20T14:14:08Z2009-11-20T14:14:08Z<p>There are two sides to this coin.</p>
<p>If you program everything in Java, you are probably not using the right tool for the job. Yes, Java is good at a lot of things. But it's also very bad for solving some problems. If you use Java for everything, it is easy to get people who are very good at designing and developing Java applications - you don't need to worry about hiring someone who knows a half dozen languages well, but you can hire people who are excellent at Java.</p>
<p>However, if you start using multiple programming languages, you can fall into the trap of using too many. You can end up with csh scripts, Windows batch scripts, Python scripts, Java applications, throw-away C# apps, Ruby, Perl...it becomes a maintenance nightmare. Yes, every problem is solved by an appropriate tool, but it becomes harder to find people who know every tool you use - you have to spend more time training and teaching people a given language or toolset.</p>
<p>My advice: Pick a few languages that you can use. Java is good for applications, Perl and Python and Ruby are good for cross-platform scripting. Once you have a language for different situations, stick with it. And especially since you are using Java, you could still run everything on the JVM using jRuby and Jython (if you were using .NET as your primary development tool, I would just as quickly have suggested Powershell Scripts, adding F#, and using IronRuby or IronPython for scripting).</p>
http://stackoverflow.com/questions/1757415/alert-management-system-in-java-to-support-alerts-from-cross-technology-applica/1770600#17706000Answer by Thomas Owens for "Alert Management System" in Java to support alerts from cross-technology applicationsThomas Owens2009-11-20T14:02:22Z2009-11-20T14:02:22Z<p>Have you looked into <a href="http://en.wikipedia.org/wiki/Complex%5Fevent%5Fprocessing" rel="nofollow">Complex Event Processing</a> or <a href="http://en.wikipedia.org/wiki/Event%5Fstream%5Fprocessing" rel="nofollow">Event Stream Processing</a>? It sounds similar to what you want to do. These tools take a stream of events and perform queries over them. So if you have a particular event pattern that you are looking for, you can set up a query and when it reaches a match, you can fire off alerts. I've really oversimplified these tools, but this should give you an idea of the general nature of them.</p>
<p>I'm not sure if this is your entire solution, since I don't know what kinds of "profiles" you are trying to build - you might need to add or extend CEP or ESP tools with other tools. But if you want to check something out, I would look at the open-source <a href="http://esper.codehaus.org/" rel="nofollow">Esper CEP engine</a>.</p>
http://stackoverflow.com/questions/1763071/negate-characters-in-regular-expression/1763091#17630911Answer by Thomas Owens for Negate characters in Regular ExpressionThomas Owens2009-11-19T12:52:33Z2009-11-19T14:13:48Z<p>In Perl, it would be something like:</p>
<pre><code>$string !~ /[\d \W]/
</code></pre>
<p>Of course, it depends on your definition of "special characters". <code>\W</code> matches all non-word characters. A word character is any alphanumeric character plus the space character.</p>
http://stackoverflow.com/questions/1762967/mathematical-evaluation-of-source-code/1763064#1763064-1Answer by Thomas Owens for Mathematical Evaluation of Source CodeThomas Owens2009-11-19T12:47:53Z2009-11-19T12:47:53Z<p>Based on your question, it sounds like you want to compare two source files to find out which programming language does the job better. But that's a highly subjective question that probably can't be answered by mathematics.</p>
<p>If you are trying to decide what programming language to use, you should look at the capabilities of the language, see what other people have used to solve similar problems, look at available libraries, and look at what you know (if you know a language, it will be easier to come up with an implementable solution).</p>
http://stackoverflow.com/questions/1756004/can-two-different-strings-generate-the-same-md5-hash-code/1756068#17560681Answer by Thomas Owens for Can two different strings generate the same MD5 hash code?Thomas Owens2009-11-18T13:44:47Z2009-11-18T13:44:47Z<p>As other people have said, yes, there can be collisions between two different inputs. However, in your use case, I don't see that being a problem. I highly doubt that you will run into collisions - I've used MD5 for fingerprinting hundreds of thousands of image files of a number of image (JPG, bitmap, PNG, raw) formats at a previous job and I didn't have a collision.</p>
<p>However, if you are trying to fingerprint some kind of data, perhaps you could use two hash algorithms - the odds of one input resulting in the same output of two different algorithms is near impossible.</p>
http://stackoverflow.com/questions/1748896/in-perl-how-do-i-put-multiple-packages-in-a-single-pm-file3In Perl, how do I put multiple packages in a single .pm file?Thomas Owens2009-11-17T13:32:50Z2009-11-17T15:19:57Z
<p>I'm pretty sure that I read somewhere that it's possible, but there are a few gotchas that you need to be aware of. Unfortunately, I can't find the tutorial or page that described what you need to do. I looked through the <a href="http://perldoc.perl.org/index-tutorials.html" rel="nofollow">Perl tutorials</a>, and didn't find the one that I remember reading. Could someone point me to a page or document that describes how to put multiple packages into a single .pm file?</p>
http://stackoverflow.com/questions/1749217/rapid-switch-to-java-for-an-experienced-c-developer/1749261#17492611Answer by Thomas Owens for Rapid switch to Java for an experienced C++ developerThomas Owens2009-11-17T14:27:26Z2009-11-17T14:27:26Z<p>If you are an experienced C++ developer, I would recommend skimming through <a href="http://java.sun.com/docs/books/tutorial/index.html" rel="nofollow">the Java Tutorial</a> (<a href="http://stackoverflow.com/questions/1749217/rapid-switch-to-java-for-an-experienced-c-developer/1749240#1749240">as mentioned by Gerd Klima</a>). Then, just open up the <a href="http://java.sun.com/javase/6/docs/api/index.html?overview-summary.html" rel="nofollow">Java API documentation</a> and jump right in, feet first.</p>
http://stackoverflow.com/questions/1493979/what-does-the-title-batch-script-command-do2What does the @title batch script command do?Thomas Owens2009-09-29T17:38:16Z2009-11-17T10:33:47Z
<p>I see it a few times in my batch script, however I'm not certain what it actually does. The two occurrences of it are below an @echo (which prints out the text following it to the console) and are exact duplicates of the text that is printed with @echo.</p>
http://stackoverflow.com/questions/1742452/what-is-the-proper-syntax-for-storing-an-array-into-a-perl-hash1What is the proper syntax for storing an array into a Perl hash?Thomas Owens2009-11-16T14:20:28Z2009-11-17T04:02:52Z
<p>I'm creating a new object like this:</p>
<pre><code>TestObject->new(@array1, @array2)
</code></pre>
<p>My <code>new</code> method looks like this:</p>
<pre><code>sub new {
my $class = shift;
my $self = {};
my $self->{Array1} = shift;
my $self->{Array2} = shift;
bless($self, $class);
return $self;
}
</code></pre>
<p>As a simple test to access the data, I'm trying this, and then once I get it working, I can build more meaningful logic:</p>
<pre><code>sub mymethod {
my $self = shift;
my $param = shift;
my $array1Value = shift(my $self->{Array1});
my $array2Value = shift(my $self->{Array2});
print $array1Value." ".$array2Value;
}
</code></pre>
<p>But when I call <code>mymethod</code>, I get this error:</p>
<pre><code>Type of arg 1 to shift must be array (not hash element) at Tests/MyObject.pm line 21, near "})"
</code></pre>
<p>Suggestions? I read <a href="http://perldoc.perl.org/perldsc.html#HASHES-OF-ARRAYS" rel="nofollow">this page on Perl data structures</a>, but they don't have examples for creating a hash of arrays using arguments to a method using <code>shift</code>. So my problem might be there.</p>
http://stackoverflow.com/questions/1744406/what-is-the-name-of-the-convention-used-in-this-syntax-diagram/1744430#17444302Answer by Thomas Owens for what is the name of the convention used in this syntax diagramThomas Owens2009-11-16T19:48:00Z2009-11-16T19:48:00Z<p>That diagram is known as a <a href="http://en.wikipedia.org/wiki/Syntax%5Fdiagram" rel="nofollow">syntax diagram or railroad diagram</a>. It's used to visually represent context-free grammars. It's a graphical depiction of <a href="http://en.wikipedia.org/wiki/Extended%5FBackus-Naur%5Fform" rel="nofollow">the Extended Backus-Naur Form</a>, which is also used to represent context-free grammars.</p>
http://stackoverflow.com/questions/199177/what-are-the-good-free-programming-text-editors-for-windows6What are the good free programming text editors for Windows?Thomas Owens2008-10-13T22:07:41Z2009-11-13T12:07:15Z
<p>I swear this was asked, but I searched, I didn't see anything. Perhaps I missed it, but if not, I'm asking here.</p>
<p>Anyway, I'm looking for a good programmer's editor for Windows. I know about vim and emacs, but they aren't really what I'm looking for. My main focus right now is on <a href="http://www.jedit.org/" rel="nofollow">jEdit</a>, <a href="http://www.flos-freeware.ch/notepad2.html" rel="nofollow">Notepad2</a>, <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a>, and <a href="http://www.pnotepad.org/" rel="nofollow">Programmer's Notepad</a>. But I would appreciate any feedback that anyone has.</p>
<h1>Related Questions</h1>
<ul>
<li><a href="http://stackoverflow.com/questions/2187/essential-programming-tools">Essential programming tools</a></li>
<li><a href="http://stackoverflow.com/questions/3376/what-are-your-must-have-tools">What are your must-have tools?</a></li>
<li><a href="http://stackoverflow.com/questions/14155/text-editors">Text Editors</a></li>
<li><a href="http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad">What are the best alternatives to notepad?</a></li>
</ul>
http://stackoverflow.com/questions/1723440/how-can-i-find-all-matches-to-a-regular-expression-in-perl3How can I find all matches to a regular expression in Perl?Thomas Owens2009-11-12T16:18:46Z2009-11-12T20:19:47Z
<p>I have text in the form:</p>
<pre><code>Name=Value1
Name=Value2
Name=Value3
</code></pre>
<p>Using Perl, I would like to match <code>/Name=(.+?)/</code> every time it appears and extract the (.+?) and push it onto an array. I know I can use <code>$1</code> to get the text I need and I can use <code>=~</code> to perform the regex matching, but I don't know how to get all matches.</p>
http://stackoverflow.com/questions/1909871/how-can-i-access-the-configured-log4j-appenders-at-runtime/1909921#1909921Comment by Thomas Owens on How can I access the configured Log4J appenders at runtime?Thomas Owens2009-12-15T20:05:50Z2009-12-15T20:05:50ZYou can make an Appender on demand and add it.http://stackoverflow.com/questions/1900665/c-compiler-differences-vs2008-and-gComment by Thomas Owens on C++ compiler differences ( VS2008 and g++)Thomas Owens2009-12-14T12:36:36Z2009-12-14T12:36:36ZWhat is your setting for the compiler to use in Visual Studio? The default is Microsoft Visual C++. GCC, however, compiles ISO C++. They aren't the same - there are some things that are legal in Microsoft's implementation of C++ that aren't legal in ISO C++ and vice versa.http://stackoverflow.com/questions/1889202/opinion-on-masters-in-software-engineering-degree/1889235#1889235Comment by Thomas Owens on Opinion on Masters in Software engineering degreeThomas Owens2009-12-11T16:44:24Z2009-12-11T16:44:24ZA degree in software engineering that focuses on theory? Worse SE degree program ever. Software engineering IS practice - anything else is CS.http://stackoverflow.com/questions/1846605/long-code-blocks-inside-if-statements-or-for-loops/1846625#1846625Comment by Thomas Owens on Long code blocks inside if statements or for loopsThomas Owens2009-12-04T12:24:43Z2009-12-04T12:24:43ZAgree totally. It sounds like you haven't broken down common tasks into an appropriate granularity.http://stackoverflow.com/questions/1840032/good-articles-on-usability/1840055#1840055Comment by Thomas Owens on Good articles on usability?Thomas Owens2009-12-03T22:16:07Z2009-12-03T22:16:07ZI think it does...I clearly remember the book talking about the layout of a control panel for a stovetop...that is analogous to a user interface.http://stackoverflow.com/questions/1843281/what-is-the-blue-double-arrow-that-appears-over-linksComment by Thomas Owens on What is the blue double arrow that appears over links?Thomas Owens2009-12-03T22:06:46Z2009-12-03T22:06:46ZShould be fixed now.http://stackoverflow.com/questions/1842986/java-regex-help/1843004#1843004Comment by Thomas Owens on Java regex helpThomas Owens2009-12-03T21:40:39Z2009-12-03T21:40:39ZAh. Thanks for the clarification. It's been a while since I played with regex.http://stackoverflow.com/questions/1842986/java-regex-help/1843004#1843004Comment by Thomas Owens on Java regex helpThomas Owens2009-12-03T21:24:38Z2009-12-03T21:24:38ZI don't think digits are included in \w...http://stackoverflow.com/questions/1842986/java-regex-help/1842997#1842997Comment by Thomas Owens on Java regex helpThomas Owens2009-12-03T21:22:18Z2009-12-03T21:22:18ZI think that using the \w for word characters and \d for digits might make it more readable.http://stackoverflow.com/questions/1842939/parse-apache-log-in-ansi-cComment by Thomas Owens on Parse Apache Log in Ansi CThomas Owens2009-12-03T21:16:22Z2009-12-03T21:16:22ZDo you have to use ANSI-C? I think it would probably be easier using Perl...http://stackoverflow.com/questions/1842591/getsize-getwidth-getheight-returns-1/1842610#1842610Comment by Thomas Owens on getSize(), getWidth(), getHeight() returns -1Thomas Owens2009-12-03T20:24:01Z2009-12-03T20:24:01ZPerhaps you should add some code to your question, then, so everyone can see what you are trying to do.http://stackoverflow.com/questions/1840202/threadlocals-hard-to-useComment by Thomas Owens on ThreadLocals hard to useThomas Owens2009-12-03T14:32:02Z2009-12-03T14:32:02ZWhere is your code and specific question?http://stackoverflow.com/questions/1840032/good-articles-on-usability/1840055#1840055Comment by Thomas Owens on Good articles on usability?Thomas Owens2009-12-03T14:14:14Z2009-12-03T14:14:14ZDEOT is good, but I should say that the first time I read it, I didn't get that much out of it. Reading it a second time, however, opened my eyes.http://stackoverflow.com/questions/1816108/netbeans-why-need-to-rebuild-project-to-update-the-dist-folderComment by Thomas Owens on Netbeans: why need to rebuild project to update the 'dist' folder?Thomas Owens2009-11-29T17:29:23Z2009-11-29T17:29:23ZI believe that this is expected behavior. When you save, the code is executable using the NetBeans Run command, however the distributable JAR is only produced when you Build or Clean and Build.http://stackoverflow.com/questions/1815464/is-there-a-library-that-can-perform-packet-analysis-and-block-certain-packets-fro/1815479#1815479Comment by Thomas Owens on Is there a library that can perform packet analysis and block certain packets from being sent?Thomas Owens2009-11-29T13:13:47Z2009-11-29T13:13:47ZIt looks like you are right and there is no single wrapper around all of the platform-specific operations. However, I'm hesitant to accept this answer right now - I'm continuing to verify this, but the more I search, the more right this is looking.