User Tim Howland - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:04:54Zhttp://stackoverflow.com/feeds/user/4276http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1817072/building-a-game-need-a-language-with-strongly-supported-first-class-functions/1817128#18171283Answer by Tim Howland for Building a game, need a language with strongly supported first class functionsTim Howland2009-11-29T23:24:06Z2009-11-29T23:24:06Z<p>Have you considered <a href="http://www.scala-lang.org/" rel="nofollow">scala?</a> It runs on the JVM, so you can leverage the Java swing libraries, and still have a strong functional language to code in.</p>
http://stackoverflow.com/questions/141428/is-there-a-standard-implementation-for-electronic-signatures-on-fill-in-form-web2Is there a standard implementation for Electronic Signatures on fill-in-form web applications?Tim Howland2008-09-26T19:29:01Z2009-11-02T16:33:25Z
<p>I have a client who is interested in adding in electronic signature support to a long (40 question) seller application form. I'm a little stumped on whether there is an existing standard or process that's out there that folks in the financial world would expect to see?</p>
<p>I could certainly add in a system where we generate a bunch of text based on their responses, have the applicant sign it with their private key and upload a public key- but that seems like a lot to ask of people. Do non-nerds even have PGP installed these days?</p>
<p>Is there a standard approach to this out there? Anyone work in the financial world that's done this and had it work well?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1520020/how-can-i-trace-changes-made-to-the-dom-by-javascript/1520654#15206541Answer by Tim Howland for How can i trace changes made to the DOM by JavaScript?Tim Howland2009-10-05T15:04:43Z2009-10-05T15:04:43Z<p>Firebug lets you <a href="http://getfirebug.com/js.html" rel="nofollow">set a breakpoint and single-step through your code</a>. This should make it clear where the issue is happening.</p>
http://stackoverflow.com/questions/103202/is-there-a-macro-recorder-for-eclipse8Is there a Macro Recorder for Eclipse?Tim Howland2008-09-19T15:55:52Z2009-09-29T05:06:52Z
<p>Anybody know of a good eclipse plugin for recording and playing back macros? I've tried <a href="http://www.bdaum.de/eclipse/" rel="nofollow">this one</a>, but it didn't do me any good- seemed like it wasn't ready for primetime.</p>
<p>I know about editor templates, but I'm looking for something that I can use to record my keystrokes and then apply multiple times against a wad of text.</p>
<p>This seems like a strange hole in an IDE, am I missing some builtin facility for this?</p>
http://stackoverflow.com/questions/611723/whats-the-best-way-to-get-the-last-n-elements-of-a-perl-array/611759#611759-1Answer by Tim Howland for What's the best way to get the last N elements of a Perl array?Tim Howland2009-03-04T18:05:57Z2009-09-23T16:00:52Z<p>my $size = (scalar @list) - 1;
my @newList = @list[$size-$n..$size];</p>
http://stackoverflow.com/questions/1455735/help-with-java-applet/1455842#14558420Answer by Tim Howland for Help with Java AppletTim Howland2009-09-21T17:50:34Z2009-09-21T17:50:34Z<p>Applets run in a sandbox that (when in browser) dramatically restrict what they can do. In general, they can't open up connection to any host other than the one they were served up from.</p>
<p>This site: <a href="http://www.securingjava.com/chapter-two/chapter-two-2.html" rel="nofollow">http://www.securingjava.com/chapter-two/chapter-two-2.html</a> is a little dated, but gives you a good general idea for what restrictions you'll be facing.</p>
http://stackoverflow.com/questions/1454200/which-is-the-fastest-javascript-engine-and-does-it-really-matter/1454926#14549260Answer by Tim Howland for Which is the fastest javascript engine, and does it really matter?Tim Howland2009-09-21T14:54:12Z2009-09-21T14:54:12Z<p>It matters to me as a web developer; many of the tools that I rely on use javascript, and just as a backend developer spends a ton of time waiting for compiles, a front end developer can end up waiting for page refreshes. A fast javascript engine helps speed this up, especially when the page is complex.</p>
<p>Obviously, if your application relies on javascript to be fast for your end users, you must test it on all platforms and make sure you meet rational performance targets- but a fast javascript browser (eg, chrome, opera, firefox 3.5), makes life a much more pleasant experience while in heavy development.</p>
http://stackoverflow.com/questions/1430648/should-the-iframe-be-dead-by-now/1430675#14306751Answer by Tim Howland for Should the IFrame be dead by now?Tim Howland2009-09-16T02:43:16Z2009-09-16T02:43:16Z<p>It's extensively used in ad tracking and conversion tracking; it's one of the easiest ways to put a beacon into a site unobtrusively.</p>
http://stackoverflow.com/questions/1397440/what-is-the-purpose-of-constraint-naming/1397463#13974633Answer by Tim Howland for What is the purpose of constraint namingTim Howland2009-09-09T04:00:38Z2009-09-09T04:00:38Z<p>When your code randomly violates some foreign key constraint, it sure as hell saves time on debugging to figure out which one it was. Naming them greatly simplifies debugging your inserts and your updates.</p>
http://stackoverflow.com/questions/1358677/having-trouble-generating-a-war-in-grails/1358775#13587752Answer by Tim Howland for Having Trouble Generating a War in GrailsTim Howland2009-08-31T18:32:57Z2009-08-31T18:32:57Z<p>it may be worth trying a grails clean before building the app. Line 129 of invokerHelper is:</p>
<pre><code>129 public static Object invokeStaticMethod(String klass, String methodName, Object arguments) throws ClassNotFoundException {
130 Class type = InvokerHelper.class.forName(klass);
131 return getInstance().invokeStaticMethod(type, methodName, arguments);
132 }
</code></pre>
<p>so I suspect that you have a plugin or classpath problem- cleaning up the install may help it.</p>
http://stackoverflow.com/questions/1325724/books-in-college/1325765#13257658Answer by Tim Howland for books in collegeTim Howland2009-08-25T02:27:33Z2009-08-25T02:27:33Z<p>For what it's worth, MIT's Open Courseware program makes many of their courses available online for free- <a href="http://ocw.mit.edu/OcwWeb/web/courses/courses/index.htm#ElectricalEngineeringandComputerScience" rel="nofollow">Here are their comp sci and EE courses</a>. </p>
http://stackoverflow.com/questions/1297363/need-sample-java-to-query-mysql-and-dispay-result-upon-combo-box-update/1302263#13022630Answer by Tim Howland for Need sample java to query mysql and dispay result upon combo box updateTim Howland2009-08-19T19:52:28Z2009-08-19T19:52:28Z<p>I think you are actually looking for a reference in Ajax programming using PHP on the backend and javascript on the front end.</p>
<p>My recommendation would be to look at using one of the excellent Javascript development frameworks. Great candidates would be JQuery or Prototype. They both give you solid libraries to simplify programming in javascript.</p>
<p>Rather than working with sample code, you'll probably get a lot further by developing javascript expertise. Ajax is complicated, and you'll need to at least get basic skills together before you can start to integrate javascript and PHP.</p>
<p>Here's a good query to get started- I'd recommend beginning with JQuery if you have to pick one.</p>
<p><a href="http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=ajax+php+jquery+tutorial" rel="nofollow">http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=ajax+php+jquery+tutorial</a></p>
http://stackoverflow.com/questions/1297199/what-is-a-good-stand-alone-perl-editor-for-linux-and-maybe-windows/1297220#12972204Answer by Tim Howland for What is a good stand-alone Perl editor for Linux (and maybe Windows)?Tim Howland2009-08-19T00:05:10Z2009-08-19T00:55:47Z<p>I've been using two approaches with general success:</p>
<p>Padre (available from CPAN): <a href="http://padre.perlide.org/" rel="nofollow">http://padre.perlide.org/</a></p>
<p>A little raw yet, based on Wx widgets and the scintilla text editor. One big advantage is that it has a fairly robust plugin system, and the plugins are written in perl- this makes it very easy to code in custom tasks.</p>
<p>EPIC plugin for eclipse: <a href="http://www.epic-ide.org/" rel="nofollow">http://www.epic-ide.org/</a></p>
<p>This works pretty well, especially if you are using Java already- otherwise, it's a pretty big system to drop in.</p>
<p>Both of these are cross-platform.</p>
http://stackoverflow.com/questions/1290047/how-to-add-a-moving-flash-in-iphone/1290099#12900995Answer by Tim Howland for How to add a moving Flash in iPhoneTim Howland2009-08-17T20:00:45Z2009-08-17T20:00:45Z<p>The iphone doesn't support flash at the current time, and no plans have been announced for future inclusion.</p>
http://stackoverflow.com/questions/1271525/how-to-have-a-domain-redirect-to-a-subdirectory/1271549#12715493Answer by Tim Howland for How to have a domain redirect to a subdirectory?Tim Howland2009-08-13T11:59:12Z2009-08-13T12:16:33Z<p>You can't. DNS doesn't handle URLs, just maps names to IPs.</p>
<p>URLs aren't part of DNS, only domain names are.</p>
http://stackoverflow.com/questions/404776/why-isnt-postgresql-as-widespread-as-mysql/1247905#1247905-1Answer by Tim Howland for Why isn't PostgreSQL as widespread as MySQL?Tim Howland2009-08-08T03:37:18Z2009-08-08T03:37:18Z<p>Based on my recollections of doing app development in the 90's, the first free relational database that folks could get their hands on was by a guy in Australia named Dave Hughes. It was called "mSQL". It was fine, but it wasn't open source- and there were some commercial restrictions on it. You could write perl against it, and so folks doing lots of perl-based web development would use it as the backend. This was the age of mod_perl and cgi, so perl compatibility was pretty important if you were doing web stuff.</p>
<p>Eventually, mSQL atrophied, and there wasn't much support. A replacement database called MySQL was available, and it was binary-compatible with the mSQL interfaces. A number of perl shops switched over.</p>
<p>At this time, PostGres was a very early, very experimental Object / Relational DBMS. It was basically a bunch of grad student's thesis project, so it had lots of experimental stuff, but it wasn't really solid. It took until PostGresql95 and then it got pretty darn good- including support for a pretty decent flavor of ansi SQL, etc.</p>
<p>MySQL was there because- even though it didn't support transactions or foreign keys in those days- it was compatible with the existing de facto standard, worked well enough, and could be thrown into service doing all those guestbook apps- the only credible alternative was Oracle, at $50K / seat back then. </p>
http://stackoverflow.com/questions/1247794/is-mysql-appropriate-for-a-read-heavy-database-with-3-5m-rows-if-so-which-engi/1247801#12478016Answer by Tim Howland for Is MySQL appropriate for a read-heavy database with 3.5m+ rows? If so, which engine?Tim Howland2009-08-08T02:41:13Z2009-08-08T02:41:13Z<p>I've run DB's far bigger than this on mysql- you should be fine. Just tune your indexes carefully.</p>
<p>InnoDB supports better locking semantics, so if there will be occasional or frequent writes (or if you want better data integrity), I'd suggest starting there, and then benchmarking myisam later if you can't hit your performance targets.</p>
http://stackoverflow.com/questions/1184717/hungarian-notation/1184753#11847531Answer by Tim Howland for Hungarian NotationTim Howland2009-07-26T14:43:49Z2009-07-26T14:43:49Z<p>If you make the semantic investment of using a statically typed language like Java, further investment in hungarian notation is wasted effort. It can be valuable in dynamically typed languages or loosely typed languages, but the compiler and all modern IDEs will enforce type checking without all the visual noise.</p>
http://stackoverflow.com/questions/1118209/grails-mysql-processlist/1122660#11226600Answer by Tim Howland for Grails MySql processListTim Howland2009-07-13T23:23:11Z2009-07-13T23:23:11Z<p>Grails uses hibernate, which in turn uses connection pooling; these are idle connections, waiting for traffic.</p>
<p>You can learn more about Hibernate's connection pooling at: <a href="https://www.hibernate.org/214.html" rel="nofollow">https://www.hibernate.org/214.html</a></p>
<p>This is actually desirable behavior; it can take a non-negligible amount of time to open a new connection, much more time than it takes to send a query down an open one.</p>
<p>"Premature optimization is the root of all evil" - unless you are seeing a performance problem related to the database, I'd leave this alone.</p>
http://stackoverflow.com/questions/1097252/grails-lift-which-framework-is-better-suited-for-which-kind-of-applications/1122329#11223291Answer by Tim Howland for Grails - Lift: Which framework is better suited for which kind of applications?Tim Howland2009-07-13T22:00:12Z2009-07-13T22:00:12Z<p>Grails support in netbeans 6.7 is really good, as well as the idea intellij support in Maia.</p>
<p>Eclipse is still pretty sucky.</p>
<p>I looked at lift, but was concerned about the resources available now; this will change in the future, but my projects can't wait.</p>
http://stackoverflow.com/questions/1082097/what-is-the-best-database-to-use-with-a-java-program/1082185#10821850Answer by Tim Howland for What is the best database to use with a java program?Tim Howland2009-07-04T13:12:45Z2009-07-04T13:12:45Z<p>The biggest issue that I've had with using MSSql is when using the antiquated JDBC -> ODBC Bridge drivers; these do a half-assed Java wrapper around the ODBC calls, which are flaky and fragile. If you are using JDBC ODBC Bridge, replace them with the latest native JDBC drivers from microsoft- they work a million times better.</p>
http://stackoverflow.com/questions/901380/good-gantt-diagram-software/901491#9014910Answer by Tim Howland for Good Gantt-diagram software?Tim Howland2009-05-23T12:56:25Z2009-05-23T12:56:25Z<p><a href="http://openproj.org/" rel="nofollow">OpenProj</a> is really capable, seems to be MSProject compatible, and works on Windows / Linux / Mac (it's Java based). It's also free.</p>
http://stackoverflow.com/questions/901475/is-there-any-modproxy-equivalent-for-tomcat/901486#9014861Answer by Tim Howland for Is there any mod_proxy equivalent for tomcat?Tim Howland2009-05-23T12:52:04Z2009-05-23T12:52:04Z<p><a href="http://edwardstx.net/wiki/Wiki.jsp?page=HttpProxyServlet" rel="nofollow">Here</a> is a pretty good writeup of available options as well as source code for a functional HTTP Proxy servlet that looks like it would meet your needs.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/43719#4371978Answer by Tim Howland for What is the single most influential book every programmer should read?Tim Howland2008-09-04T13:06:12Z2009-04-25T17:08:50Z<p>For a truly deep read, I'd suggest Douglas Hofstadter's <a href="http://rads.stackoverflow.com/amzn/click/0465026567" rel="nofollow">Gödel, Escher, Bach</a>. He dives pretty deep into many of the issues that programmers face every day- recursion, verifiability, proof, and boolean algebra. Great read, a little off the beaten path, occasionally challenging, and extremely rewarding once you fight through it and process what you've read.</p>
<p><img src="http://www.upl.cs.wisc.edu/~bethenco/product-data-cache/0465026567_01_LZZZZZZZ.jpg" width="200"></p>
http://stackoverflow.com/questions/685836/java-on-openvms/717142#7171421Answer by Tim Howland for Java on OpenVMS?Tim Howland2009-04-04T13:59:08Z2009-04-04T13:59:08Z<p>Shell scripts and java usually aren't a great mix. You may want to consider installing a JVM on your VMS servers, and using one of the JVM-hosted languages that handle that case better- jython, jruby, or groovy might be candidates to consider.</p>
http://stackoverflow.com/questions/671512/unsafe-use-of-user-supplied-gstrings-in-groovy-grails/703809#7038090Answer by Tim Howland for Unsafe use of user-supplied GString:s in Groovy/GrailsTim Howland2009-04-01T02:11:41Z2009-04-01T02:11:41Z<p>you may have a cross-site scripting vulnerability in the above code- make sure you call .encodeAsHTML(), or a bad guy can mess with ya.</p>
http://stackoverflow.com/questions/674911/light-weight-er-diagram-tool/674959#6749590Answer by Tim Howland for light weight ER diagram toolTim Howland2009-03-23T19:42:51Z2009-03-23T19:52:01Z<p>I've been pretty pleased with the <a href="http://www.sqlmaestro.com/" rel="nofollow">SQL Maestro</a> products for windows. They have variations for mysql, postgres, sql server, etc. The list price is $179, but they have a non-commercial version for $99.</p>
<p>After checking their site for the price, it looks like they have an <a href="http://www.sqlmaestro.com/products/anysql/maestro/download/" rel="nofollow">AnySQL Maestro</a> product that will let you do what you need, for free, to any database that you can get an ODBC connection for. Probably worth a download.</p>
http://stackoverflow.com/questions/651798/as-a-developer-is-it-acceptable-to-be-rude-to-your-userbase/651827#6518272Answer by Tim Howland for As a developer, is it acceptable to be rude to your userbase?Tim Howland2009-03-16T19:30:00Z2009-03-16T19:30:00Z<p>I've looked through the <a href="http://csmr.ca.sandia.gov/projects/template.html" rel="nofollow">FooBar project's website</a>, and have found very little there that cannot be found from another open source library, or even a reasonably stocked zoo. If there are no mountain lions in your immediate area, maybe you should try just running the simulation code?</p>
http://stackoverflow.com/questions/612452/how-to-remove-fading-and-sliding-effects-from-firefox/612512#6125121Answer by Tim Howland for How to remove fading and sliding effects from FirefoxTim Howland2009-03-04T21:26:19Z2009-03-04T21:26:19Z<p>I'd look into the NoScript extension for firefox- it will disable all javascript on every site, and can then be turned on for a site-by-site basis.</p>
<p>https://addons.mozilla.org/en-US/firefox/addon/722</p>
http://stackoverflow.com/questions/524158/how-popular-is-groovy-grails-in-the-corporate-world/598421#5984210Answer by Tim Howland for How popular is Groovy/Grails in the corporate world?Tim Howland2009-02-28T18:21:03Z2009-02-28T18:21:03Z<p>I've used it for a smaller financial services company, but in their public-facing website, not their backend operations. </p>
<p>Since it compiles down to WAR files for deployment, I suspect that it will have a gentler adoption path than completely out of band solutions like RoR. However, the current financial climate is probably going to put a severe crimp on any development projects, let alone ones that try and use newer, less proven technologies.</p>
http://stackoverflow.com/questions/1700859/did-java-steal-away-the-fun-from-programmingComment by Tim Howland on Did Java steal away the fun from programming?Tim Howland2009-11-10T17:09:07Z2009-11-10T17:09:07ZI'm with David on this. This is a pile-on, and I can't see anything in there that isn't subjective ("fun") or argumentative ("your favorite language sucks"). No value here whatsoever.http://stackoverflow.com/questions/1389562/how-do-we-handle-ie-timeouts-generally-10minComment by Tim Howland on how do we handle IE Timeouts ? Generally 10min Tim Howland2009-09-07T14:03:21Z2009-09-07T14:03:21ZCan you provide more information? What web server are you using, what are you trying to do, what is the error you're seeing?http://stackoverflow.com/questions/1389244/how-important-are-naming-conventions-for-getters-in-java/1389265#1389265Comment by Tim Howland on How important are naming conventions for getters in Java?Tim Howland2009-09-07T12:50:26Z2009-09-07T12:50:26ZAbsolutely agreed here- many frameworks (eg, JSF) will completely fail to work unless you follow the conventions. It's the java bean standard, but it's become a common convention at many layers. Divergence from standards is perilous, and should only be done with a really good reason. Signalling immutability doesn't count.http://stackoverflow.com/questions/1336137/open-source-test-report-generation-toolComment by Tim Howland on Open source test report generation toolTim Howland2009-08-26T17:12:34Z2009-08-26T17:12:34Zwhat platform, language, and build script application are you using? Continuous integration servers typically do this for you, but they vary based on underlying language and build system.http://stackoverflow.com/questions/1297363/need-sample-java-to-query-mysql-and-dispay-result-upon-combo-box-updateComment by Tim Howland on Need sample java to query mysql and dispay result upon combo box updateTim Howland2009-08-19T01:19:29Z2009-08-19T01:19:29ZAre you looking for Java help (the serverside language that gets complied) or javascript (the scripting language that runs in your browser and is useful for ui handling)? I think you may be confusing the two languages together- getting that straightened out will probably give you more useful responses.http://stackoverflow.com/questions/1271525/how-to-have-a-domain-redirect-to-a-subdirectory/1271549#1271549Comment by Tim Howland on How to have a domain redirect to a subdirectory?Tim Howland2009-08-13T13:04:00Z2009-08-13T13:04:00ZIf you are using apache, set up a permanent redirect on example.com:
Redirect permanent / <a href="http://www.anotherdomain.com/example" rel="nofollow">anotherdomain.com/example</a>
Docs are at: <a href="http://httpd.apache.org/docs/2.0/mod/mod_alias.html" rel="nofollow">httpd.apache.org/docs/2.0/…</a>
Other http servers have other ways to handle it.http://stackoverflow.com/questions/1247794/is-mysql-appropriate-for-a-read-heavy-database-with-3-5m-rows-if-so-which-engi/1247801#1247801Comment by Tim Howland on Is MySQL appropriate for a read-heavy database with 3.5m+ rows? If so, which engine?Tim Howland2009-08-08T03:28:43Z2009-08-08T03:28:43ZWhen you create an index, you add extra overhead when doing inserts (not much, just a little, but it adds up). If you index everything, then it can really slow things down.
Indexes can be based on a single field, the first N bytes (or characters) of a field, or two or more fields. You need to work with the "explain query" tool and benchmark your system to figure out the best mix for your particular data set and the searches you typically run. Check the mysql docs here: <a href="http://dev.mysql.com/doc/refman/5.0/en/create-index.html" rel="nofollow">dev.mysql.com/doc/refman/…</a> for more info.http://stackoverflow.com/questions/1201048/allowing-java-to-use-an-untrusted-certificate-for-ssl-https-connection/1201102#1201102Comment by Tim Howland on Allowing Java to use an untrusted certificate for SSL/HTTPS connectionTim Howland2009-07-29T15:31:41Z2009-07-29T15:31:41ZThis is the way to do it; however, you need to be really careful that this code doesn't make it to production- and if you're using untrusted certs in a production app, it's a Bad Thing.
If you have a dependency injection framework like spring in your app, consider isolating this code and have a secure version for the production environment.http://stackoverflow.com/questions/202198/whats-the-best-manner-of-implementing-a-social-activity-stream/204819#204819Comment by Tim Howland on What's the best manner of implementing a social activity stream?Tim Howland2009-05-26T15:14:42Z2009-05-26T15:14:42ZSmallish in this case is such that "select * from events where event.is visible for this user" returns a result in less than a second or two- figure a few hundred thousand rows worth of events.http://stackoverflow.com/questions/68920/how-do-you-find-out-in-an-interview-if-the-company-will-have-a-decent-working-env/68942#68942Comment by Tim Howland on How do you find out in an interview if the company will have a decent working environment?Tim Howland2009-05-24T20:41:56Z2009-05-24T20:41:56ZThe problem is that at least 40% of the time, the office jerk is conducting the interview...http://stackoverflow.com/questions/202198/whats-the-best-manner-of-implementing-a-social-activity-stream/204819#204819Comment by Tim Howland on What's the best manner of implementing a social activity stream?Tim Howland2009-05-12T01:07:07Z2009-05-12T01:07:07Zit was at Oreilly and Associate's Ignite Boston presentation either number 3 or 4- I believe the presenter had a book on scaling RoR with Oreilly. Sorry I can't be more specific!http://stackoverflow.com/questions/611723/whats-the-best-way-to-get-the-last-n-elements-of-a-perl-array/611759#611759Comment by Tim Howland on What's the best way to get the last N elements of a Perl array?Tim Howland2009-03-04T19:04:15Z2009-03-04T19:04:15ZI thought about that- since the OP was new to perl, I thought it would be better to avoid the $# construction, in favor of the more straightforward scalar call- I remember hating all the wacky special variables when I was getting started.http://stackoverflow.com/questions/611723/whats-the-best-way-to-get-the-last-n-elements-of-a-perl-array/611759#611759Comment by Tim Howland on What's the best way to get the last N elements of a Perl array?Tim Howland2009-03-04T18:17:08Z2009-03-04T18:17:08Zyou're right, too much time in groovy- I'll edit to matchhttp://stackoverflow.com/questions/455221/releasing-open-source-without-the-permission-of-your-employer/455263#455263Comment by Tim Howland on Releasing open-source without the permission of your employerTim Howland2009-02-11T03:25:25Z2009-02-11T03:25:25ZShreevatsaR- google "Trade Secret Theft". Copyright has nothing to do with this, unless the poster fraudulently claims that the copyright is his.http://stackoverflow.com/questions/455221/releasing-open-source-without-the-permission-of-your-employer/455281#455281Comment by Tim Howland on Releasing open-source without the permission of your employerTim Howland2009-02-11T03:10:36Z2009-02-11T03:10:36ZIn fact, it's a pretty serious felony: Under the Economic Espionage Act of 1996, intentional trade secret theft—including stealing, copying, and receiving secrets—is both a state and federal white collar crime. Convicted individuals face fines of up to $500,000 and ten years in jail.