User Charlie Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T03:23:43Z http://stackoverflow.com/feeds/user/35092 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/405540/what-is-a-cyclic-data-structure-good-for/405564#405564 12 Answer by Charlie Martin for What is a cyclic data structure good for? Charlie Martin 2009-01-01T22:17:30Z 2009-11-22T23:36:32Z <p>Lots of things. Circular buffer, for example: you have some collection of data with a front and a back, but an arbitrary number of nodes, and the "next" item from the last should take you back to the first.</p> <p>Graph structures are often cyclic; acyclicity is a special case. Consider, for example, a graph containing all the cities and roads in a traveling salesman problem.</p> <p><hr></p> <p>Okay, here's a particular example for you. I set up a collection of towns here in Colorado:</p> <pre><code>V=["Boulder", "Denver", "Colorado Springs", "Pueblo", "Limon"] </code></pre> <p>I then set up pairs of cities where there is a road connecting them.</p> <pre><code>E=[["Boulder", "Denver"], ["Denver", "Colorado Springs"], ["Colorado Springs", "Pueblo"], ["Denver", "Limon"], ["Colorado Springs", "Limon"]] </code></pre> <p>This has a bunch of cycles. For example, you can drive from Colorado Springs, to Limon, to Denver, and back to Colorado Springs.</p> <p>If you create a data structure that contains all the cities in V and all the roads in E, that's a <em>graph</em> data structure. This graph would have cycles.</p> http://stackoverflow.com/questions/1690274/how-do-i-launch-an-editor-from-a-shell-script/1690712#1690712 2 Answer by Charlie Martin for How do I launch an editor from a shell script? Charlie Martin 2009-11-06T21:47:47Z 2009-11-06T21:47:47Z <p>The reason you're getting the error is that when you start a shell in your environment, it's starting in a subshell that has STDIN and STDOUT not connected to a TTY — probably because this is in something like a pipeline. When you redirect, you're opening a new connection directly to the device. So, for example, your command line turns </p> <pre><code>$ vi &lt; `tty` &gt; `tty` </code></pre> <p>into</p> <pre><code>$ vi &lt; /dev/ttys000 &gt; /dev/ttys000 </code></pre> <p>So you're not really using your <em>old</em> STDIN/STDOUT, you're creating two new files and mapping them to your vi process's STDIN/STDOUT.</p> <p>Now, tell us what you're doing with this and we'll tell you how to avoid this kludge.</p> http://stackoverflow.com/questions/382846/good-current-systems-programming-books 3 Good Current Systems Programming Books? Charlie Martin 2008-12-20T03:27:41Z 2009-11-05T04:04:41Z <p>This just occurred to me in answering another question. Can anyone recommend any good, current, <em>systems programming</em> books, for really <em>any</em> variant of UNIX? Such a book would teach file and directory structure, fork/exec, pipes, FIFOS, and semaphores. I'd think (looking back on my similar course) that a reasonable final project would be writing a full shell, and possibly a lightweight HTTP daemon.</p> <p>The <em>UNIX Programming Environment</em> by Kernighan and PIke comes closest, but is pretty old. </p> http://stackoverflow.com/questions/843792/using-json-from-processing-js 1 Using JSON from Processing-JS Charlie Martin 2009-05-09T18:17:21Z 2009-11-02T22:07:50Z <p>OKay, I'm a bit of a javascript n00b, so forgive me if this seems like an obvious question. </p> <p>I want to write an application using <a href="http://processingjs.org" rel="nofollow">processing-JS</a>, and I'd like to be able to load it with server-side data. I haven't written the server side yet so I can use anything, but it seems the obvious AJAX thing would be to use JSON to upload the data into the page.</p> <p>How can I get access to that data from my processing code? Is it something as easy as the data is in scope, or could be attached to the window object and directly accessed from the processing code?</p> <p><strong>Update</strong>: Let me refine the question a little bit. I'm comfortable with JSON (but thanks for the links) and with writing code for both the client and server; my real questino (which admittedly could be somewhat silly) is if I get data with, eg, JQuery, and want to manipulate it in processing-js, is it in the same name space? Do I have to do anything odd to access it?</p> http://stackoverflow.com/questions/1662799/whats-the-syntax-for-telling-vi-to-read-write-a-source-file-with-soft-tabs-and-a/1663322#1663322 0 Answer by Charlie Martin for what's the syntax for telling VI to read/write a source file with soft-tabs and a specified indentation? Charlie Martin 2009-11-02T19:56:32Z 2009-11-02T19:56:32Z <p>Okay, first of all, in <em>real</em> vi you do this in the .exrc file.</p> <p>Second, use</p> <pre><code>set autoindent tabstop=8 shiftwidth=4 </code></pre> <p>because otherwise vi will insert tabs it thinks are only 4 characters wide. The resulting text file will not look like it makes sense in any other editor.</p> http://stackoverflow.com/questions/1650881/state-of-the-art-in-j2ee-debugging-and-monitoring-tools 1 state of the art in j2ee debugging and monitoring tools Charlie Martin 2009-10-30T16:25:15Z 2009-11-01T18:57:54Z <p>I'm digging into J2EE for the first time in years. I'm looking for recommendations on J2EE debugging and monitoring tools. I'd <em>like</em> to find a tool that lets me dynamically explore the threads space etc.</p> <p>I'm primarily working with Tomcat. <strong><em>update</em></strong>: and Java 5. (Rats.)</p> http://stackoverflow.com/questions/1650857/zombie-threads-eating-my-brainz-j2ee-tomcat-hibernate-quartz 4 Zombie threads eating my brainz (J2EE, Tomcat, Hibernate, Quartz) Charlie Martin 2009-10-30T16:21:59Z 2009-10-30T17:58:58Z <p>It <em>is</em> Hallowe'en after all.</p> <p>Here's the problem: I'm maintaining some old-ish J2EE code, using Quartz, in which I'm running out of threads. <code>jconsole</code> tells me that there are just short of 60K threads when it goes pear-shaped, of which about 100 (!!) are actually running. Intuition and some googling (see also <a href="http://stackoverflow.com/questions/175880/unmanaged-threads-spring-quartz-websphere-hibernate">here</a>) suggest that what's happening is something (I'm betting Quartz) is creating unmanaged threads that never get cleaned up.</p> <p>Several subquestions:</p> <ol> <li><p>It there a tool that I can use easily to trace thread creation, so I can be certain the issue is really Quartz?</p></li> <li><p>Most everything I've found about similar problems references Weblogic; is this a false lead for Tomcat?</p></li> <li><p>Does anyone have a known solution?</p></li> </ol> <p>It's been years since I did J2EE, so I wouldn't be too surprised if this is something that can be solved simply.</p> <p><strong><em>Update</em></strong>: It's clearly increasing threads without bound, see this plot from jconsole.</p> <p><img src="http://i35.tinypic.com/33vnarn.png" alt="They're dead, Jim" /></p> http://stackoverflow.com/questions/1636099/emacs-return-to-indented-code-line-when-press-return-key/1639200#1639200 1 Answer by Charlie Martin for emacs return to indented code line when press 'return' key Charlie Martin 2009-10-28T18:31:28Z 2009-10-28T18:31:28Z <p>The way to find that out is</p> <ul> <li>know that C-j does what you want</li> <li>use C-h k C-j to find out that C-j is mapped to <code>newline-and-indent</code></li> <li>look up remapping keys in the EMACS Info.</li> </ul> http://stackoverflow.com/questions/782316/c-html-generation-classes 3 C++ HTML generation classes Charlie Martin 2009-04-23T15:40:29Z 2009-10-25T21:21:21Z <p>A question prompted by <a href="http://stackoverflow.com/questions/779573/what-works-for-web-dev-in-c/779585#779585">jbar's question</a>.</p> <p>In scripting languages like Python, Ruby, and Perl, there are libraries that simplify generating dynamic HTML. (For example, the <a href="http://ruby-doc.org/stdlib/libdoc/cgi/rdoc/classes/CGI.html" rel="nofollow">cgi</a> module in Ruby.)</p> <p>Are there any similar packages for C++? I don't know of one, and at least some desultory googling didn't reveal one.</p> http://stackoverflow.com/questions/395618/if-else-vs-switch/395621#395621 1 Answer by Charlie Martin for If/Else vs. Switch Charlie Martin 2008-12-28T00:21:45Z 2009-10-15T22:58:12Z <p>Not just C#, but all C-based languages, I think: because a switch is limited to constants, it's possible to generate very efficient code using a "jump table". The C case is really a good old FORTRAN computed GOTO, but the C# case is still tests against a constant.</p> <p>It is not the case that the optimizer will be able to make the same code. Consider, eg,</p> <pre><code>if(a == 3){ //... } else if (a == 5 || a == 7){ //... } else {//... } </code></pre> <p>Because those are compound booleans, the generated code has to compute a value, and shortcircuit. Now consider the equivalent</p> <pre><code>switch(a){ case 3: // ... break; case 5: case 7: //... break; default: //... } </code></pre> <p>This can be compiled into</p> <pre><code>BTABL: * B3: addr of 3 code B5: B7: addr of 5,7 code load 0,1 ino reg X based on value jump indirect through BTABL+x </code></pre> <p>because you are implicitly telling the compiler that it doesn't need to compute the OR and equality tests. </p> http://stackoverflow.com/questions/1562286/beginner-java-working-with-complex-numbers/1562307#1562307 7 Answer by Charlie Martin for Beginner Java working with complex numbers Charlie Martin 2009-10-13T19:08:17Z 2009-10-13T19:08:17Z <p>Here's a hint:</p> <pre><code>public class ComplexNumber { private double re, im ; public ComplexNumber () { // default ctor this.re = 0.0; this.im = 0.0; } public ComplexNumber(double re, double im) { // now what? } } </code></pre> <p>and so on.</p> http://stackoverflow.com/questions/1562153/how-do-i-get-emacs-to-start-in-vi-mode/1562263#1562263 1 Answer by Charlie Martin for How do I get emacs to start in Vi mode? Charlie Martin 2009-10-13T18:59:23Z 2009-10-13T19:04:28Z <p>You answered your own question, really: you need to call <code>vip-change-mode-to-vi</code>. EMACS is just a lisp interpreter with some glossy side-effects; if you want to always be in vip vi mode, call the function.</p> <p>A couple things:</p> <ol> <li><p>You should use <code>add-hook</code>. What you're using will remove any other hooks.</p> <p>(add-hook 'term-setup-hook ...)</p></li> <li><p>Consider using a lambda expression to stick things together, as</p> <p>(add-hook 'term-setup-hook '(lambda () (vip-mode)))</p> <p>That means you have one closure that you can put all this stuff into</p></li> </ol> http://stackoverflow.com/questions/739398/transiting-from-cobol-to-c/739475#739475 4 Answer by Charlie Martin for Transiting from COBOL to C++ Charlie Martin 2009-04-11T03:49:13Z 2009-10-09T19:46:01Z <p>If this person is a good programmer at all, he/she have had experience with other languages. (Speaking as an old fart who started with COBOL and even worse RPG/II.) Even if this person have never had a job with anything else.</p> <p>Here are some things you might ask:</p> <ul> <li>"How did you get started with computers?"</li> <li>"Do you do any programming for fun?"</li> <li>"Why do you want to move to a C++ environment?" (This is an especially good question because good COBOL programmers are actually hard to find now. I'll bet this person wants to learn something new.)</li> <li>"Have you done any assembly language programming?" (Odds are much better they'll take to C/C++ quickly if they are comfortable with the machine.)</li> <li>"Can you describe what 'object oriented programming' means?" (Keys: look for a description of what "objects" are, "inheritance", and "polymorphism". If that works out, ask when they'd use inheritance vs aggregation, ie, "is a" relations vs "has a" relations.)</li> <li>"Do you have a Windows computer at home <s>or do you have a real computer</s>?"</li> </ul> <p>If they claim any C++ knowledge, a really good set of screening questions are:</p> <ul> <li>"What is the difference between a <em>declaration</em> and a <em>definition</em> in C?"</li> <li>"What are the differences among 'private', 'protected' and 'public' declarations in a class?" </li> <li>"What is a 'friend'?" (Extra credit if they know to say that "In C++ only your friends can access your private parts.")</li> <li>"What is a virtual member function?"</li> <li>"What is 'virtual inheritance'?"</li> </ul> http://stackoverflow.com/questions/873551/iphone-api-for-power-configuration-parameters 0 iPhone API for power, configuration parameters Charlie Martin 2009-05-16T23:38:26Z 2009-09-16T14:07:18Z <p>I'm just getting started with some iPhone apps, and I'm not finding the API documentation particularly easy to find my way through. I'm currently looking for APIs to do things like</p> <ul> <li>turn the 3G network on and off</li> <li>turn Bluetooth on and off</li> <li>set brightness</li> </ul> <p>and so on. Could some kind soul p[oint me to the right documents, or even better point me to some useful overview of the API that is organized in some useful way (as opposed to Apple's organization, which seems to be a combination of whim and when the API was introduced to the world.)</p> http://stackoverflow.com/questions/762051/how-to-create-a-lot-i-mean-a-lot-of-sockets-in-linux/762164#762164 7 Answer by Charlie Martin for How to create a lot (I mean a lot) of sockets in Linux? Charlie Martin 2009-04-17T20:53:51Z 2009-09-03T15:16:48Z <p>Old joke: Man goes to doctor, says "Doctor, it hurts when I do <em>this</em>," twisting his arm into a strange position.</p> <p>Doctor replies, "Well, don't <em>do</em> that!"</p> <p>Look, what you're doing is a <em>very</em> unnatural process. Establishing a TCP connection requires a handshake, transmitting bytes <em>far</em> in excess of the one byte per message. Setup and teardown time are going to be significant. It's very probable that what you're doing is using up kernel resources associated with that handshake; sure enough, if you then let it alone and stop slapping it, it eventually catches up.</p> <p>So, what are you <em>really</em> trying to measure? What are you really trying to <em>do</em>? If you're really trying to send a single byte at a time -- gods forbid -- at least think about using udp; there's no awful setup/teardown. It's still immensely inefficient compared to the overhead -- even a UDP packet requires something like 20 bytes of framing -- but it's better.</p> http://stackoverflow.com/questions/1330822/why-cant-a-programming-job-for-a-junior-mean-doing-programming/1330945#1330945 2 Answer by Charlie Martin for Why can't a programming job for a junior mean doing programming? Charlie Martin 2009-08-25T20:56:02Z 2009-08-25T20:56:02Z <p>There's a missing question here: are you doing these other things <em>exclusively</em>? Or part time? And if part time, how much?</p> <p>I teach baby engineers, and one of the things they often seem to imaine is that when they get a job, they'll be spending all their time "doing engineering", which is to say programming, or designing circuits, or designing bridges. Then they get the first job, and discover they're spending the majority of their time writing memos, and filling out spec sheets, and, yes, updating spreadsheets.</p> <p>The reason is that engineering, real engineering, involves a lot of that stuff. If you ask your boss, it might turn out that the boss spends even less time "doing programming" than you do.</p> <p>Now, if you're really doing <strong>no programming</strong>, then yeah, a job change might be in order. But first, look around the office: who's doing more programming than you are? Can you get that job?</p> http://stackoverflow.com/questions/1176203/unexpected-output-from-log-statement/1176210#1176210 3 Answer by Charlie Martin for Unexpected output from log statement? Charlie Martin 2009-07-24T07:21:36Z 2009-07-24T07:32:34Z <p>Aha. I've actually had this happen.</p> <p>Let's consider a program that has a bug that is munging the stack. If you introduce a log or print statement, the call to the log may shift the stack enough to cause it to change behaviour.</p> <p>It's an interesting problem to think how to show an example. Probably easiest to do it with a bad format in a printf...</p> <p>okay, in outline at least an example will look like this.</p> <pre><code>int parent(){ ... printf("%s\n", itoa(child())); int child(){ int num; scanf("%d%d", num); /* notice the format; scanf is going to eat more of the * stack than it should. */ return num; /* but this return may unwind the stack successfully. */ } </code></pre> <p>Your case would happen if you insert a <code>printf()</code> just before the return.</p> http://stackoverflow.com/questions/1169858/global-memory-management-in-c-in-stack-or-heap/1169916#1169916 1 Answer by Charlie Martin for Global memory management in C++ in stack or heap? Charlie Martin 2009-07-23T06:17:21Z 2009-07-23T06:17:21Z <p>The probelm here is the question. Let's assume you've got a tiny C(++ as well, they handle this the same way) program like this:</p> <pre><code>/* my.c */ char * str = "Your dog has fleas."; /* 1 */ char * buf0 ; /* 2 */ int main(){ char * str2 = "Don't make fun of my dog." ; /* 3 */ static char * str3 = str; /* 4 */ char * buf1 ; /* 5 */ buf0 = malloc(BUFSIZ); /* 6 */ buf1 = malloc(BUFSIZ); /* 7 */ return 0; } </code></pre> <ol> <li>This is neither allocated on the stack NOR on the heap. Instead it's allocated as static data, and put into it's own memory segment on most modern machines. The actual <em>string</em> is also being allocated as static data, and put into a read-only segment in right-thinking machines. </li> <li>is simply a static alocated pointer; room for one address, in static data.</li> <li>has the pointer allocated on the <em>stack</em>, and will be effectively deallocated when <code>main</code> returns. The string, since it's a constant, is allocated in static data space along with the other strings.</li> <li>is actually allocated exactly like at 2. The <code>static</code> keyword tells you that it's not to be allocated on the stack.</li> <li>...but <code>buf1</code> is on the stack, and</li> <li>... the malloc'ed buffer space is on the heap.</li> <li>And by the way., kids don't try this at home. <code>malloc</code> has a return value of interest; you should <em>always</em> check the return value.</li> </ol> <p>For example: </p> <pre><code>char * bfr; if((bfr = malloc(SIZE)) == NULL){ /* malloc failed OMG */ exit(-1); } </code></pre> http://stackoverflow.com/questions/390604/detail-question-on-rest-urls 1 Detail question on REST URLs Charlie Martin 2008-12-24T01:49:25Z 2009-07-20T19:13:49Z <p>This is one of those little detail (and possibly religious) questions. Let's assume we're constructing a REST architecture, and for definiteness lets assume the service needs three parameters, <em>x</em>, <em>y</em>, and <em>z</em>. Reading the various works about REST, it would seem that this should be expressed as a URI like </p> <blockquote> <p><a href="http://myservice.example.com/service/" rel="nofollow">http://myservice.example.com/service/</a> <em>x</em> / <em>y</em> / <em>z</em></p> </blockquote> <p>Having written a lot of CGIs in the past, it seems about as natural to express this </p> <blockquote> <p><a href="http://myservice.example.com/service?x=val,y=val,z=val" rel="nofollow">http://myservice.example.com/service?x=val,y=val,z=val</a></p> </blockquote> <p>Is there any particular reason to prefer the all-slashes form?</p> http://stackoverflow.com/questions/385405/recommend-javascript-graphics-tutorials 4 Recommend javascript graphics tutorials Charlie Martin 2008-12-22T02:25:54Z 2009-07-07T07:33:37Z <p>I need to learn about graphics in javascript. Can someone recommend good tutorial material?</p> <p>In particular I'd like to mix graphics and formatted text in layers, if that helps.</p> <p><em>Update</em>: Eugene asks a good question, but the answer is really "yes." I don't know much about graphics in js from any point of view. I'm particularly unclear on the decision among raw graphics formats.</p> <p>My immediate need is that I'm building a Ruby on Rails app with heavy 2D line art that's generated on the fly; I'd like to pass JSON to a client-side app that draws the results. But I also want to learn the topic thoroughly, not just hack a particular library.</p> http://stackoverflow.com/questions/936775/how-does-one-go-about-choosing-a-graduate-school-for-computer-science/936792#936792 3 Answer by Charlie Martin for How does one go about choosing a graduate school for computer science? Charlie Martin 2009-06-01T21:08:17Z 2009-07-07T01:54:26Z <p>Here's what you do with grad school:</p> <ol> <li>Get into the best grad school you can (where "can" includes "afford" - financial aid is a huge bonus).</li> <li>Get up to doctoral candidacy; take any necessary classes, prepare for any candidacy exams.</li> <li>Find a faculty member <em>with tenure</em> to be your thesis advisor.</li> <li><strong><em>Pass</em></strong> the candidacy exams</li> <li>Do a dissertation on a topic that your advisor likes and will get behind.</li> </ol> <p>Once you graduate with the union card, you will have a lot of freedom to do whatever you like; you don't have to stick with your dissertation topic.</p> http://stackoverflow.com/questions/1016439/finding-tokens-in-a-java-string/1016458#1016458 0 Answer by Charlie Martin for Finding tokens in a Java String Charlie Martin 2009-06-19T05:25:30Z 2009-06-19T05:25:30Z <p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/StringTokenizer.html" rel="nofollow">StringTokenizer</a>?Set the search string to "[]" and the "include tokens" flag to <code>false</code> and I think you're set.</p> http://stackoverflow.com/questions/750112/overengineering-how-to-avoid-it/750130#750130 45 Answer by Charlie Martin for Overengineering - How to avoid it. Charlie Martin 2009-04-15T02:52:44Z 2009-06-17T05:25:40Z <p>To start with, use the XP rule: "Do the simplest thing that can possibly work."</p> <p>As things get bigger, you have to ask some other questions.</p> <ul> <li><p>"What is the real workload going to be?" -- that is, what is really going to be done with the systeem, and when</p></li> <li><p>"what are the most probable uses of the system?" -- don't build lots of complexity for improbable edge cases</p></li> <li><p>"What are the risks." Short version of a war story: I was preaching simplicity to a bunch of colleagues who had the over-engineering bug. I wasn't successful. They proposed a system that was 10 times more expensive than the customer was really thinking. Why? because they had turned a bank's idea of a high reliability system into a real-time life-critical system. 0.99995 availability where the bank needed 0.95 -- and sure enough, cost is exponential in the number of 9's.</p></li> <li><p>"where are the requirements most likely to change?" This is Parnas's Law: modules should hide potential requirements changes. But you have to think about which ones are probable.</p></li> <li><p>refactor for simplicity</p></li> <li><p>there are people who feel "why make it simple and efficient when it can be complex and <em>wonderful</em>." Kill them. Think of it as evolution in action. Or if you can't kill then (people are so <em>stodgy</em> about that nowadays) at least keep an eye on them, and if they can't be trained out of it, move them someplace they will be better suited. Tax law seems to be a good spot for them.</p></li> </ul> <h3>Update</h3> <p>Let me add one more rule. "Don't give yourself much time." If you use short iterations with working code at the end, then you are naturally prevented from getting too cute. Charlie's Law of Software is that all <em>successful</em> projects have working code within 90 days of the project kickoff party.</p> http://stackoverflow.com/questions/832450/teaching-programming-and-formal-methods 9 Teaching programming and formal methods Charlie Martin 2009-05-07T00:51:13Z 2009-06-15T17:21:57Z <p>Here's a sort of odd question. I'm in the process of writing a book on learning to program using formal methods, and I'm going to target it toward people with some programming experience. The idea is to teach them to be high-quality programmers.</p> <p>The basic notation is going to be from Dijkstra's <a href="http://rads.stackoverflow.com/amzn/click/013215871X" rel="nofollow">Discipline of Programming</a>, along with some concurrency and communications extensions.</p> <p>Unlike EWD, I want my students eventually to write actual executable programs. That means at some point translating from EWD notation to some other language. When I first started doing formal programming I targeted C, but you end up writing a lot of plumbing, plus there are all the complexities of treating pointers etc. Ruby is an obvious possible target, as is Scheme or Lisp. But there are also the various function languages; since I'm especially interested in concurrency, Erlang seems like a possibility.</p> <p>So, finally, here's my question: What language(s) should I teach my readers to target their formally-developed programs?</p> http://stackoverflow.com/questions/992076/im-new-at-python-building-a-high-low-game-i-need-some-help/992098#992098 1 Answer by Charlie Martin for I'm new at python, building a high low game. I need some help! Charlie Martin 2009-06-14T03:42:48Z 2009-06-14T03:42:48Z <p>Okay, the nice part about using Python is that it's almost pseudocode anyway.</p> <p>Now, let's think about the individual steps:</p> <ol> <li><p>How do you get the average between high and low?</p></li> <li><p>How do you ask the user if the answerr is correct</p></li> <li><p>What do "if" statements look like in Python, and how would you write the pseudocode out as if statements?</p></li> </ol> <p>Here's another hint -- you can run python as an interpreter and try individual statements along, so, for example, you could do</p> <pre><code>high=23 low=7 </code></pre> <p>then compute what you think should be the average or midpoint between them (hint: 15)</p> http://stackoverflow.com/questions/982745/is-it-illegal-to-have-unused-namespace-declarations-in-an-xml-document/982766#982766 1 Answer by Charlie Martin for Is it illegal to have unused namespace declarations in an XML document? Charlie Martin 2009-06-11T18:16:55Z 2009-06-11T18:16:55Z <p>W3C actually has a <a href="http://validator.w3.org/#validate%5Fby%5Furi%2Bwith%5Foptions" rel="nofollow">validator service</a>. This validates with two warnings, encoding and lack of a doctype.</p> http://stackoverflow.com/questions/820457/open-source-tools-for-pdf-manipulation-esp-enable-commenting 2 Open source tools for PDF manipulation (esp enable commenting) Charlie Martin 2009-05-04T14:54:27Z 2009-06-10T16:45:52Z <p>I'd like to find some very capable PDF tools or libraries. In particular, I'd like to be able to enable commenting, as Acrobat can do.</p> <p>Ideally this would be a Mac OS/X tool; failing that something usable from Python or Ruby would be good. </p> <p>I've already looked at</p> <ul> <li>pdftk, which doesn't appear to know about comments</li> <li>iText, which frankly I haven't figured out well enough to know if it handles comments or not</li> </ul> <p>Sorry, was a little unclear: I've got the Wikipedia list, I'm looking for recommendations.</p> http://stackoverflow.com/questions/966249/scientific-math-with-functional-languages/966380#966380 3 Answer by Charlie Martin for Scientific math with functional languages? Charlie Martin 2009-06-08T18:58:00Z 2009-06-08T18:58:00Z <p>Define "serious". Remember that functional languages (other than LISP) are pretty new — Backes' original papers were only in the late 70's, and production engineering functional languages are quite new. The well-known and well-accepted numerical packages are all based on algorithms and codes starting in the late 60's and early 70's — <a href="http://en.wikipedia.org/wiki/Basic%5FLinear%5FAlgebra%5FSubprograms" rel="nofollow">BLAS</a> was first published in 1979. Since, for production use, people tend to gravitate toward well-know and trusted packages, there's a major drive to the old FORTRAN codes.</p> <p>But there are certainly people doing numeric processing with functional languages. As pointed out in another answer, Mathematica is increasingly a function numerical language and increasingly implemented in itself. </p> http://stackoverflow.com/questions/965336/what-constitutes-an-integration-test/965398#965398 3 Answer by Charlie Martin for What constitutes an Integration test Charlie Martin 2009-06-08T15:17:38Z 2009-06-08T15:17:38Z <p>Well, not to be coy, but in your integration tests you should test <em>integration</em>. You want broader tests that demonstrate components working together rather than testing individual units. You generally also want, at some point, to demonstrate your system works with the real resources instead of the mocks.</p> <p>So, yeah, generally your should test with the real database etc. You also should test business logic, even if it's been unit-tested. You basically should eventually run scenarios to test every user accessible function from start to finish, with confirmation that the results (including the contents of the data base) are as expected.</p> http://stackoverflow.com/questions/960935/would-shell-scripting-be-a-good-language-to-teach-a-kid-some-very-simple-programm/960943#960943 3 Answer by Charlie Martin for Would shell scripting be a good language to teach a kid some very simple programming? Charlie Martin 2009-06-07T00:58:34Z 2009-06-07T00:58:34Z <p>NO danger in it, but there might be some better choices. There's a new <a href="http://www.pragprog.com/titles/ltp2/learn-to-program-2nd-edition" rel="nofollow">How to Program</a> book form the Pragmatic guys using Ruby, and depending on the student's leel of interest, something like <a href="http://processing.org/" rel="nofollow">Processing</a> has <a href="http://www.learningprocessing.com/" rel="nofollow">good intro material</a> and does fun graphics stuff quickly.</p> http://stackoverflow.com/questions/1650881/state-of-the-art-in-j2ee-debugging-and-monitoring-tools/1657551#1657551 Comment by Charlie Martin on state of the art in j2ee debugging and monitoring tools Charlie Martin 2009-11-01T21:01:28Z 2009-11-01T21:01:28Z Thanks. I hadn't realized java5 was EOL this week; I guess i should consider converting once Im track this down. http://stackoverflow.com/questions/1562153/how-do-i-get-emacs-to-start-in-vi-mode/1562263#1562263 Comment by Charlie Martin on How do I get emacs to start in Vi mode? Charlie Martin 2009-10-31T18:46:41Z 2009-10-31T18:46:41Z I happen to be on the one computer I won wih no emacs, but yeah, that indicates something isn't loaded. There are a couple options: you need to <code>require</code> something, or vip-mode is an autoloaded package. Get into the scratch buffer in a clean EMACS, and enter <code>(require vip-mode)</code> followed by C-j to execute it, and see what happens. It ikf returns <code>t</code>, then add that require to your ,emacs. http://stackoverflow.com/questions/1650857/zombie-threads-eating-my-brainz-j2ee-tomcat-hibernate-quartz/1650954#1650954 Comment by Charlie Martin on Zombie threads eating my brainz (J2EE, Tomcat, Hibernate, Quartz) Charlie Martin 2009-10-30T17:47:40Z 2009-10-30T17:47:40Z Marcelo, the jconsole plot shows the threads are clearly growing unboundedly. Hmm, I should include that picture. http://stackoverflow.com/questions/1650857/zombie-threads-eating-my-brainz-j2ee-tomcat-hibernate-quartz Comment by Charlie Martin on Zombie threads eating my brainz (J2EE, Tomcat, Hibernate, Quartz) Charlie Martin 2009-10-30T17:46:33Z 2009-10-30T17:46:33Z Anthony, I'd like to try the shotgun on both application and client. Upon legal advice, I refrained. http://stackoverflow.com/questions/1650857/zombie-threads-eating-my-brainz-j2ee-tomcat-hibernate-quartz Comment by Charlie Martin on Zombie threads eating my brainz (J2EE, Tomcat, Hibernate, Quartz) Charlie Martin 2009-10-30T17:45:47Z 2009-10-30T17:45:47Z Matt, I'm really out of date with JEE debugging tools (just asked a separate question for recommendations: <a href="http://stackoverflow.com/questions/1650881/state-of-the-art-in-j2ee-debugging-and-monitoring-tools/1650922#1650922" rel="nofollow" title="state of the art in j2ee debugging and monitoring tools">stackoverflow.com/questions/1650881/&hellip;</a>) so I haven't yet. But there is a known Quartz bug causing it to spawn unmanaged threads. http://stackoverflow.com/questions/550332/best-language-for-rapid-prototyping/550339#550339 Comment by Charlie Martin on Best Language for Rapid Prototyping? Charlie Martin 2009-10-13T18:54:18Z 2009-10-13T18:54:18Z There are a bunch of them, actually — remember Lisp was one of the <i>first</i> languages that supported windowing. Google around for CLIM <a href="http://en.wikipedia.org/wiki/Common_Lisp_Interface_Manager" rel="nofollow">en.wikipedia.org/wiki/&hellip;</a> and CLX. http://stackoverflow.com/questions/946039/indenting-template-arguments-in-emacs/946401#946401 Comment by Charlie Martin on Indenting template arguments in Emacs Charlie Martin 2009-10-10T23:57:36Z 2009-10-10T23:57:36Z Which version, Ian? If it's the current version, that might be worth a bug report. http://stackoverflow.com/questions/1176203/unexpected-output-from-log-statement/1176210#1176210 Comment by Charlie Martin on Unexpected output from log statement? Charlie Martin 2009-07-24T07:34:30Z 2009-07-24T07:34:30Z Sadly, Michael, it was a good attempt at a save that I just ruined by correcting my own typo. I'm trying to get somewhere with &quot;Minging the merciless&quot; but it's too late at night.... http://stackoverflow.com/questions/1169858/global-memory-management-in-c-in-stack-or-heap/1169916#1169916 Comment by Charlie Martin on Global memory management in C++ in stack or heap? Charlie Martin 2009-07-24T07:19:16Z 2009-07-24T07:19:16Z Oh, don't be silly. The questioner clearly wasn't clear on what went where, so I wrote an answer that was directed to improving his understanding. http://stackoverflow.com/questions/405588/what-restful-api-would-you-use-for-a-turn-based-game-server/405637#405637 Comment by Charlie Martin on What RESTful API would you use for a turn-based game server? Charlie Martin 2009-07-24T07:16:07Z 2009-07-24T07:16:07Z Sorry, you're mistaken. The Wikiedia article is good, or you could read Roy Fielding's dissertation. http://stackoverflow.com/questions/795685/a-simulator-for-a-non-deterministic-push-down-automaton/795779#795779 Comment by Charlie Martin on A Simulator for a non-deterministic Push-Down Automaton Charlie Martin 2009-06-29T19:27:21Z 2009-06-29T19:27:21Z Sure. And what's the definition of a push-down automaton? A stack with a finite state controller. So you do a nondeterministic PDA as a stack with a nondeterministic finite state controller. Solve the problem of simulating an NFA and you've got NPDA and NTM solved. http://stackoverflow.com/questions/979458/subsonic-tiers-of-a-clown Comment by Charlie Martin on Subsonic: Tiers of a clown Charlie Martin 2009-06-11T06:37:46Z 2009-06-11T06:37:46Z +1 ditto. I'm <i>so</i> jealous. http://stackoverflow.com/questions/966249/scientific-math-with-functional-languages/966380#966380 Comment by Charlie Martin on Scientific math with functional languages? Charlie Martin 2009-06-10T12:51:53Z 2009-06-10T12:51:53Z I suspect the historical reason is the dominant one. The notion that functional languages have inherent inefficiencies that make them unsuited for numerical problems is urban legend, just as the notion that C wasn't suited for numerical programs versus FORTRAN was 20 years ago. There's probably a PhD or two just in making the translation and demonstrating it, though. http://stackoverflow.com/questions/960910/64-bits-and-memory-bandwidth/960928#960928 Comment by Charlie Martin on 64-bits and Memory Bandwidth Charlie Martin 2009-06-07T03:02:47Z 2009-06-07T03:02:47Z Okay, so now, like a good performance guy, I ask &quot;okay, so what's your workload like&quot;? IF your workload is such that having a high proportion of cache hits is good, AND you're not doing lots of floating point ops or moving to memory much, THEN you get some benefit. I rant about this regularly, but I'll hit it once here: what's your empirical evidence that realistic workloads are <i>negatively</i> impacted by 64 bit operation,and under what conditions does it happen? http://stackoverflow.com/questions/960910/64-bits-and-memory-bandwidth/960928#960928 Comment by Charlie Martin on 64-bits and Memory Bandwidth Charlie Martin 2009-06-07T01:03:03Z 2009-06-07T01:03:03Z Yes, and what happens then? You have to latch the CPU multiple times to make use of the bus. Caches in 64 bit chips tend to be bigger as well; I'd like to see some empirical data to validate the notion that there's a real issue here.