User Justin Poliey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T22:58:26Zhttp://stackoverflow.com/feeds/user/6967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1883467/is-there-a-simple-alternative-to-readline1Is there a simple alternative to Readline?Justin Poliey2009-12-10T19:44:48Z2009-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-blocks1Making things available only inside Ruby blocksJustin Poliey2009-10-18T00:47:08Z2009-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-itemname0Can I delete by attribute in Amazon SimpleDB without specifying an ItemName?Justin Poliey2009-09-18T00:45:06Z2009-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-scala5Can a range be matched in Scala?Justin Poliey2009-08-28T10:18:30Z2009-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 => true
_ => 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#12807612Answer by Justin Poliey for Lightweight Rich Text EditorJustin Poliey2009-08-15T00:03:12Z2009-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><textarea></code>, and then update a <code><div></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#12807150Answer by Justin Poliey for php methods defined outside class?Justin Poliey2009-08-14T23:47:49Z2009-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->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#8996961Answer by Justin Poliey for Ruby DSL (Domain Specific Language) repositories, examplesJustin Poliey2009-05-22T19:55:51Z2009-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#8977051Answer by Justin Poliey for Upload text as file with POST (multipart/form-data) using php and curlJustin Poliey2009-05-22T12:59:38Z2009-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, "<xml>some xml</xml>\n");
php > echo stream_get_contents($fp);
php > rewind($fp);
php > echo stream_get_contents($fp);
<xml>some xml</xml>
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#8975822Answer by Justin Poliey for php securityJustin Poliey2009-05-22T12:22:47Z2009-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#8967972Answer by Justin Poliey for How to use twitter api with "http basic auth"? Justin Poliey2009-05-22T08:04:35Z2009-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><?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);
?>
</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#8330770Answer by Justin Poliey for What tools do web developers use with PHP, Ruby on Rails, Python, etc?Justin Poliey2009-05-07T05:57:39Z2009-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#82166111Answer by Justin Poliey for What are PHP's advantages over Ruby on Rails and Django?Justin Poliey2009-05-04T19:44:25Z2009-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><?php
$fruits = array('apple', 'orange', 'banana');
?>
<ul>
<?php foreach($fruits as $fruit): ?>
<li><?php echo $fruit; ?></li>
<?php endforeach; ?>
</ul>
</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#5294030Answer by Justin Poliey for How to dynamically redirect www-based URLs to non-www URLs with multiple domains in same VirtualHostJustin Poliey2009-02-09T19:00:50Z2009-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><VirtualHost *:80>
ServerName domain1.com
ServerAlias www.domain1.com
</VirtualHost>
<VirtualHost *:80>
ServerName domain2.com
ServerAlias www.domain2.com
</VirtualHost>
</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#4558140Answer by Justin Poliey for Does PHP feature short hand syntax for objects?Justin Poliey2009-01-18T20:15:13Z2009-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#1446254Answer by Justin Poliey for Problem with :hover in IE7Justin Poliey2008-09-27T22:26:02Z2008-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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
</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#1169701Answer by Justin Poliey for What is your preferred tool stack for PHP development in the Windows Environment?Justin Poliey2008-09-22T19:30:01Z2008-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#1168628Answer by Justin Poliey for Regular Expression to exclude set of KeywordsJustin Poliey2008-09-22T19:14:08Z2008-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#11678417Answer by Justin Poliey for Best css resetJustin Poliey2008-09-22T18:59:40Z2008-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#11460116Answer by Justin Poliey for Smart design of a math parser?Justin Poliey2008-09-22T12:37:46Z2008-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#11454919Answer by Justin Poliey for How to center DIV in DIV?Justin Poliey2008-09-22T12:29:07Z2008-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#1145222Answer by Justin Poliey for How to set the background-position to an absolute distance, starting from right?Justin Poliey2008-09-22T12:23:39Z2008-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#1142324Answer by Justin Poliey for Class method differences in Python: bound, unbound and staticJustin Poliey2008-09-22T10:56:27Z2008-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#1121068Answer by Justin Poliey for Background color stretches accross entire width of ulJustin Poliey2008-09-21T20:51:51Z2008-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#1094057Answer by Justin Poliey for Can you do Desktop Development using JavaScript?Justin Poliey2008-09-20T21:09:54Z2008-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#800300Answer by Justin Poliey for How to Truncate a string in PHP to the word closest to a certain number of characters?Justin Poliey2008-09-17T04:33:57Z2008-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-simultaneously3How to make jQuery effects run in sequence, not simultaneously?Justin Poliey2008-09-16T18:00:40Z2008-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#628280Answer by Justin Poliey for How check if given string is legal (allowed) file name under Windows?Justin Poliey2008-09-15T13:23:55Z2008-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>\ / : * ? " < > |
</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#627400Answer by Justin Poliey for How do I start working in open source projects?Justin Poliey2008-09-15T13:14:37Z2008-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#626700Answer by Justin Poliey for What's the best way to separate PHP Code and HTML?Justin Poliey2008-09-15T13:07:52Z2008-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#1622759Comment by Justin Poliey on Which programming language is manageable by an 11 year old kid?Justin Poliey2009-11-04T07:54:12Z2009-11-04T07:54:12ZNegative 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#1583639Comment by Justin Poliey on Making things available only inside Ruby blocksJustin Poliey2009-10-18T01:17:23Z2009-10-18T01:17:23ZThis is exactly what I was looking for, thanks a lothttp://stackoverflow.com/questions/1583624/making-things-available-only-inside-ruby-blocksComment by Justin Poliey on Making things available only inside Ruby blocksJustin Poliey2009-10-18T00:59:28Z2009-10-18T00:59:28ZThey're methods.http://stackoverflow.com/questions/1442086/can-i-delete-by-attribute-in-amazon-simpledb-without-specifying-an-itemname/1442471#1442471Comment by Justin Poliey on Can I delete by attribute in Amazon SimpleDB without specifying an ItemName?Justin Poliey2009-09-18T05:02:31Z2009-09-18T05:02:31ZYeah, 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#1280761Comment by Justin Poliey on Lightweight Rich Text EditorJustin Poliey2009-08-15T00:45:54Z2009-08-15T00:45:54ZMy 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#1280784Comment by Justin Poliey on How do I run PHP code when a user clicks on a link?Justin Poliey2009-08-15T00:12:18Z2009-08-15T00:12:18ZNo 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#1280611Comment by Justin Poliey on Hunt the Wumpus - Room ConnectionJustin Poliey2009-08-14T23:24:49Z2009-08-14T23:24:49ZIf 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#1099711Comment by Justin Poliey on Formatting PHP EchoJustin Poliey2009-07-08T18:12:26Z2009-07-08T18:12:26ZAnd then add overflow: auto CSS if you really need those scroll bars ;)http://stackoverflow.com/questions/1099596/formatting-php-echoComment by Justin Poliey on Formatting PHP EchoJustin Poliey2009-07-08T18:11:42Z2009-07-08T18:11:42ZBy 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#293633Comment by Justin Poliey on Print in terminal with colors using python ?Justin Poliey2009-06-18T08:37:00Z2009-06-18T08:37:00ZI 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#897549Comment by Justin Poliey on How to change title attribute in <a> tag using JavaScript?Justin Poliey2009-05-22T12:25:05Z2009-05-22T12:25:05ZHe'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#396671Comment by Justin Poliey on Force PHP to error on non-declared variables? In objects?Justin Poliey2008-12-28T22:36:27Z2008-12-28T22:36:27ZUpvoted 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#175422Comment by Justin Poliey on What is the preferred way to do a CSS rollover?Justin Poliey2008-10-06T18:16:07Z2008-10-06T18:16:07ZYou 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-editingComment by Justin Poliey on CSS editor which expands one-line declarations on editingJustin Poliey2008-10-02T06:26:12Z2008-10-02T06:26:12ZI've never heard of that but that's a good thing to suggest to IDE developershttp://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157336#157336Comment by Justin Poliey on Do you have a hobby development project?Justin Poliey2008-10-02T06:22:36Z2008-10-02T06:22:36ZGreat game, I love the way it's coming out so far