User Josh Segall - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:08:49Zhttp://stackoverflow.com/feeds/user/2659http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35677/what-is-the-best-architecture-to-bridge-to-xmpp7What is the best architecture to bridge to XMPP?Josh Segall2008-08-30T04:11:35Z2009-09-28T18:44:08Z
<p>If I have a separate system with its own concept of users and presence, what is the most appropriate architecture for creating a bridge to an XMPP server network? As far as I can tell there are three primary ways:</p>
<ol>
<li><p>Act as a server. This creates one touchpoint, but I fear it has implications for compatibility, and potentially creates complexity in my system for emulating a server.</p></li>
<li><p>Act as a clients. This seems to imply that I need one connection per user in my system, which just isn't going to scale well.</p></li>
<li><p>I've heard of an XMPP gateway protocol, but it's unclear if this is any better than the client solution. I also can't tell if this is standard or not.</p></li>
</ol>
<p>Any suggestions or tradeoffs would be appreciated. For example, would any of these solutions require running code inside the target XMPP server (not likely something I can do).</p>
http://stackoverflow.com/questions/114611/what-is-the-best-unicode-library-for-c11What is the best unicode library for C?Josh Segall2008-09-22T12:40:41Z2009-08-04T17:30:12Z
<p>What is the best unicode library for C? Where "best" is defined by cross-platform support, compiler independence, and reasonable performance across a the most common languages in use.</p>
http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/106966#1069660Answer by Josh Segall for What's the best API you've ever used?Josh Segall2008-09-20T03:28:52Z2009-04-19T11:54:05Z<p>After using SDL, <a href="http://www.pygame.org/" rel="nofollow">PyGame</a> was a breath of fresh air.</p>
http://stackoverflow.com/questions/238071/what-is-the-simplest-way-to-format-a-timestamp-from-sql-in-php3What is the simplest way to format a timestamp from sql in php?Josh Segall2008-10-26T14:30:22Z2008-11-06T13:31:13Z
<p>What is the simplest, fastest way to complete the PHP code below such that the output is in a user-friendly format (e.g."October 27, 2006")? </p>
<pre><code>$result = mysql_query("SELECT my_timestamp FROM some_table WHERE id=42", $DB_CONN);
$row = mysql_fetch_array($result);
$formatted_date = ???($row['my_timestamp']);
echo $formatted_date;
</code></pre>
http://stackoverflow.com/questions/43076/how-do-you-know-if-you-can-use-a-patented-algorithm10How do you know if you can use a patented algorithm?Josh Segall2008-09-04T02:12:29Z2008-10-25T12:37:18Z
<p>I've been reading up on Sun's new <a href="http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-5419&yr=2008&track=javase" rel="nofollow">Garbage First</a> garbage collection algorithm, and was considering using it on a personal project. When googling for more information I found that it is patented, which raises the question if I could ever release my code. How can I tell whether this specific research is safe to learn from and use? Did Sun patent it to prevent others from using it or prevent others from claiming ownership? This also makes me worried about all of the other research papers on garbage collection I've read on citeseer or otherwise.</p>
http://stackoverflow.com/questions/215752/python-embedded-in-cpp-how-to-get-data-back-to-cpp/215772#2157720Answer by Josh Segall for Python embedded in CPP: how to get data back to CPPJosh Segall2008-10-19T00:19:55Z2008-10-19T00:19:55Z<p>You should be able to return the result from MyFunc, which would then end up in the variable you are currently calling "ignored". This eliminates the need to access it in any other way.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194475#194475152Answer by Josh Segall for What is the best comment in source code you have ever encountered?Josh Segall2008-10-11T19:23:56Z2008-10-11T19:23:56Z<p>From Java 1.2 SwingUtilities:</p>
<pre><code>doRun.run(); // ... "a doo run run".
</code></pre>
http://stackoverflow.com/questions/147454/why-is-using-a-wild-card-with-a-java-import-statement-bad/147532#1475320Answer by Josh Segall for Why is using a wild card with a Java import statement bad?Josh Segall2008-09-29T04:42:24Z2008-09-29T04:42:24Z<ol>
<li>It helps to identify classname conflicts: two classes in different packages that have the same name. This can be masked with the * import.</li>
<li>It makes dependencies explicit, so that anyone who has to read your code later knows what you meant to import and what you didn't mean to import.</li>
<li>It can make some compilation faster because the compiler doesn't have to search the whole package to identify depdencies, though this is usually not a huge deal with modern compilers.</li>
<li>The inconvenient aspects of explicit imports are minimized with modern IDEs. Most IDEs allow you to collapse the import section so it's not in the way, automatically populate imports when needed, and automatically identify unused imports to help clean them up.</li>
</ol>
<p>Most places I've worked that use any significant amount of Java make explicit imports part of the coding standard. I sometimes still use * for quick prototyping and then expand the import lists (some IDEs will do this for you as well) when productizing the code.</p>
http://stackoverflow.com/questions/146936/what-can-you-do-to-a-legacy-codebase-that-will-have-the-greatest-impact-on-improv/147094#1470942Answer by Josh Segall for What can you do to a legacy codebase that will have the greatest impact on improving the quality?Josh Segall2008-09-29T00:34:42Z2008-09-29T00:34:42Z<p>Good documentation. As someone who has to maintain and extend legacy code, that is the number one problem. It's difficult, if not downright dangerous to change code you don't understand. Even if you're lucky enough to be handed documented code, how sure are you that the documentation is right? That it covers all of the implicit knowledge of the original author? That it speaks to all of the "tricks" and edge cases? </p>
<p>Good documentation is what allows those other than the original author to understand, fix, and extend even bad code. I'll take hacked yet well-documented code that I can understand over perfect yet inscrutable code any day of the week.</p>
http://stackoverflow.com/questions/99389/is-there-a-good-reference-on-how-java-executes-bytecode/99404#994043Answer by Josh Segall for Is there a good reference on how java executes bytecode?Josh Segall2008-09-19T03:48:58Z2008-09-19T03:48:58Z<p>The canonical reference is the <a href="http://java.sun.com/docs/books/jvms/" rel="nofollow">JVM spec</a>. However, different JVMs can implement the spec in different ways. You can also check out the open source Java platform implementation, <a href="http://openjdk.java.net/" rel="nofollow">OpenJDK</a>.</p>
http://stackoverflow.com/questions/89710/what-fundamental-skills-are-needed-for-programming/90059#900590Answer by Josh Segall for What fundamental skills are needed for programming?Josh Segall2008-09-18T04:37:35Z2008-09-18T04:37:35Z<p>My favorite answer to this is described in <a href="http://www.google.com/search?q=computational+thinking" rel="nofollow">computational thinking</a>: thinking in multiple levels of abstraction simultaneously.</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/78662#786620Answer by Josh Segall for What is the single most effective thing you did to improve your programming skills?Josh Segall2008-09-17T00:28:30Z2008-09-17T00:28:30Z<p>Wrote a Scheme compiler in C. Not only did I have to learn Scheme inside and out, but I learned all about compilers, how code is executed on hardware, how garbage collectors work, among other things.</p>
http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer/58202#582024Answer by Josh Segall for How to Find that Rock Star Junior Developer?Josh Segall2008-09-12T02:36:03Z2008-09-12T02:36:03Z<p>Asking about their personal side projects is great, but I also like to ask: </p>
<p>"What do you think is the most interesting thing happening in computer science right now?"</p>
<p>Substitute CS with programming/technology/your company's specific area if you like. Even if they aren't doing anything amazing in side projects, you can tell how well they are following the industry or theory in a broad sense.</p>
<p>You can tell a lot by: </p>
<ol>
<li>What they choose to talk about</li>
<li>How passionate they are about it (you're asking about their interests, so they better get excited talking about it!)</li>
<li>How they keep up to date on that issue (I prefer this way of leading into what blogs, sites, magazines to read to stay current).</li>
<li>Whether they're dying to tell you 2 or 3 other topics they think are fascinating</li>
</ol>
http://stackoverflow.com/questions/49146/what-is-the-best-way-to-make-an-exe-file-from-a-python-program/49155#491557Answer by Josh Segall for What is the best way to make an .exe file from a python programJosh Segall2008-09-08T04:10:45Z2008-09-08T04:10:45Z<p><a href="http://www.py2exe.org/" rel="nofollow">py2exe</a> is probably what you want, but it only works on Windows. <a href="http://pyinstaller.python-hosting.com/" rel="nofollow">PyInstaller</a> works on Windows and Linux. <a href="http://pypi.python.org/pypi/py2app/" rel="nofollow">Py2app</a> works on the Mac.</p>
http://stackoverflow.com/questions/48088/returning-from-a-finally-block-in-java/48158#48158-4Answer by Josh Segall for Returning from a finally block in JavaJosh Segall2008-09-07T04:54:29Z2008-09-07T04:54:29Z<p>I can't think of any good use cases. You have to remember that Java was developed by programmers, not language theorists, so you can't really expect it to be wart-free.</p>
http://stackoverflow.com/questions/48144/what-are-advantages-of-bytecode-over-native-code/48156#481560Answer by Josh Segall for What are advantages of bytecode over native code?Josh Segall2008-09-07T04:50:06Z2008-09-07T04:50:06Z<p>Ideally you would have portable bytecode that compiles Just In Time to native code. I think the reason bytecode interpreters exist without JIT is due primarily to the practical fact that native code compilation adds complexity to a virtual machine. It takes time to build, debug, and maintain that additional component. Not everyone has the time or resources to make that commitment.</p>
<p>A secondary factor is safety. It's much easier to verify an interpreter won't crash than to guarantee the same for native code.</p>
<p>Third is performance. It can often take more time to generate machine code than to interpret bytecode for small pieces of code that only run once.</p>
http://stackoverflow.com/questions/48017/what-is-a-jump-table/48031#4803110Answer by Josh Segall for What is a jump table?Josh Segall2008-09-07T01:54:54Z2008-09-07T01:54:54Z<p>A jump table can be either an array of pointers to functions or an array of machine code jump instructions. If you have a relatively static set of functions (such as system calls or virtual functions for a class) then you can create this table once and call the functions using a simple index into the array. This would mean retrieving the pointer and calling a function or jumping to the machine code depending on the type of table used.</p>
<p>The benefits of doing this in embedded programming are:</p>
<ol>
<li>Indexes are more memory efficient than machine code or pointers, so there is a potential for memory savings in constrained environments.</li>
<li>For any particular function the index will remain stable and changing the function merely requires swapping out the function pointer.</li>
</ol>
<p>If does cost you a tiny bit of performance for accessing the table, but this is no worse than any other virtual function call.</p>
http://stackoverflow.com/questions/38019/whats-the-best-approach-to-naming-classes/48019#480192Answer by Josh Segall for What's the best approach to naming classes?Josh Segall2008-09-07T01:41:57Z2008-09-07T01:41:57Z<p>Josh Bloch's excellent talk about <a href="http://video.google.com/videoplay?docid=-3733345136856180693" rel="nofollow">good API design</a> has a few good bits of advice:</p>
<ul>
<li>Classes should do one thing and do it well.</li>
<li>If a class is hard to name or explain then it's probably not following the advice in the previous bullet point. </li>
<li>A class name should instantly communicate what the class is.</li>
<li>Good names drive good designs.</li>
</ul>
<p>If your problem is what to name exposed internal classes, maybe you should consolidate them into a larger class.</p>
<p>If your problem is naming a class that is doing a lot of different stuff, you should consider breaking it into multiple classes.</p>
<p>If that's good advice for a public API then it can't hurt for any other class.</p>
http://stackoverflow.com/questions/14279/how-to-estimate-the-length-of-a-programming-task/45100#451000Answer by Josh Segall for How to estimate the length of a programming taskJosh Segall2008-09-05T02:05:34Z2008-09-05T02:05:34Z<p>I've done a lot of "break down the task and estimate small pieces" methods, but surprisingly the most accurate method I've used is to base it on past history of similar efforts.</p>
<p>The most important part of using past history is to use actual historical data. Do not guess what it took to do something, but record how long it actually takes you and use that data to estimate new efforts. I do this at a fairly high level (efforts that take several months, not days or weeks) and it works, but having a critical mass of accurate historical data is key.</p>
<p>I think the reason small task breakdowns don't work all that well is that they don't take into account all of the other stuff that causes delay. In my experience I've seen process changes and unforeseen risks far outweigh the error of simple historical comparisons. Therefore should spend more of your estimating time forecasting known process changes (e.g. introduction of a new type of code review) and anticipating risks or uncertainties rather than breaking down the tasks to a minute level again. Multiply your estimates by a factor for risk, complexity, or change in order to account for these other items. </p>
http://stackoverflow.com/questions/38066/whats-your-post-mortem-meeting-format/38868#388683Answer by Josh Segall for What's your Post-Mortem meeting format?Josh Segall2008-09-02T05:20:31Z2008-09-02T05:20:31Z<p>Schedule post-mortems frequently, after a phase or a short cycle. Have them as close to the end of a phase as possible--don't wait or everyone will forget what happened.</p>
<p>Prepare a timeline of events for your phase and circulate before the meeting. Review it briefly to start the meeting to make sure nothing major was left out. This helps people remember and frames the discussion.</p>
<p>Keep the bulk of the meeting simple. Do the "what went right/what went wrong". Although ending on the "right" seems like it will make people feel better at the end of the meeting, resist the urge! Studies show that the right-first/wrong-last structure is better at eliciting the right information. </p>
<p>Don't try to solve any issues in the meeting. However, do try to parse what are root causes versus symptoms.</p>
<p>Pick a consensus top 5 issues to resolve for next time. Assign ownership (this is the most important step, or nothing will get done). Next time around review the issues you were supposed to have resolved.</p>
<p>Keep the meetings on the order of an hour long. If you have a large group (more than 15-20 people), consider splitting into multiple sessions. Anonymous questionnaires are good for those who may not be able to attend, are shy, or fear repercussions. That said, if you're managing this, make sure you don't shoot the messenger--you're going to get opinions, and all opinions are valid. That doesn't mean you have to give each opinion equal standing, but do look for trends that show a decline in morale.</p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/36644#366445Answer by Josh Segall for How to implement continuations?Josh Segall2008-08-31T05:02:30Z2008-08-31T05:02:30Z<p>A good summary is available in <a href="http://www.springerlink.com/content/h5808n962434j275/" rel="nofollow">Implementation Strategies for First-Class Continuations</a>, an article by Clinger, Hartheimer, and Ost. I recommend looking at Chez Scheme's implementation in particular.</p>
<p>Stack copying isn't that complex and there are a number of well-understood techniques available to improve performance. Using heap-allocated frames is also fairly simple, but you make a tradeoff of creating overhead for "normal" situation where you aren't using explicit continuations.</p>
<p>If you convert input code to continuation passing style (CPS) then you can get away with eliminating the stack altogether. However, while CPS is elegant it adds another processing step in the front end and requires additional optimization to overcome certain performance implications.</p>
http://stackoverflow.com/questions/35646/do-you-continue-development-in-a-branch-or-in-the-trunk/35661#356611Answer by Josh Segall for Do you continue development in a branch or in the trunk?Josh Segall2008-08-30T03:53:27Z2008-08-30T03:53:27Z<p>It depends on your situations. We use Perforce and have typically have several lines of development. The trunk is considered "gold" and all development happens on branches that get merged back to the mainline when they are stable enough to integrate. This allows rejection of features that don't make the cut and can provide solid incremental capability over time that independent projects/features can pick up.</p>
<p>There is integration cost to the merging and catching up to new features rolled into the trunk, but you're going to suffer this pain anyway. Having everyone develop on the trunk together can lead to a wild west situation, while branching allows you to scale and choose the points at which you'd like to take the bitter integration pills. We're currently scaled to over a hundred developers on a dozen projects, each with multiple releases using the same core components, and it works pretty well.</p>
<p>The beauty of this is that you can do this recursively: a big feature branch can be its own trunk with other branches coming off if it. Also, final releases get a new branch to give you a place to do stable maintenance.</p>
http://stackoverflow.com/questions/25403/is-a-college-university-degree-still-relevant/25700#2570017Answer by Josh Segall for Is a College/University Degree Still Relevant?Josh Segall2008-08-25T05:50:21Z2008-08-25T05:50:21Z<p>As an engineer and manager who reads resumes, interviews, and hires other engineers, I would say a degree definitely matters. All of the best engineers I've worked with have one (often a MS or PhD as well) <em>and</em> are also self-learners. </p>
<p>There are exceptions, of course. Specifically, if you are extremely motivated and have the ability to commit to learning computer science theory on your own, or if you just want <em>a</em> job and don't care to do anything really deep or interesting, then you can skip the the degree. I think you need it for anything bordering on research. Most of the other benefits of a degree (demonstrating competence, working in teams, etc) can be gained on the right job, but unless you really know where your career is going to take you and are confident that you won't need a degree, I highly recommend getting one.</p>
http://stackoverflow.com/questions/24812/recommendations-needed-for-good-ai-references/24815#248151Answer by Josh Segall for Recommendations needed for good AI referencesJosh Segall2008-08-24T02:47:36Z2008-08-24T02:47:36Z<p>I've always found <a href="http://www.gameai.com/" rel="nofollow">Steve Woodcock's Game AI site</a> to be a great reference. It includes discussion, source code, and pointers to books, conferences, etc.</p>