User InSciTek Jeff - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:47:11Z http://stackoverflow.com/feeds/user/1553 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32397/popularity-algorithm/32399#32399 4 Answer by InSciTek Jeff for Popularity algorithm InSciTek Jeff 2008-08-28T14:26:05Z 2009-11-16T03:19:54Z <p>My understanding is that it is approximately the following from another <a href="http://beta.stackoverflow.com/questions/24066/what-formula-should-be-used-to-determine-hot-questions" rel="nofollow">Jeff Atwood</a> post</p> <pre><code>t = (time of entry post) - (Dec 8, 2005) x = upvotes - downvotes y = {1 if x &gt; 0, 0 if x = 0, -1 if x &lt; 0) z = {1 if x &lt; 1, otherwise x} log(z) + (y * t)/45000 </code></pre> http://stackoverflow.com/questions/1657484/can-you-give-an-example-of-stack-overflow-in-c/1657518#1657518 10 Answer by InSciTek Jeff for Can you give an example of stack overflow in C++? InSciTek Jeff 2009-11-01T16:04:17Z 2009-11-01T16:04:17Z <p>The typical case that does not involve infinite recursion is declaring an automatic variable on the stack that is too large. For example:</p> <pre><code>int foo() { int array[1000000]; } </code></pre> http://stackoverflow.com/questions/1524760/engineer-versus-developer/1524762#1524762 1 Answer by InSciTek Jeff for Engineer versus Developer InSciTek Jeff 2009-10-04T13:42:55Z 2009-10-06T10:24:49Z <p><strong><em>developer</em></strong> = a person who develops (a general &amp; loosely used term that may applied to an engineer at times).</p> <p><strong><em>engineer</em></strong> = a person trained (and perhaps certified) in the sciences of physics, chemistry, electronics, etc. and skilled in the design, construction, and use of those sciences to solve problems in an analytical way.</p> <p>In general, I agree the terms are generally commonly used interchangeably, but an engineer is really a much more specific discipline. </p> http://stackoverflow.com/questions/1516370/wrapper-printf-function-that-filters-according-to-user-preferences/1516384#1516384 6 Answer by InSciTek Jeff for wrapper printf function that filters according to user preferences InSciTek Jeff 2009-10-04T13:15:50Z 2009-10-05T13:24:21Z <p>You want to call vprintf() instead of printf() using the variable arguments "<a href="http://www.chemie.fu-berlin.de/chemnet/use/info/libc/libc%5F28.html" rel="nofollow">varargs</a>" capabilities of C.</p> <pre><code>int write_log(int priority, const char *format, ...) { va_list args; va_start(args, format); if(priority &amp; PRIO_LOG) vprintf(format, args); va_end(args); } </code></pre> <p>For more information, see something along the lines of <a href="http://www.cplusplus.com/reference/clibrary/cstdio/vprintf/" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/1516452/basic-c-recursion-program-questions/1516462#1516462 0 Answer by InSciTek Jeff for Basic C++ Recursion program questions InSciTek Jeff 2009-10-04T13:55:46Z 2009-10-04T13:55:46Z <p>With the <code>return GCD(A,B);</code> version, the result of call <code>GCD(A,B)</code> is returned to the parent. If you skip the <code>return</code> statement, then the result returned is lost and not passed to the calling invocation of <code>GCD()</code>.</p> <p>That is, in "C", you must use the <code>return</code> statement for a function to return a value.</p> http://stackoverflow.com/questions/456084/how-do-i-do-what-strtok-does-in-c-in-python 6 How do I do what strtok() does in C, in Python? InSciTek Jeff 2009-01-18T23:03:45Z 2009-06-26T04:54:07Z <p>I am learning Python and trying to figure out an efficient way to tokenize a string of numbers separated by commas into a list. Well formed cases work as I expect, but less well formed cases not so much.</p> <p>If I have this:</p> <pre><code>A = '1,2,3,4' B = [int(x) for x in A.split(',')] B results in [1, 2, 3, 4] </code></pre> <p>which is what I expect, but if the string is something more like</p> <pre><code>A = '1,,2,3,4,' </code></pre> <p>if I'm using the same list comprehension expression for B as above, I get an exception. I think I understand why (because some of the "x" string values are not integers), but I'm thinking that there would be a way to parse this still quite elegantly such that tokenization of the string a works a bit more directly like <strong><em>strtok(A,",\n\t")</em></strong> would have done when called iteratively in C.</p> <p>To be clear what I am asking; I am looking for an elegant/efficient/typical way in Python to have all of the following example cases of strings:</p> <pre><code>A='1,,2,3,\n,4,\n' A='1,2,3,4' A=',1,2,3,4,\t\n' A='\n\t,1,2,3,,4\n' </code></pre> <p>return with the same list of:</p> <pre><code>B=[1,2,3,4] </code></pre> <p>via some sort of compact expression.</p> http://stackoverflow.com/questions/187761/recursive-lock-mutex-vs-non-recursive-lock-mutex/189778#189778 14 Answer by InSciTek Jeff for Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex) InSciTek Jeff 2008-10-10T01:09:43Z 2009-06-20T11:54:41Z <p>The difference between a recursive and non-recursive mutex has to do with ownership. In the case of a recursive mutex, the kernel has to keep track of the thread who actually obtained the mutex the first time around so that it can detect the difference between recursion vs. a different thread that should block instead. As another answer pointed out, there is a question of the additional overhead of this both in terms of memory to store this context and also the cycles required for maintaining it.</p> <p><em>However</em>, there are other considerations at play here too.</p> <p>Because the recursive mutex has a sense of ownership, the thread that grabs the mutex must be the same thread that release the mutex. In the case of non-recursive mutexes, there is no sense of ownership and any thread can usually release the mutex no matter which thread originally took the mutex. In many cases, this type of "mutex" is really more of a semaphore action, where you are not necessarily using the mutex as an exclusion device but use it as synchronization or signaling device between two or more threads.</p> <p>Another property that comes with a sense of ownership in a mutex is the ability to support priority inheritance. Because the kernel can track the thread owning the mutex and also the identity of all the blocker(s), in a priority threaded system it becomes possible to escalate the priority of the thread that currently owns the mutex to the priority of the highest priority thread that is currently blocking on the mutex. This inheritance prevents the problem of priority inversion that can occur in such cases. (Note that not all systems support priority inheritance on such mutexes, but it is another feature that becomes possible via the notion of ownership).</p> <p>If you refer to classic VxWorks RTOS kernel, they define three mechanisms:</p> <ul> <li><strong>mutex</strong> - supports recursion, and optionally priority inheritance</li> <li><strong>binary semaphore</strong> - no recursion, no inheritance, simple exclusion, taker and giver does not have to be same thread, broadcast release available</li> <li><strong>counting semaphore</strong> - no recursion or inheritance, acts as a coherent resource counter from any desired initial count, threads only block where net count against the resource is zero.</li> </ul> <p>Again, this varies somewhat by platform - especially what they call these things, but this should be representative of the concepts and various mechanisms at play.</p> http://stackoverflow.com/questions/32376/what-is-a-good-open-source-b-tree-implementation-in-c 8 What is a good open source B-tree implementation in C? InSciTek Jeff 2008-08-28T14:21:10Z 2009-06-14T20:51:01Z <p>I am looking for a lean and well constructed open source implementation of a B-tree library written in C. It needs to be under a non-GPL license so that it can be used in a commercial application. Ideally, this library supports the B-tree index to be stored/manipulated as a disk file so that large trees can be built using a configurable (ie: minimal) RAM footprint.</p> <p>Note: Since there seemed to be some confusion, a Binary Tree and a B-Tree are <em>not</em> the same thing.</p> http://stackoverflow.com/questions/855544/is-there-a-way-to-flush-a-posix-socket/855635#855635 2 Answer by InSciTek Jeff for Is there a way to flush a POSIX socket? InSciTek Jeff 2009-05-13T01:15:59Z 2009-05-13T01:27:52Z <p>There is no way that I am aware of in the standard TCP/IP socket interface to flush the data "all the way through to the remote end" and ensure it has actually been acknowledged.</p> <p>Generally speaking, if your protocol has a need for "real-time" transfer of data, generally the best thing to do is to set the setsockopt() of TCP_NODELAY. This disables the Nagle algorithm in the protocol stack and write() or send() on the socket more directly maps to sends out onto the network....instead of implementing send hold offs waiting for more bytes to become available and using all the TCP level timers to decide when to send. NOTE: Turning off Nagle does not disable the TCP sliding window or anything, so it is always safe to do....but if you don't need the "real-time" properties, packet overhead can go up quite a bit.</p> <p>Beyond that, if the normal TCP socket mechanisms don't fit your application, then generally you need to fall back to using UDP and building your own protocol features on the basic send/receive properties of UDP. This is very common when your protocol has special needs, but don't underestimate the complexity of doing this well and getting it all stable and functionally correct in all but relatively simple applications. As a starting point, a thorough study of TCP's design features will shed light on many of the issues that need to be considered.</p> http://stackoverflow.com/questions/811424/gcc-mips-32-calling-conventions-stack-frame-definition 1 GCC MIPS-32 Calling Conventions / Stack Frame Definition InSciTek Jeff 2009-05-01T13:47:27Z 2009-05-01T23:25:28Z <p>There appears to be no definitive standardized stack frame and C language calling conventions (register usage and such) for the MIPS-32 Processor Architecture. That is, it appears to be completely up to the assembler/compiler tool chain to define their own stack frame and calling conventions. I've struggled to find a definitive reference of what conventions the GCC compiler uses for MIPS-32 instruction set. I'm specially using GCC cross-compiler on Cygwin that targets a MIPS-32 core being used in an embedded environment on the eCos open source kernel.</p> <p>Any references to definitive documentation about GCC for MIPS-32 in this area would be appreciated.</p> http://stackoverflow.com/questions/60871/how-to-solve-memory-fragmentation/61061#61061 7 Answer by InSciTek Jeff for How to solve Memory Fragmentation InSciTek Jeff 2008-09-14T02:12:23Z 2009-04-18T17:51:46Z <p>First, I agree with the other posters who suggested a resource leak. You really want to rule that out first.</p> <p>Hopefully, the heap manager you are currently using has a way to dump out the actual total free space available in the heap (across all <strong>free</strong> blocks) and also the total number of blocks that it is divided over. If the average free block size is relatively small compared to the total free space in the heap, then you do have a fragmentation problem. Alternatively, if you can dump the size of the largest free block and compare that to the total free space, that will accomplish the same thing. The largest free block would be small relative to the total <strong><em>free</em></strong> space available across all blocks if you are running into fragmentation.</p> <p>To be very clear about the above, in all cases we are talking about <strong><em>free</em></strong> blocks in the heap, not the allocated blocks in the heap. In any case, if the above conditions are not met, then you <em>do</em> have a leak situation of some sort.</p> <p>So, once you have ruled out a leak, you could consider using a better allocator. <strong><em>Doug Lea's malloc</em></strong> suggested in the question is a very good allocator for general use applications and very robust <em>most</em> of the time. Put another way, it has been time tested to work very well for most any application. However, no algorithm is ideal for <em>all</em> applications and any management algorithm approach can be broken by the right pathelogical conditions against it's design.</p> <p><em>Why are you having a fragmentation problem?</em> - Sources of fragmentation problems are <em>caused</em> by the behavior of an application and have to do with greatly different allocation lifetimes in the same memory arena. That is, some objects are allocated and freed regularly while other types of objects persist for extended periods of time all in the same heap.....think of the longer lifetime ones as poking holes into larger areas of the arena and thereby preventing the coalesce of adjacent blocks that have been freed.</p> <p>To address this type of problem, the best thing you can do is logically divide the heap into sub arenas where the lifetimes are more similar. In effect, you want a transient heap and a persistent heap or heaps that group things of similar lifetimes.</p> <p>Some others have suggested another approach to solve the problem which is to attempt to make the allocation sizes more similar or identical, but this is less ideal because it creates a different type of fragmentation called internal fragmentation - which is in effect the wasted space you have by allocating more memory in the block than you need. </p> <p>Additionally, with a good heap allocator, like Doug Lea's, making the block sizes more similar is unnecessary because the allocator will already being doing a power of two size bucketing scheme that will make it completely unnecessary to artificially adjust the allocation sizes passed to malloc() - in effect, his heap manager does that for you automatically much more robustly than the application will be able to do adjustments.</p> http://stackoverflow.com/questions/387934/iphone-how-to-programmatically-respond-to-sms-messages 6 iPhone: How to Programmatically Respond to SMS Messages InSciTek Jeff 2008-12-23T01:39:28Z 2009-04-14T11:06:18Z <p>After a review of the iPhone SDK documentation, I have <strong><em>not</em></strong> yet found a way for an application to be written such that it can programmatically process the content of an incoming SMS message within the iPhone platform. The idea would be for such an application to be running <em>in the background</em> and based on specifically formatted SMS messages would be able to take specific actions.</p> <p>Does anybody know if this is possible with an iPhone SDK application and if so, provide a pointer to information about how this can be done?</p> http://stackoverflow.com/questions/455084/what-kinds-of-applications-need-to-be-multi-threaded/455387#455387 2 Answer by InSciTek Jeff for What kinds of applications need to be multi-threaded? InSciTek Jeff 2009-01-18T16:17:36Z 2009-04-07T12:14:01Z <p>There are really three classes of reasons that multithreading would be applied:</p> <ul> <li><strong>Execution Concurrency to improve compute performance</strong>: If you have a problem that can be broken down into pieces and you also have more than one execution unit (processor core) available then dispatching the pieces into separate threads is the path to being able to simultaneously use two or more cores at once.</li> <li><strong>Concurrency of CPU and IO Operations</strong>: This is similar in thinking to the first one but in this case the objective is to keep the CPU busy AND also IO operations (ie: disk I/O) moving in parallel rather than alternating between them.</li> <li><strong>Program Design and Responsiveness</strong>: Many types of programs can take advantage of threading as a program design benefit to make the program more responsive to the user. For example the program can be interacting via the GUI and also doing something in the background.</li> </ul> <p>Concrete Examples:</p> <ul> <li><strong>Microsoft Word</strong>: Edit document while the background grammar and spell checker works to add all the green and red squiggle underlines.</li> <li><strong>Microsoft Excel</strong>: Automatic background recalculations after cell edits</li> <li><strong>Web Browser</strong>: Dispatch multiple threads to load each of the several HTML references in parallel during a single page load. Speeds page loads and maximizes TCP/IP data throughput.</li> </ul> http://stackoverflow.com/questions/671588/any-good-advice-for-tcp-packet-formatting/671603#671603 2 Answer by InSciTek Jeff for Any good advice for TCP packet formatting? InSciTek Jeff 2009-03-22T20:57:32Z 2009-03-23T15:22:29Z <p>One recommendation is sending simple key name / value pairs if you need to stick completely to an ASCII text type stream. The key name is used to describe the name of the field that each value conveys similar to original proposal:</p> <pre><code>##keyName1=value1#keyName2=value2# </code></pre> <p>Alternatively, you can send data in a binary tagged format such as this:</p> <pre><code>&lt;tagCodeNum&gt;&lt;lengthInBytes&gt;&lt;tagValueAsBytes&gt; </code></pre> <p>where tagCodeNum is perhaps a byte or word and length is a byte or word depending on your needs. The idea of this format is that the receiver can recognize fields that it understands by the code number and then can also skip tags it doesn't know how to decode. In this way, the encoding becomes extensible. If you need multiple tags grouped into logical messages, I would wrap a group of these binary coded tags in an overall message hierarchy:</p> <pre><code>&lt;messageCodeNum&gt;&lt;lengthInBytes&gt;&lt;tag&gt;&lt;tag&gt;&lt;tag&gt; </code></pre> <p>Where the tag above is a replication of the previous tag construction described above and length describes the byte length of all the tags combined together.</p> <p><em>Note: If you think about this structure, not a whole lot different than an XML type structure but it is a lot more concise and constrained so that it is nearly trivial to decode.</em> </p> http://stackoverflow.com/questions/655259/how-to-store-documentation-of-programs-libraries-and-languages-you-use/671592#671592 0 Answer by InSciTek Jeff for How to store documentation of programs, libraries and languages you use InSciTek Jeff 2009-03-22T20:46:47Z 2009-03-22T20:46:47Z <p>The <a href="http://www.google.com/enterprise/products.html" rel="nofollow">Google search appliances</a> and the supporting applications are somewhat pricey perhaps for your application (maybe?), but they are great and they know how to deal with files in hundreds of different formats. Overall, your storage requirement of 30GB is really not that much space anymore and avoiding compression will make it much easier to index, access, and maintain.</p> http://stackoverflow.com/questions/574004/docs-for-the-internals-of-cpython-implementation 4 Docs for the internals of CPython Implementation InSciTek Jeff 2009-02-22T00:16:52Z 2009-03-08T17:15:18Z <p>I am currently in the process of making an embedded system port of the CPython 3.0 Python interpreter and I'm particularly interested in any references or documentation that provides details about the design and structure of code for Release 3.0 or even about any of the 2.x releases.</p> <p>One useful document I have found so far is this <a href="http://www.python.org/dev/peps/pep-0339/" rel="nofollow">informational PEP</a> on the implementation - which is a good overview - but is still pretty high level. Hoping to come across something that gives [much] more detail on more of the modules or perhaps even covers something about porting considerations.</p> http://stackoverflow.com/questions/606879/how-do-i-access-an-individual-character-from-an-array-of-strings-in-c/606885#606885 8 Answer by InSciTek Jeff for How do I access an individual character from an array of strings in c? InSciTek Jeff 2009-03-03T15:41:42Z 2009-03-03T23:04:46Z <p>Almost, but not quite. The correct answer is:</p> <pre><code>*((*(a+1))+2) </code></pre> <p>because you need to first de-reference to one of the actual string pointers and then you to de-reference that selected string pointer down to the desired character. (Note that I added extra parenthesis for clarity in the order of operations there).</p> <p>Alternatively, this expression:</p> <pre><code>a[1][2] </code></pre> <p>will also work!....and perhaps would be preferred because the intent of what you are trying to do is more self evident and the notation itself is more succinct. This form may not be immediately obvious to people new to the language, but understand that the reason the array notation works is because in C, an array indexing operation is really just shorthand for the equivalent pointer operation. ie: *(a+x) is same as a[x]. So, by extending that logic to the original question, there are two separate pointer de-referencing operations cascaded together whereby the expression a[x][y] is equivalent to the general form of *((*(a+x))+y).</p> http://stackoverflow.com/questions/603727/which-algorithm-for-extremely-high-non-burst-errors/603832#603832 2 Answer by InSciTek Jeff for Which algorithm for extremely high non burst errors? InSciTek Jeff 2009-03-02T20:17:56Z 2009-03-02T20:17:56Z <p>As the channel approaches 50% real noise rate, it no longer becomes possible to transmit any information at all. To Jon Skeet's answer, if the error rate is anything less than 50% noise, then you can get data through by doing longer bursts of the intended data redundantly and statistically looking at the result to some level of confidence in the original value. The needed burst length and confidence levels for a given length would then be derived based on a characterization of the noise. Understand, however, what you are doing here is effectively lowering the data rate to improve the net Signal to Noise Ratio of the transmitted stream.</p> <p>In your question, you might have ruled this out as an option, but a better encoding scheme might be based on the relative existence (or not) of the data stream itself. In other words, to transmit a binary one....send an alternating stream of 1/0. To send a zero, send nothing or perhaps send a constant level. The idea is that sending (and receiving) anything represents one state and sending (and receiving) nothing represents the other state. This would effectively resemble a type of <a href="http://en.wikipedia.org/wiki/Bipolar%5Fencoding" rel="nofollow">bipolar encoding</a> of the data.</p> http://stackoverflow.com/questions/547201/looking-for-a-t-38-library/582689#582689 4 Answer by InSciTek Jeff for Looking for a T.38 library InSciTek Jeff 2009-02-24T17:29:38Z 2009-02-28T15:36:30Z <p>A T.38 gateway is really just the modem section to take FAX analog "audio" data on the phone line and turns it a straight binary digital packet stream of lower level T.30 HDLC data. The T.38 standard does specify some level of application level decoding to extend the timers in certain FAX acknolwedgement handshakes....in effect the T.38 gateway buys some time at his end with the FAX machine at the other end of the phone call while stuff makes it through the IP network...especially if there is packet loss etc. However, all of that is going on between the T.38 gateway and the FAX machine....not towards the IP network.</p> <p>So, if you really want to peer into the IP packet end of the T.38 gateway and actually want to get access to the FAX'ed document images and render that as TIFF, what you really are looking for is T.30 FAX Termination since T.30 specifies the format of the HDLC data and how to encode/decode that content. In effect, you have to implement the FAX machine's logic to capture the documents into TIFF in the same way that a real FAX machine would have captured the images and printed to paper.</p> <p>ie: What you are really for is a T.30 implementation, not a T.38 implementation. Note that part of the the T.30 standard also references T.4 which describes how the the actual image data is compressed within the context of T.30.</p> <p>Relative to going from T.38 to T.37, while I suppose that would be theoretically possible, understand that just like T.38, the T.37 standard assumes that one end of such a gateway is the analog domain. That is, the standard of T.37 specifies how to go from analog to an email message in the same way that T.38 goes from analog to real-time digital packet stream. In the context of the standards there is no "double hop" from T.38 to T.37 to get to your FAX images....so I think finding an existing implementation seems unlikely.</p> <p>In the end, what you need is a T.30 FAX termination implementation since the T.38 gateway you are talking to is already doing the modem part for you. Alternatively, another way of looking at this is that you want a T.37 gateway <em>instead</em> of a T.38 gateway.</p> http://stackoverflow.com/questions/555923/simple-usb-host-stack/575163#575163 1 Answer by InSciTek Jeff for Simple USB host stack InSciTek Jeff 2009-02-22T16:27:34Z 2009-02-22T16:27:34Z <p>I've used the <a href="http://www.on-time.com/rtusb-32.htm" rel="nofollow">RTUSB-32</a> stack from On-Time. It is a small foot print stack and was easy to integrate into our environment and the documentation is good. They abstract out nicely the needed support so that it is completely platform and OS neutral and has a relatively small number of hooks you need to provide to it - ie: It is well encapsulated.</p> <p>Since you get all the source, you'll see that the code is not the most well constructed code in the world, certainly, but it can be deciphered without a whole lot of work if needed. In any case, it basically "just works" without issue. We have had it running in some products for a few years now and have only run into one compatibility problem with the stack where it wasn't quite doing auto-discovery quite right with a certain type of USB 2.0 hub. We sent them a sample of the hub and they had a patch for it within a few days. Hard to beat that. Overall, I consider it a good value and certainly beats sitting down to write the thing from scratch.</p> http://stackoverflow.com/questions/573915/from-an-employers-perspective-breadth-or-depth-in-new-graduate/573972#573972 7 Answer by InSciTek Jeff for From an employer's perspective: Breadth or Depth in new graduate? InSciTek Jeff 2009-02-21T23:59:01Z 2009-02-21T23:59:01Z <p>I am founder and CTO of a company that has interviewed and hired dozens of programmers over the years. Generally speaking, here are the only qualification requirements I <em>really</em> care about when interviewing candidates and considering them for a position:</p> <ul> <li>Basic Intelligence - can you break down and solve non-trivial problems</li> <li>Good attitude and good work ethic - will you work out well on the team</li> <li>Can demonstrate you know something about programming in some language(s) - for the most part I don't care which ones....but have some preference for C, C++, C#.</li> </ul> <p>The rest of the details of what you actually have experience in and whether or not you know about the specific technologies we deploy with has more of a affect on what I am going to offer you in terms of salary to start.</p> <p>I would argue that the above criteria is the only criteria that matters because the field changes too quickly. Experience counts, but only so long as you can continue to reapply to new technologies, new skills, and new problems.</p> http://stackoverflow.com/questions/483488/strategy-to-find-your-best-route-via-public-transportation-only/549310#549310 1 Answer by InSciTek Jeff for Strategy to find your best route via Public Transportation only? InSciTek Jeff 2009-02-14T16:18:56Z 2009-02-19T00:59:47Z <p>The way I think of this problem is that ultimately you are trying to optimize your average speed from your starting point to your ending point. In particular, you don't care at all about total distance traveled if going [well] out of your way saves time. So, a basic part of the solution space is going to need to be identifying efficient routes available that cover non-trivial parts of the total distance at relatively high speeds between start and finish.</p> <p>To your original point, the typical automotive route algorithms used by GPS navigation units to make the trip by car is a good bound for a target optimal total time and optimal route evaluations. In other words, your bus based trip would be doing really good to approach a car based solution. Clearly, the bus route based system is going to have many more constraints than the car based solutions, but having the car solution as a reference (time and distance) gives the bus algorithm a framework to optimize against*. So, put loosely, you want to morph the car solution towards the set of possible bus solutions in an iterative fashion or perhaps more likely take possible bus solutions and score them against your car based solution to know if you are doing "good" or not.</p> <p>Making this somewhat more concrete, for a specific departure time there are only going to be a limited number of buses available within any reasonable period of time that can cover a significant percentage of your total distance. Based on the straight automotive analysis <em>reasonable period of time</em> and <em>significant percentage of distance</em> become quantifiable using some mildly subjective metrics. Certainly, it becomes easier to score each possibility relative to the other in a more absolute sense.</p> <p>Once you have a set of possible major segment(s) available as possible answers within the solution, you then need to hook them together with other possible walking and waiting paths....or if sufficiently far apart recursive selection of additional short bus runs. Intuitively, it doesn't seem that there is really going to be a prohibitive set of choices here because of the <em>Constraints Paradox</em> (see footnote below). Even if you can't brute force all possible combinations from there, what remains should be able to be optimized using a <a href="http://en.wikipedia.org/wiki/Simulated_annealing" rel="nofollow">simulated annealing</a> (SA) type algorithm. A <a href="http://en.wikipedia.org/wiki/Monte_Carlo_method" rel="nofollow">Monte Carlo method</a> would be another option.</p> <p>The way we've broken the problem down to this point leaves us something that is quite analogous to how SA algorithms are applied to the automated layout and routing of ASIC chips, FPGA's and also the placement and routing of printed circuit boards of which there is quite a bit of <a href="http://portal.acm.org/citation.cfm?id=317825.317977" rel="nofollow">published work</a> on optimizing that type of problem form.</p> <p><em>* Note: I usually refer to this as "The Constraints Paradox" - my term. While people can naturally think of more constrained problems as harder to solve, the constraints reduce choices and less choices means easier to brute force. When you can brute force, then even the optimal solution is available.</em></p> http://stackoverflow.com/questions/554847/what-is-the-best-way-to-learn-c-if-i-have-a-bit-of-other-programming-experience/554867#554867 1 Answer by InSciTek Jeff for What is the best way to learn C++ if I have a bit of other programming experience? InSciTek Jeff 2009-02-16T22:40:15Z 2009-02-17T14:33:35Z <p>If you have a strong handle on C, then C++ is not a huge leap once you have a good handle on the OOP concepts....which hopefully you have from becoming proficient in Python. Coming from C, the biggest thing to learn in C++ is really getting familiar with the Standard Template Library (STL) and all the subtle things come along with using it.</p> <p>Personally, I think the Stroustrup book is not all that great for learning the language, it's more of a reference. I would recommend <a href="http://rads.stackoverflow.com/amzn/click/0672326973" rel="nofollow">C++ Primer Plus</a> as a better book and the <a href="http://rads.stackoverflow.com/amzn/click/0321334876" rel="nofollow">Effective C++ books</a> by Meyers for really learning to use the language coherently.</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13281#13281 14 Answer by InSciTek Jeff for What is the single most influential book every programmer should read? InSciTek Jeff 2008-08-16T19:02:43Z 2009-02-13T13:00:57Z <p>For programming, without question, the "<em>correct</em>" answer is <em>Code Complete</em>. This book is really unparallelled in setting a framework of thought around a disciplined approach to the actual construction of code. McConnell was able to do this in a way that was largely agnostic to language of implementation and even in the types of systems the programmer is working on...useful stuff to anyone who spends any part of their day actually writing code.</p> <p>Code Complete is also noteworthy in that this book was really the first to tackle only the construction aspects coding completely and while followed with other books by other authors, I believe Code Complete still stands as the most ambitious and successful in convincing you the practices that Steve advocates are paramount to successful programming.</p> <p>To throw in another book by Steve McConnell, I think the book Rapid Development is equally important. While this book is somewhat less unique in the subject matter of running successful development teams, it is equally fun to read as Code Complete and no less important to programming project team leaders.</p> <p><em>Code Complete</em> for the good of the individual. <em>Rapid Development</em> for the good of the team.</p> http://stackoverflow.com/questions/526030/byte-order-with-a-large-array-of-characters-in-c/526242#526242 5 Answer by InSciTek Jeff for Byte order with a large array of characters in C InSciTek Jeff 2009-02-08T19:11:41Z 2009-02-09T13:58:54Z <p>Ok, there seems to be problems with what you are doing on two different levels. Part of the confusion here seems to stem for your use of pointers, what type of objects they point to, and then the interpretation of the encoding of the values in the memory pointed to by the pointer(s).</p> <p>The encoding of multi-byte entities in memory is what is referred to as endianess. The two common encodings are referred to as <strong><em>Little Endian</em></strong> (LE) and <strong>Big Endian</strong> (BE). With LE, a 16-bit quantity like a short is encoded least significant byte (LSB) first. Under BE, the most significant byte (MSB) is encoded first.</p> <p>By convention, network protocols normally encode things into what we call "network byte order" (NBO) which happens also happens to be the same as BE. If you are sending and receiving memory buffers on big endian platforms, then you will not run into conversion problems. However, your code would then be platform dependent on the BE convention. If you want to write portable code that works correctly on both LE and BE platforms, you should not assume the platform's endianess.</p> <p>Achieving endian portability is the purpose of routines like <strong><em>ntohs()</em></strong>, <strong><em>ntohl()</em></strong>, <strong><em>htons()</em></strong>, and <strong><em>htonl()</em></strong>. These functions/macros are defined on a given platform to do the necessary conversions at the sending and receiving ends:</p> <ul> <li><strong><em>htons()</em></strong> - Convert short value from host order to network order (for sending)</li> <li><strong><em>htonl()</em></strong> - Convert long value from host order to network order (for sending)</li> <li><strong><em>ntohs()</em></strong> - Convert short value from network order to host order (after receive)</li> <li><strong><em>ntohl()</em></strong> - Convert long value from network order to host order (after receive)</li> </ul> <p>Understand that your comment about accessing the memory when cast back to characters has no affect on the actual order of entities in memory. That is, if you access the buffer as a series of bytes, you will see the bytes in whatever order they were actually encoded into memory as, whether you have a BE or LE machine. So if you are looking at a NBO encoded buffer after receive, the MSB is going to be first - always. If you look at the output buffer after your have converted back to host order, if you have BE machine, the byte order will be unchanged. Conversely, on a LE machine, the bytes will all now be reversed in the converted buffer.</p> <p>Finally, in your conversion loop, the variable <code>total</code> refers to bytes. However, you are accessing the buffer as <code>shorts</code>. Your loop guard should not be <code>total</code>, but should be:</p> <p><code>total / sizeof( unsigned short )</code></p> <p>to account for the double byte nature of each <code>short</code>.</p> http://stackoverflow.com/questions/525754/what-next-c-python-or-ruby/525779#525779 0 Answer by InSciTek Jeff for What Next: C++, Python or Ruby InSciTek Jeff 2009-02-08T14:14:48Z 2009-02-08T14:14:48Z <p>I think the answer on this depends on what types of sample problems you want to try and solve while learning this new language, but in general I think you have them in the right order:</p> <ol> <li>C++ (or even C !) - pointers and heap management</li> <li>Python - IronPython on .NET perhaps</li> <li>Ruby</li> </ol> http://stackoverflow.com/questions/306705/how-does-disabling-a-core-affect-running-processes/490066#490066 3 Answer by InSciTek Jeff for How does disabling a core affect running processes? InSciTek Jeff 2009-01-29T00:42:05Z 2009-01-29T23:34:47Z <p>Interesting question. This gets somewhat involved. You were not super specific about exactly what you mean by "application that disables a core" and exactly what it does, but I presume from your question and the comment to another that this application is disabling the core in a OS kernel friendly way.</p> <p>So, normally when OS X is running, there are many different possible threads/processes (I'll say threads from here on out) that are competing for CPU resources in the scheduler. When both cores of your Core 2 Duo processor are enabled, the kernel has the ability to be running two threads simultaneously - rotating both cores through everything that needs to run. When you disable one of the cores, the kernel is going to drop back to only dispatching work to a single core. Of course, this doesn't change the amount of work that needs to get done....it just cuts your <em>potential</em> execution performance in half. </p> <p>You might not think this matters if your cores were averaging less than 50% busy, right? Well, it does matter in many circumstances and the reason is latency to execute stuff. If there is only one thread runnable at any time, then the second core is always useless, even if it still enabled. However in any situation where two or more threads become runnable....it is possible to take advantage of both cores and if one of them is disabled then the work to be done on the second thread can't even start until the previous thread executes for awhile and then gets swapped out. Assuming two threads with equal work to be done, clearly it is going to take twice as long for the second thread to get to completion compared to the dual core case. You may not notice this, depending how much work we are talking about here, but clearly the latency (responsiveness) at least in theory is going to be cut in half. Clearly, as the system loads up with more and more threads that need to run or threads that have more work to do, it will become progressively more obvious that everything is running - in effect - at half speed.</p> <p>That was all pretty straight forward.</p> <p><strong><em>So what does this mean relative to heat dissipation and battery life?</em></strong></p> <p>Do you come out ahead here or not....because point in fact while you might be inclined to think you are drawing half as much power per unit time, work is in fact taking twice as long to complete.</p> <p>The conclusion here is that disabling a core, in the end, will have very little if any impact on overall battery life because the OS and the CPU are already working together to throttle back the clocks and effectively shutdown a core that is not needed. That is, there is really little to no overhead in having a core <em>in the waiting</em> ready to be used when you need it. In fact, a system might actually have shorter battery life with only one core is used because all the other devices on the motherboard have to stay active longer as the CPU is taking longer to get the needed work done.</p> <p>Relative to heat dissipation, the effect is similar. Clearly, the peak heat dissipation in terms of WATTS is dramatically cut down with only one core....because only one of two cores is actually active. However, again, that core will be running longer and the net total energy output (JOULES or WATT SECONDS) will be approximately the same...which is again why your battery life is largely unaffected in the one core vs. two core case.</p> http://stackoverflow.com/questions/479926/should-i-fsck-ext3-on-embedded-system/480001#480001 2 Answer by InSciTek Jeff for Should I fsck ext3 on embedded system? InSciTek Jeff 2009-01-26T14:46:08Z 2009-01-26T14:46:08Z <p>I think the answer to your question more relates to what types of coherency requirements you application has relative to its data. That is, what has to be guaranteed if power is lost without a formal shutdown of the system? In general, none of the desktop operating system type file systems handle this all that well without specific application closing/syncing of files and flushing of the disk caches, etc. at key transaction points in the application to ensure what you need to maintain is in fact committed to the media.</p> <p>Running fsck fixes the file-system but without the above care, there is no guarantees about what changes you made will actually be kept. ie: It's not exactly deterministic what you'll lose as a result of the power failure.</p> <p>I agree that putting your binaries or other important read-only data on a separate read-only partition does help ensure that they can't erroneously get tossed due to an fsck correction to file-system structures. As a minimum, putting them in a different sub-directory off the root than where the R/W data is held will help. But in both cases, if you support software updates, you still need to have scheme to deal with writing the "read-only" areas anyway.</p> <p>In our application, we actually maintain a pair of directories for things like binaries and the system is setup to boot from either one of the two areas. During software updates, we update the first directory, sync everything to the media and verify the MD5 checksums on disk before moving onto the second copy's update. During boot, they are only used if the MD5 checksum is good. This ensures that you are booting a coherent image always.</p> http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/477990#477990 6 Answer by InSciTek Jeff for What's the coolest startup programmer job title? InSciTek Jeff 2009-01-25T17:55:17Z 2009-01-25T17:55:17Z <p>Bit Director</p> http://stackoverflow.com/questions/471618/subversion-merging-changes-from-a-different-repository/471731#471731 2 Answer by InSciTek Jeff for Subversion merging changes from a different repository InSciTek Jeff 2009-01-23T03:02:13Z 2009-01-23T19:24:39Z <p>The vendor branches link you provided does effectively describe the process of what you want to do. It is a perfect solution relative to allowing you to do a straight update (import) of the vendor branch, and then as you allude to, will then allow you to merge the vendor's updates in with your changes in the main development branch.</p> <p>The problem is that Subversion really doesn't provide direct support for file renames and moves of files between directories for the successive update from the vendor code because you are just getting snapshots of the source files' content....something needs to run the commands into the version system to indicate what changes are being made to the tree of file names that make up the new version. This is the purpose of the svn_load_dirs.pl script process. It helps you to get your version history manipulated around to match up the branches so that you can then proceed with the merge. If the vendor didn't rename and/or move files around between versions you imported, you would not have this problem.</p> <p>In any case, the process described there is what you/need to do.</p> http://stackoverflow.com/questions/32397/popularity-algorithm/306236#306236 Comment by InSciTek Jeff on Popularity algorithm InSciTek Jeff 2009-11-16T03:23:08Z 2009-11-16T03:23:08Z @Ofri - I agree. The absolute value part of this is wrong I think. My answer (after fixing a typo you pointed out) is the intended answer. http://stackoverflow.com/questions/32397/popularity-algorithm/32399#32399 Comment by InSciTek Jeff on Popularity algorithm InSciTek Jeff 2009-11-16T03:20:57Z 2009-11-16T03:20:57Z @Ofri Raviv - Good catch! - You are right, the Z formula should have been less than &quot;1&quot; not less than &quot;0&quot;. A typo that has been there for about 11 months and you are the first to point it out! - Thanks!! http://stackoverflow.com/questions/1257413/iterate-over-pairs-in-a-list-circular-fashion-in-python/1257723#1257723 Comment by InSciTek Jeff on Iterate over pairs in a list (circular fashion) in Python InSciTek Jeff 2009-08-11T00:54:50Z 2009-08-11T00:54:50Z +1 - Personally, I like this solution much better than the 'yield' based solutions. http://stackoverflow.com/questions/24270/whats-the-point-of-oop/24308#24308 Comment by InSciTek Jeff on What's the point of OOP? InSciTek Jeff 2009-06-26T00:38:10Z 2009-06-26T00:38:10Z @Jonas - To your &quot;a bunch of C functions&quot; --- I agree that they can separate an interface from an implementation, and at that point it IS starting to be OOP. If the example continues on to define a C struct that the API operates on, you've basically created encapsulation (especially if the API operates opaquely on the structure)...and then it really is OOP in C. http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16/861084#861084 Comment by InSciTek Jeff on How to convert an arbitrary large integer from base 10 to base 16? InSciTek Jeff 2009-05-14T12:35:40Z 2009-05-14T12:35:40Z Nice solution. One &quot;optimization&quot; relative to memory use would be to use bytes (char or unsigned char) for each digit instead of full integers. http://stackoverflow.com/questions/855544/is-there-a-way-to-flush-a-posix-socket/855937#855937 Comment by InSciTek Jeff on Is there a way to flush a POSIX socket? InSciTek Jeff 2009-05-13T20:09:05Z 2009-05-13T20:09:05Z I don't think you need a second socket....it would seem reasonable that the far end could send something back on the same socket, no? http://stackoverflow.com/questions/857070/how-to-convert-an-arbitrary-large-integer-from-base-10-to-base-16 Comment by InSciTek Jeff on How to convert an arbitrary large integer from base 10 to base 16? InSciTek Jeff 2009-05-13T12:08:02Z 2009-05-13T12:08:02Z @S.Lott - That was my immediate thought too http://stackoverflow.com/questions/855544/is-there-a-way-to-flush-a-posix-socket/855597#855597 Comment by InSciTek Jeff on Is there a way to flush a POSIX socket? InSciTek Jeff 2009-05-13T01:21:04Z 2009-05-13T01:21:04Z I don't see any reason why disabling the Nagle algorithm &quot;is generally a terrible idea&quot;. If you know what it does, there are many application protocol situations where disabling Nagle is exactly what you want to do. I suspect you haven't had a situation where you really needed to do that or you don't understand what it really does. In other words, this feature is there for a reason and it can also be disabled for a very good reason. http://stackoverflow.com/questions/811424/gcc-mips-32-calling-conventions-stack-frame-definition/811680#811680 Comment by InSciTek Jeff on GCC MIPS-32 Calling Conventions / Stack Frame Definition InSciTek Jeff 2009-05-01T17:38:54Z 2009-05-01T17:38:54Z Thanks for the references. I have actually looked at the generated code and most of it I have figured out, but it is hard to know I actually have the general case well defined for all the various parameter types and combination, etc. http://stackoverflow.com/questions/60871/how-to-solve-memory-fragmentation/61061#61061 Comment by InSciTek Jeff on How to solve Memory Fragmentation InSciTek Jeff 2009-04-25T20:44:47Z 2009-04-25T20:44:47Z @Waylon Flinn - Creating sub heaps is very common solution to memory fragmentation problems in embedded systems. Alternatively, many embedded systems attempt to solve such problems by allocating as much as possible up front and never freeing such longer living objects....in effect static allocation, at least to some extent. Not a bad approach if you have enough memory to dedicate to specific sub-systems for the life of the system. http://stackoverflow.com/questions/671607/multithreading-or-multiprocessing Comment by InSciTek Jeff on multithreading or multiprocessing InSciTek Jeff 2009-03-22T21:03:18Z 2009-03-22T21:03:18Z I am not sure you are providing enough information about your objective/requirements to offer an opinion on this http://stackoverflow.com/questions/190681/when-is-loop-unwinding-effective/190698#190698 Comment by InSciTek Jeff on When is loop unwinding effective? InSciTek Jeff 2009-03-18T23:26:29Z 2009-03-18T23:26:29Z While clever, I think Duff's device is bad code construction. There is no real speed advantage of his structure relative to the switch statement. Two consecutive loops, one unrolled and the other not to handle the round-off is WAY more self evident and doesn't depend on odd syntax possibilities of C http://stackoverflow.com/questions/433105/exactly-how-fast-are-modern-cpus/480631#480631 Comment by InSciTek Jeff on Exactly how "fast" are modern CPUs? InSciTek Jeff 2009-03-09T18:17:38Z 2009-03-09T18:17:38Z Perhaps a better example of worst case being somewhat unbounded is a data access to a page that needs to be swapped in. ie: A virtual memory page miss. Aside from that, any instruction completion might be kind of long due to factors mentioned, but I think those have well bounded upper limits. http://stackoverflow.com/questions/433105/exactly-how-fast-are-modern-cpus/482398#482398 Comment by InSciTek Jeff on Exactly how "fast" are modern CPUs? InSciTek Jeff 2009-03-09T18:13:31Z 2009-03-09T18:13:31Z Mis-predicted branches is a consideration but the hit in cost I would not consider as being &quot;really huge&quot;. For example, a data miss on both L1 &amp; L2 cache is a much larger hit. Usually, the prediction miss is about the same as instruction pipeline's depth. ie: A pipeline restart is needed. http://stackoverflow.com/questions/606879/how-do-i-access-an-individual-character-from-an-array-of-strings-in-c/606885#606885 Comment by InSciTek Jeff on How do I access an individual character from an array of strings in c? InSciTek Jeff 2009-03-03T23:10:11Z 2009-03-03T23:10:11Z @sdellysse - Yes! - In fact, not just pointers to pointers, but any pointer can be indexed and de-referenced using array notation. I added the details to my answer to cover your point and @Binary Worrier's as well.