User Justin Poliey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T22:58:26Z http://stackoverflow.com/feeds/user/6967 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1883467/is-there-a-simple-alternative-to-readline 1 Is there a simple alternative to Readline? Justin Poliey 2009-12-10T19:44:48Z 2009-12-10T20:07:45Z <p>On a project I'm working on, I'm trying to make it accept user commands and provide history with the up arrow. I'm aiming to keep this project free of dependencies, and I don't want to have to require people to also install the readline development files just to compile my project. Does anyone know of a simple drop-in replacement for GNU Readline that provides only simple functionality?</p> http://stackoverflow.com/questions/1583624/making-things-available-only-inside-ruby-blocks 1 Making things available only inside Ruby blocks Justin Poliey 2009-10-18T00:47:08Z 2009-10-18T01:12:04Z <p>Is there any way to make methods and functions only available inside blocks? What I'm trying to do:</p> <pre><code>some_block do available_only_in_block is_this_here? okay_cool end </code></pre> <p>But the <code>is_this_here?</code>, <code>okay_cool</code>, etc. only being accessible inside that block, not outside it. Got any ideas?</p> http://stackoverflow.com/questions/1442086/can-i-delete-by-attribute-in-amazon-simpledb-without-specifying-an-itemname 0 Can I delete by attribute in Amazon SimpleDB without specifying an ItemName? Justin Poliey 2009-09-18T00:45:06Z 2009-09-18T03:36:14Z <p>Can I delete by attribute in SimpleDB without providing an ItemName parameter in the query string? The way I store my data is the item names are UUIDs, so I don't know the UUID of the data I want to delete. Is there a way to just specify an attribute and have it delete all items with that attribute?</p> http://stackoverflow.com/questions/1346127/can-a-range-be-matched-in-scala 5 Can a range be matched in Scala? Justin Poliey 2009-08-28T10:18:30Z 2009-08-28T10:48:17Z <p>Is it possible to match a range of values in Scala?</p> <p>For example:</p> <pre><code>val t = 5 val m = t match { 0 until 10 =&gt; true _ =&gt; false } </code></pre> <p><code>m</code> would be <code>true</code> if <code>t</code> was between 0 and 10, but false otherwise. This little bit doesn't work of course, but is there any way to achieve something like it?</p> http://stackoverflow.com/questions/1280742/lightweight-rich-text-editor/1280761#1280761 2 Answer by Justin Poliey for Lightweight Rich Text Editor Justin Poliey 2009-08-15T00:03:12Z 2009-08-15T00:03:12Z <p>The most lightweight way to go would be to roll your own. The simplest way to do it would be to use Javascript to react to changes to a <code>&lt;textarea&gt;</code>, and then update a <code>&lt;div&gt;</code> underneath it with the Markdown translated. A good Markdown implementation in Javascript is <a href="http://attacklab.net/showdown/" rel="nofollow">Showdown</a>.</p> http://stackoverflow.com/questions/1280178/php-methods-defined-outside-class/1280715#1280715 0 Answer by Justin Poliey for php methods defined outside class? Justin Poliey 2009-08-14T23:47:49Z 2009-08-14T23:47:49Z <p>Here is a terrible, ugly, hack that should never be used. But, you asked for it!</p> <pre><code>class Bar { function __call($name, $args) { call_user_func_array(sprintf('%s_%s', get_class($this), $name), array_merge(array($this), $args)); } } function Bar_foo($this) { echo sprintf("Simulating %s::foo\n", get_class($this)); } $bar = new Bar(); $bar-&gt;foo(); </code></pre> <p>What have I done? Anyway, to add new methods, just prefix them with the name of the class and an underscore. The first argument to the function is a reference to <code>$this</code>.</p> http://stackoverflow.com/questions/899665/ruby-dsl-domain-specific-language-repositories-examples/899696#899696 1 Answer by Justin Poliey for Ruby DSL (Domain Specific Language) repositories, examples Justin Poliey 2009-05-22T19:55:51Z 2009-05-22T19:55:51Z <p>Rake and Rack are some good examples of DSL's. If you want some more examples, check these out:</p> <ul> <li><a href="http://sinatrarb.com" rel="nofollow">Sinatra</a> is a very popular DSL for building web applications, and it's open source on GitHub.</li> <li><a href="http://github.com/cjohansen/twibot/tree/master" rel="nofollow">Twibot</a> is a newer DSL inspired by Sinatra that lets you create Twitter bots that automatically respond to messages and replies.</li> </ul> <p>If you want to get started on making your own, here's an excellent tutorial called <a href="http://www.jroller.com/rolsen/entry/building%5Fa%5Fdsl%5Fin%5Fruby" rel="nofollow">Building a DSL in Ruby</a>.</p> http://stackoverflow.com/questions/897517/upload-text-as-file-with-post-multipart-form-data-using-php-and-curl/897705#897705 1 Answer by Justin Poliey for Upload text as file with POST (multipart/form-data) using php and curl Justin Poliey 2009-05-22T12:59:38Z 2009-05-22T12:59:38Z <p>After the call to <code>fwrite</code>, add a call to <code>rewind($fp)</code>. After the <code>fwrite</code>, the file pointer is at the end of the temp stream. If you call <code>rewind</code> it resets it to the beginning. Here's a quick proof from a PHP session:</p> <pre> php > $fp = fopen("php://temp", "r+"); php > fputs($fp, "&lt;xml&gt;some xml&lt;/xml&gt;\n"); php > echo stream_get_contents($fp); php > rewind($fp); php > echo stream_get_contents($fp); &lt;xml&gt;some xml&lt;/xml&gt; php > exit </pre> <p>After the first echo <code>stream_get_contents</code>, nothing was echoed. After the <code>rewind</code>, the second echo of <code>stream_get_contents</code> showed the XML.</p> http://stackoverflow.com/questions/897550/php-security/897582#897582 2 Answer by Justin Poliey for php security Justin Poliey 2009-05-22T12:22:47Z 2009-05-22T12:22:47Z <p>Yes, you do. Just because you or I can't immediately think of a way to take advantage of that little bit of code doesn't mean a more clever person can't. What you want to do is make sure that the redirect is going to a page that you deem accessible. Even this simple validation could work:</p> <pre><code>$safe_pages = array('index.php', 'login.php', 'signup.php'); if (in_array($page, $safe_pages)) { header("Location: $page"); } else { echo 'That page is not accessible.'; } </code></pre> http://stackoverflow.com/questions/896728/how-to-use-twitter-api-with-http-basic-auth/896797#896797 2 Answer by Justin Poliey for How to use twitter api with "http basic auth"? Justin Poliey 2009-05-22T08:04:35Z 2009-05-22T08:04:35Z <p>Whenever you want to use HTTP basic auth with anything, if you want to ignore the actual implementation and HTTP headers, just use <a href="http://us.php.net/curl" rel="nofollow">cURL</a>. Here's a simple example in PHP, cURL is available in other languages too:</p> <pre><code>&lt;?php $ch = curl_init(); // Sets the URL cURL will open curl_setopt($ch, CURLOPT_URL, 'http://twitter.com/statuses/user_timeline.xml?screen_name=al3x'); // Here's the HTTP auth // The 3rd argument is your Twitter username and password joined with a colon curl_setopt($ch, CURLOPT_USERPWD, 'username:password'); // Makes curl_exec() return server response curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Lately the Twitter API expects an Expect header. It's a mystery curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:')); // And here's the result XML $twitter_xml = curl_exec($curl_handle); curl_close($ch); ?&gt; </code></pre> <p>And then <code>$twitter_xml</code> will contain the XML of al3x's public timeline. As far as rate limiting goes, ceejayoz already answered that pretty well.</p> http://stackoverflow.com/questions/832017/what-tools-do-web-developers-use-with-php-ruby-on-rails-python-etc/833077#833077 0 Answer by Justin Poliey for What tools do web developers use with PHP, Ruby on Rails, Python, etc? Justin Poliey 2009-05-07T05:57:39Z 2009-05-07T05:57:39Z <p><strong>Database</strong> MySQL, CouchDB, SQLite</p> <p><strong>Source Control</strong> Git</p> <p><strong>Editor</strong> <a href="http://caladbolg.net/textadept" rel="nofollow">TextAdept</a>, E, vim</p> <p><strong>Frameworks</strong> CakePHP, Ramaze</p> <p><strong>Debugging</strong> Error messages? :(</p> http://stackoverflow.com/questions/821524/what-are-phps-advantages-over-ruby-on-rails-and-django/821661#821661 11 Answer by Justin Poliey for What are PHP's advantages over Ruby on Rails and Django? Justin Poliey 2009-05-04T19:44:25Z 2009-05-04T19:44:25Z <p>There are a few advantages of PHP. One is the ease of deployment, you write your script and upload. Done.</p> <p>Another is the huge function library, with support for SQL databases, JSON, XML parsing, cURL, calendar calculations, all libraries to make the life of the developer easier.</p> <p>PHP itself is a template system. That's why I never understood the need to use things like Smarty, with the alternate colon syntax.</p> <pre><code>&lt;?php $fruits = array('apple', 'orange', 'banana'); ?&gt; &lt;ul&gt; &lt;?php foreach($fruits as $fruit): ?&gt; &lt;li&gt;&lt;?php echo $fruit; ?&gt;&lt;/li&gt; &lt;?php endforeach; ?&gt; &lt;/ul&gt; </code></pre> <p>PHP also doesn't force a design pattern on you. If you'd like to use MVC, go for it. There are a few frameworks that allow you to so. On the other hand, you can write a single-file script in 10 minutes if you really need to. It's about flexibility.</p> <p>On top of all that, there's the availability of years worth of code, tutorials, examples, and experienced people to go to for help.</p> http://stackoverflow.com/questions/529334/how-to-dynamically-redirect-www-based-urls-to-non-www-urls-with-multiple-domains/529403#529403 0 Answer by Justin Poliey for How to dynamically redirect www-based URLs to non-www URLs with multiple domains in same VirtualHost Justin Poliey 2009-02-09T19:00:50Z 2009-02-09T19:00:50Z <p>You can have multiple VirtualHosts in a configuration file, so you should change your config to this:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName domain1.com ServerAlias www.domain1.com &lt;/VirtualHost&gt; &lt;VirtualHost *:80&gt; ServerName domain2.com ServerAlias www.domain2.com &lt;/VirtualHost&gt; </code></pre> <p>You can add another VirtualHost for each domain you want to do.</p> http://stackoverflow.com/questions/455800/does-php-feature-short-hand-syntax-for-objects/455814#455814 0 Answer by Justin Poliey for Does PHP feature short hand syntax for objects? Justin Poliey 2009-01-18T20:15:13Z 2009-01-18T20:15:13Z <p>There is no object shorthand in PHP, but you can use Javascript's exact syntax, provided you use the <a href="http://us.php.net/json_encode" rel="nofollow">json_encode</a> and <a href="http://us.php.net/json_decode" rel="nofollow">json_decode</a> functions.</p> http://stackoverflow.com/questions/143296/problem-with-hover-in-ie7/144625#144625 4 Answer by Justin Poliey for Problem with :hover in IE7 Justin Poliey 2008-09-27T22:26:02Z 2008-09-27T22:26:02Z <p>IE7 won't allow you to apply <code>:hover</code> pseudo-classes to non-anchor elements unless you explicitly specify a doctype. Just add a doctype declaration to your page and it should work perfectly.</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; </code></pre> <p>More on IE7/quirks mode can be found on <a href="http://www.bernzilla.com/item.php?id=762" rel="nofollow">this blog post</a>.</p> http://stackoverflow.com/questions/116949/what-is-your-preferred-tool-stack-for-php-development-in-the-windows-environment/116970#116970 1 Answer by Justin Poliey for What is your preferred tool stack for PHP development in the Windows Environment? Justin Poliey 2008-09-22T19:30:01Z 2008-09-22T19:30:01Z <p>It took me a while to find Windows tools that I liked too.</p> <p>For my editor, I use <a href="http://www.e-texteditor.com/" rel="nofollow">E</a> which is an imitation of TextMate for Windows. For source control, I use <a href="http://git.or.cz/" rel="nofollow">git</a>. It's a little annoying to get set up at first, but I prefer it to all of the other systems. <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysGit</a> is an excellent project that will help you get up and running on Windows. For hosting, you can use <a href="http://www.github.com" rel="nofollow">GitHub</a>.</p> http://stackoverflow.com/questions/116819/regular-expression-to-exclude-set-of-keywords/116862#116862 8 Answer by Justin Poliey for Regular Expression to exclude set of Keywords Justin Poliey 2008-09-22T19:14:08Z 2008-09-22T19:14:08Z <p>Rather than negating the result within the expression, you should do it in your code. That way, the expression becomes pretty simple.</p> <pre><code>\b(boon\.ini|http)\b </code></pre> <p>Would return <code>true</code> if boon.ini or http was anywhere in your string. It won't match words like httpd or httpxyzzy because of the <code>\b</code>, or word boundaries. If you want, you could just remove them and it will match those too. To add more keywords, just add more pipes.</p> <pre><code>\b(boon\.ini|http|foo|bar)\b </code></pre> http://stackoverflow.com/questions/116754/best-css-reset/116784#116784 17 Answer by Justin Poliey for Best css reset Justin Poliey 2008-09-22T18:59:40Z 2008-09-22T18:59:40Z <p>I use Eric Meyer's <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow">CSS reset</a>, as do many other people. It's even the reset script that <a href="http://www.blueprintcss.org" rel="nofollow">Blueprint CSS</a> uses. Yahoo also has one, <a href="http://developer.yahoo.com/yui/base/" rel="nofollow">Base CSS</a>. I myself am a fan of Blueprint. There's not much of a difference between these kits, because they all do pretty much the same thing: apply standard rules to elements, and eliminate cross-browser inconsistencies.</p> http://stackoverflow.com/questions/114586/smart-design-of-a-math-parser/114601#114601 16 Answer by Justin Poliey for Smart design of a math parser? Justin Poliey 2008-09-22T12:37:46Z 2008-09-22T12:37:46Z <p>A pretty good approach would involve two steps. The first step involves <a href="http://scriptasylum.com/tutorials/infix_postfix/algorithms/infix-postfix/index.htm" rel="nofollow">converting the expression from infix to postfix</a> notation. Once that's done, it's pretty trivial to write a <a href="http://scriptasylum.com/tutorials/infix_postfix/algorithms/postfix-evaluation/index.htm" rel="nofollow">postfix evaluator</a>.</p> http://stackoverflow.com/questions/114543/how-to-center-div-in-div/114549#114549 19 Answer by Justin Poliey for How to center DIV in DIV? Justin Poliey 2008-09-22T12:29:07Z 2008-09-22T12:29:07Z <p>You can apply this CSS to the inner div:</p> <pre><code>#inner { width: 50%; margin: auto; } </code></pre> <p>Of course, you don't have to set the width to 50%. Any width less than the containing div will work. The <code>margin: auto</code> is what does the actual centering.</p> http://stackoverflow.com/questions/114501/how-to-set-the-background-position-to-an-absolute-distance-starting-from-right/114522#114522 2 Answer by Justin Poliey for How to set the background-position to an absolute distance, starting from right? Justin Poliey 2008-09-22T12:23:39Z 2008-09-22T12:23:39Z <p>There are a few ways you can do this.</p> <ol> <li><p>Do the math yourself, if possible. You already know the dimensions of your image. If you know the dimensions of the div, you can just put the image at (div width - image width - 10, div height - image height - 10).</p></li> <li><p>Use Javascript to do the heavy lifting for you. Pretty much the same method as above, except you don't need to know the dimensions of the div itself. Javascript can tell you.</p></li> <li><p>A more hackish way would be to put a 10px transparent border around the top and right of your image, and set the position to <code>top right</code>.</p></li> </ol> http://stackoverflow.com/questions/114214/class-method-differences-in-python-bound-unbound-and-static/114232#114232 4 Answer by Justin Poliey for Class method differences in Python: bound, unbound and static Justin Poliey 2008-09-22T10:56:27Z 2008-09-22T11:08:33Z <p>When you call a class member, Python automatically uses a reference to the object as the first parameter. The variable <code>self</code> actually means nothing, it's just a coding convention. You could call it <code>gargaloo</code> if you wanted. That said, the call to <code>method_two</code> would raise a <code>TypeError</code>, because Python is automatically trying to pass a parameter (the reference to its parent object) to a method that was defined as having no parameters.</p> <p>To actually make it work, you could append this to your class definition:</p> <pre><code>method_two = staticmethod(method_two) </code></pre> <p>or you could use the <code>@staticmethod</code> <a href="http://docs.python.org/ref/function.html" rel="nofollow">function decorator</a>.</p> http://stackoverflow.com/questions/112093/background-color-stretches-accross-entire-width-of-ul/112106#112106 8 Answer by Justin Poliey for Background color stretches accross entire width of ul Justin Poliey 2008-09-21T20:51:51Z 2008-09-21T20:51:51Z <p>The a element is an inline element, meaning it only applies to the text it encloses. If you want the background color to stretch across horizontally, apply the selected class to a block level element. Applying the class to the li element should work fine.</p> <p>Alternatively, you could add this to the selected class' CSS:</p> <pre><code>display: block; </code></pre> <p>Which will make the a element display like a block element.</p> http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/109405#109405 7 Answer by Justin Poliey for Can you do Desktop Development using JavaScript? Justin Poliey 2008-09-20T21:09:54Z 2008-09-20T21:09:54Z <p>Yes, with <a href="http://www.adobe.com/products/air/" rel="nofollow">Adobe AIR</a>. Adobe AIR lets you make desktop applications with Javascript, Flex, or Flash.</p> http://stackoverflow.com/questions/79960/how-to-truncate-a-string-in-php-to-the-word-closest-to-a-certain-number-of-charac/80030#80030 0 Answer by Justin Poliey for How to Truncate a string in PHP to the word closest to a certain number of characters? Justin Poliey 2008-09-17T04:33:57Z 2008-09-17T04:59:08Z <p>I would use the preg_match function to do this, as what you want is a pretty simple expression.</p> <pre><code>$matches = array(); $result = preg_match("/^(.{1,199})[\s]/i", $text, $matches); </code></pre> <p>The expression means "match any substring starting from the beginning of length 1-200 that ends with a space." The result is in $result, and the match is in $matches. That takes care of your original question, which is specifically ending on any space. If you want to make it end on newlines, change the regular expression to:</p> <pre><code>$result = preg_match("/^(.{1,199})[\n]/i", $text, $matches); </code></pre> http://stackoverflow.com/questions/75134/how-to-make-jquery-effects-run-in-sequence-not-simultaneously 3 How to make jQuery effects run in sequence, not simultaneously? Justin Poliey 2008-09-16T18:00:40Z 2008-09-16T18:10:27Z <p>How do I have two effects in jQuery run in sequence, not simultaneously? Take this piece of code for example:</p> <pre><code>$("#show-projects").click(function() { $(".page:visible").fadeOut("normal"); $("#projects").fadeIn("normal"); }); </code></pre> <p>The fadeOut and the fadeIn run simultaneously, how do I make them run one after the other?</p> http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows/62828#62828 0 Answer by Justin Poliey for How check if given string is legal (allowed) file name under Windows? Justin Poliey 2008-09-15T13:23:55Z 2008-09-15T13:23:55Z <p>Windows filenames are pretty unrestrictive, so really it might not even be <em>that</em> much of an issue. The characters that are disallowed by Windows are:</p> <pre><code>\ / : * ? " &lt; &gt; | </code></pre> <p>You could easily write an expression to check if those characters are present. A better solution though would be to try and name the files as the user wants, and alert them when a filename doesn't stick.</p> http://stackoverflow.com/questions/62694/how-do-i-start-working-in-open-source-projects/62740#62740 0 Answer by Justin Poliey for How do I start working in open source projects? Justin Poliey 2008-09-15T13:14:37Z 2008-09-15T13:14:37Z <p>There are a number of ways to get involved in open source projects. The first thing you should do though is become familiar with versioning systems like Git and SVN. After you're comfortable working with them, either start your own small project on <a href="http://www.github.com" rel="nofollow" title="GitHub">GitHub</a> or <a href="http://code.google.com" rel="nofollow" title="Google Code">Google Code</a> check out a larger project and see how you can help. It's all about learning, just poke around and experiment.</p> http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html/62670#62670 0 Answer by Justin Poliey for What's the best way to separate PHP Code and HTML? Justin Poliey 2008-09-15T13:07:52Z 2008-09-15T13:07:52Z <p>You can use a template system like <a href="http://www.smarty.net/" rel="nofollow" title="Smarty">Smarty</a> or you could use a framework like <a href="http://www.cakephp.org" rel="nofollow">CakePHP</a>.</p> http://stackoverflow.com/questions/1621774/which-programming-language-is-manageable-by-an-11-year-old-kid/1622759#1622759 Comment by Justin Poliey on Which programming language is manageable by an 11 year old kid? Justin Poliey 2009-11-04T07:54:12Z 2009-11-04T07:54:12Z Negative vote definitely not justified. Ruby does have its warts and horns, but it's definitely possible to write clear and simple Ruby. Plus, the <code>times</code>, <code>upto</code>, etc. methods more closely complement the way people (not just children) think. http://stackoverflow.com/questions/1583624/making-things-available-only-inside-ruby-blocks/1583639#1583639 Comment by Justin Poliey on Making things available only inside Ruby blocks Justin Poliey 2009-10-18T01:17:23Z 2009-10-18T01:17:23Z This is exactly what I was looking for, thanks a lot http://stackoverflow.com/questions/1583624/making-things-available-only-inside-ruby-blocks Comment by Justin Poliey on Making things available only inside Ruby blocks Justin Poliey 2009-10-18T00:59:28Z 2009-10-18T00:59:28Z They're methods. http://stackoverflow.com/questions/1442086/can-i-delete-by-attribute-in-amazon-simpledb-without-specifying-an-itemname/1442471#1442471 Comment by Justin Poliey on Can I delete by attribute in Amazon SimpleDB without specifying an ItemName? Justin Poliey 2009-09-18T05:02:31Z 2009-09-18T05:02:31Z Yeah, I don't want to do 2 queries so I switched away from UUIDs. This is exactly what I was looking for though, thanks! http://stackoverflow.com/questions/1280742/lightweight-rich-text-editor/1280761#1280761 Comment by Justin Poliey on Lightweight Rich Text Editor Justin Poliey 2009-08-15T00:45:54Z 2009-08-15T00:45:54Z My apologies, from the description it looked like you wanted something like Stack Overflow's, where the textarea shows the markdown and the div shows the preview. Here's a nice FCKeditor clone, which is supposedly lightweight: <a href="http://tinymce.moxiecode.com/examples/simple.php" rel="nofollow">tinymce.moxiecode.com/examples/simple.php</a> Not that I use it or anything. http://stackoverflow.com/questions/1280767/how-do-i-run-php-code-when-a-user-clicks-on-a-link/1280784#1280784 Comment by Justin Poliey on How do I run PHP code when a user clicks on a link? Justin Poliey 2009-08-15T00:12:18Z 2009-08-15T00:12:18Z No reason to downvote the guy just because he didn't use jQuery. Someone should probably edit the post to fix the link though. http://stackoverflow.com/questions/1280586/hunt-the-wumpus-room-connection/1280611#1280611 Comment by Justin Poliey on Hunt the Wumpus - Room Connection Justin Poliey 2009-08-14T23:24:49Z 2009-08-14T23:24:49Z If you make it so each room ends up with exactly 3 exits using this approach, the dodecahedral shape will be a side-effect. http://stackoverflow.com/questions/1099596/formatting-php-echo/1099711#1099711 Comment by Justin Poliey on Formatting PHP Echo Justin Poliey 2009-07-08T18:12:26Z 2009-07-08T18:12:26Z And then add overflow: auto CSS if you really need those scroll bars ;) http://stackoverflow.com/questions/1099596/formatting-php-echo Comment by Justin Poliey on Formatting PHP Echo Justin Poliey 2009-07-08T18:11:42Z 2009-07-08T18:11:42Z By frequent outputs do you mean a lot of output, like debugging output? http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python/293633#293633 Comment by Justin Poliey on Print in terminal with colors using python ? Justin Poliey 2009-06-18T08:37:00Z 2009-06-18T08:37:00Z I didn't know about this before, thanks a lot! http://stackoverflow.com/questions/897541/how-to-change-title-attribute-in-a-tag-using-javascript/897549#897549 Comment by Justin Poliey on How to change title attribute in <a> tag using JavaScript? Justin Poliey 2009-05-22T12:25:05Z 2009-05-22T12:25:05Z He's not using jQuery though, he's using straight DOM manipulation. Why is anybody's guess. http://stackoverflow.com/questions/396594/force-php-to-error-on-non-declared-variables-in-objects/396671#396671 Comment by Justin Poliey on Force PHP to error on non-declared variables? In objects? Justin Poliey 2008-12-28T22:36:27Z 2008-12-28T22:36:27Z Upvoted on faith you'll fix the code so that it works. http://stackoverflow.com/questions/175385/what-is-the-preferred-way-to-do-a-css-rollover/175422#175422 Comment by Justin Poliey on What is the preferred way to do a CSS rollover? Justin Poliey 2008-10-06T18:16:07Z 2008-10-06T18:16:07Z You can get the <code>:hover</code> pseudoclass to work on any element in IE6 by specifying a doctype. http://stackoverflow.com/questions/161056/css-editor-which-expands-one-line-declarations-on-editing Comment by Justin Poliey on CSS editor which expands one-line declarations on editing Justin Poliey 2008-10-02T06:26:12Z 2008-10-02T06:26:12Z I've never heard of that but that's a good thing to suggest to IDE developers http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157336#157336 Comment by Justin Poliey on Do you have a hobby development project? Justin Poliey 2008-10-02T06:22:36Z 2008-10-02T06:22:36Z Great game, I love the way it's coming out so far