User Colonel Sponsz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T10:22:54Zhttp://stackoverflow.com/feeds/user/11651http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1757665/cleaner-way-to-translate-index-into-specified-string/1757733#17577330Answer by Colonel Sponsz for Cleaner way to translate index into specified string?Colonel Sponsz2009-11-18T17:34:11Z2009-11-18T17:34:11Z<p>This gives a trap for initial values of vocation not found in your list.</p>
<pre><code>$vocations = array(1=>"Sorcerer", 2=>"Druid", ...);
if (array_key_exists($vocation, $vocations)) {
$vocation = $vocations[$vocation];
} else {
$vocation = 'Not found';
}
</code></pre>
http://stackoverflow.com/questions/1188551/common-programming-mistakes-for-javascript-developers-to-avoid/1188572#118857212Answer by Colonel Sponsz for Common programming mistakes for JavaScript developers to avoid?Colonel Sponsz2009-07-27T14:42:30Z2009-07-27T15:42:44Z<p>Failing silently when JavaScript is disabled on the client.</p>
<p>Ideally we should all be using <a href="http://en.wikipedia.org/wiki/Progressive%5Fenhancement" rel="nofollow">progressive enhancement</a> so there is no loss of <em>core</em> functionality when JS isn't available.</p>
<ul>
<li>Edit: Sometimes some people have to use JavaScript for a task. If you do then put in a suitable <noscript> trap - even at page level. Don't just leave items that do nothing at all when you try to interact with them without JS.</li>
</ul>
http://stackoverflow.com/questions/1180161/php-frameworks-layout-dynamic-menu/1181757#11817570Answer by Colonel Sponsz for PHP Frameworks - Layout Dynamic MenuColonel Sponsz2009-07-25T09:43:47Z2009-07-25T09:43:47Z<p>Symfony can do what you are looking for using a mix of concepts.</p>
<ul>
<li>Layout - This is the main structure used to decorate a page.</li>
<li>Template - This is the main view attached to a URL by the controller.</li>
<li>Fragments - Lightweight and uses data you pass to it.</li>
<li>Component - Used if you need access to the model, the code is split between presentation and logic.</li>
<li>Slot - used to replace a defined section of the layout.</li>
</ul>
<p>In your case the layout would have the main content included using the template logic which is the core of the view layer and the other items would be either fragments or components depending on how much of the model they would need to access.</p>
<p>The <a href="http://www.symfony-project.org/book/1%5F2/07-Inside-the-View-Layer#chapter%5F07%5Fsub%5Fpage%5Flayout" rel="nofollow">Symfony documentation</a> has a full explanation of this.</p>
http://stackoverflow.com/questions/392980/is-symfony-a-better-choice-than-zend-for-a-web-development-shop-10-because-it/393022#3930221Answer by Colonel Sponsz for Is Symfony a better choice than Zend for a web development shop (10+) because it is a full stack framework?Colonel Sponsz2008-12-25T18:09:31Z2008-12-25T18:09:31Z<p>Symfony is really easy to use and can get a fully functional site with sessions, caching, unit and functional testing, automated deployment and more up and running in a very short amount of time. You only really need to worry about code to access and display your data. Whist it may not be as lightweight as a roll-your-own implementation, the amount of code you have to maintain will be less.</p>
<p>The Propel/Creole ORM works well, has built in validators etc and is set up to be extensible out of the box.</p>
<p>When transitioning an in-house framework over to Symfony I was able to re-use lots of library code simply by putting it in one of the lib directories that Symfony scans at startup.</p>
<p>Although I've not used it, there is a Zend bridge built into Symfony that allows you to use Zend modules if needed.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/350352/url-formatting-tips-for-search-engine-optimization/350418#3504181Answer by Colonel Sponsz for URL formatting tips for search engine optimization?Colonel Sponsz2008-12-08T18:35:44Z2008-12-08T18:35:44Z<p>Google used not to recognise underscores as word separators - see this <a href="http://www.mattcutts.com/blog/dashes-vs-underscores/" rel="nofollow">article from 2005</a>. This has entered into received wisdom and most of the 'experts' and articles you will find on SEO will still be recommending this.</p>
<p>However, <a href="http://news.cnet.com/8301-10784_3-9748779-7.html" rel="nofollow">last year this changed</a>: underscores are now recognised as word separators so it opens things up for URL design. This now allows using dashes as dashes and underscores as spaces which some consider more natural. I've not found many people who have caught up with this, including SEO consultants I deal with professionally.</p>
<p>As to a good system for your use case, I would recommend asking around some non technical people (colleagues, friends, family, etc) to see what they like.</p>
http://stackoverflow.com/questions/338073/how-to-wean-myself-from-ftp-in-favor-of-version-control/338124#3381244Answer by Colonel Sponsz for How to wean myself from FTP in favor of Version ControlColonel Sponsz2008-12-03T18:02:41Z2008-12-03T18:02:41Z<p>For the file uploads, what you are looking for is <a href="http://en.wikipedia.org/wiki/Rsync" rel="nofollow">rsync</a>. There is a Windows wrapper for this called <a href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp" rel="nofollow">DeltaCopy</a> and the DreamHost wiki has <a href="http://wiki.dreamhost.com/DeltaCopy" rel="nofollow">instructions</a>.</p>
http://stackoverflow.com/questions/305094/reading-source-code/305191#3051910Answer by Colonel Sponsz for Reading source codeColonel Sponsz2008-11-20T12:48:10Z2008-11-20T12:48:10Z<p>Pick an item you understand in the final product and see how it is put together. If you've got the unit tests then they are a great help.</p>
http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/270007#27000723Answer by Colonel Sponsz for What do project managers do all day?Colonel Sponsz2008-11-06T19:46:31Z2008-11-07T04:20:02Z<p>From the <a href="http://blog.stackoverflow.com/2008/11/podcast-28/" rel="nofollow">podcast discussion of this question</a>:</p>
<p><hr /></p>
<p><strong>Spolsky:</strong> Here's my feeling about project managers:</p>
<p>One of the things that is interesting is that project managers, traditionally, are brought on because you have a team of yahoos - and this is just as true in construction, or in building an oil rig, or in any kind of project as it is in the making of anything - making a new car at general motors, or designing the new Boeing 787 dream liner - as it is in the software industry. Project managers are brought in because management says: "Hey, you yahoos! You're just working and working and working and never get the thing done and nobody knows how long it's going to take." If you don't know how long something's going to take and you can't control that a little bit then this really sucks from a business perspective. I mean; if you think of a typical business project - you invest some money and then you make some money back. The money you make back - the return on investment - might be double the amount of money you invest and then it's a good investment. But if the investment doubles because it took you twice as long to do this thing as you thought it would then you've lost all your profit on the thing. So this is bad for businesses to make decisions in the face of poor information about how long the project is going to take and so keeping a project on track and on schedule is really important. </p>
<p>It's so important that they started hiring people to do this and they said: "OK, you're the project manager - make sure that we're on track." These project managers were just bright college kids with spreadsheets and Microsoft project and clipboards. They pretty much had to go around with no authority what so ever and walk around the project and talk to the people and find out where things were up to and they spent all their time creating and maintaining these gigantic gantt charts - which everybody else ignored. So the gantt charts, and the Microsoft project, and all those project schedules, and all that kind of stuff, was an artifact created by a kind of low level person. Although it might be accurate depending on how good that low level person was, but it was still an output only thing from the current project: Where are we up to? What have we done? How much time have we spent? What's left? Who is working on what? </p>
<p>Then, for some reason, these relatively low level people, who were not actually domain experts, (if they were at Boeing they don't know anything about designing planes, if they were on the software team they're not programmers - they're project managers, and they don't know anything about writing code) they start getting blame when things went wrong and they started clamoring for more responsibility, more authority to actually make changes and to actually influence things and say: "Hey, Joe's taking too long here - we should get Mary to do this task, she's not busy." The truth is that they started getting frustrated because they were low level secretarial-like members of their teams and they wanted to move their profession up the scale so they created the project management institute - or whatever it's called - and they created this thing called... ah, I don't even know! But they created a whole professional way to learn to be a professional project manager and they decided to try to make it something a little bit fancier than just the kid with the clipboard that has to maintain these gantt charts all day long. You can tell this is what happened because the first thing project managers will tell you about their profession is that the most important thing is that they have the authority to actually change things and that they are the ones that actually have all the skills that can get a project back on track, or to keep a project on track, and therefore they need to have the authority to exercise these skills otherwise they'll never get anything done, they'll never be able to keep the project on track, they don't just want to be stenographers writing things down. </p>
<p>The trouble is, they don't actually have the domain skills - that's why they are project managers. If you are working on a software project you know how to bring it in on time and you've got to cut features, and you know which features to cut, becuase you understand software intrinsically and you know what things are slow and what things are fast and where you might be able to combine two features into one feature, where you might be able to take a shortcut. That's the stuff a good developer knows, that's not the stuff a project manager knows. In a construction project it's the architects and the head contractors who know where shortcuts can be taken and how to bring a project in on time not the project manager. The project managers don't have any of the right skills to affect the project and so they inevitably get really frustrated and everybody treats them like secretaries, or treats them like 'annoying boy with clipboard', when they really don't have a leadership role in the project - and they're not going to be able to because they don't have the domain expertise. No matter how much they learn about project management, no matter how many books they read, or how many certificates they get, no matter how long they've been doing project management: if they don't know about software, and software development, if they don't have that experience, they are always going to be second class citizens and they're never going to be able to fix a broken project.</p>
<p><strong>Atwood:</strong> That's a great summary! Certainly I've had that experience and I think that, as a programmer, we value technical skills and it really is hard to take people seriously who don't even know enough to know if you are telling them complete BS. That's the danger. If you want somebody in that role, that's fine, it has to be someone who has a programming background or can tell when you are telling them crap, or lying to them, or not being straight with them. You just have to have some technical expertise is the key.</p>
<p><strong>Spolsky:</strong> That's the most important thing: Every developer figures this out on day number five. All you've got to do if there's a feature that you don't want to do is you have to say that's going to take six years. And if there's a feature you really want to do you have to tell everybody it's going to take two weeks.</p>
http://stackoverflow.com/questions/270570/special-characters-in-url/270646#2706462Answer by Colonel Sponsz for Special Characters in URL Colonel Sponsz2008-11-06T22:49:21Z2008-11-06T22:58:40Z<p>Would ~ (<a href="http://en.wikipedia.org/wiki/Tilde" rel="nofollow">tilde</a>) work?</p>
<p>Edit: Google now treats <a href="http://news.cnet.com/8301-10784_3-9748779-7.html" rel="nofollow">underscores and dashes as word separators</a> so you can use dashes as dashes and underscores as spaces.</p>
http://stackoverflow.com/questions/261557/what-do-i-need-to-read-to-understand-how-git-works/261856#2618561Answer by Colonel Sponsz for What do I need to read to understand how git works?Colonel Sponsz2008-11-04T13:17:06Z2008-11-04T13:30:07Z<p>There's a good Google tech talk: <a href="http://www.youtube.com/watch?v=4XpnKHJAok8" rel="nofollow">Linus Torvalds on git</a></p>
<p>OK, it's not something to read but it does cover some of the Git internals and design philosophy.</p>
http://stackoverflow.com/questions/255976/whats-a-good-way-to-teach-my-son-to-program-java/259129#2591291Answer by Colonel Sponsz for What's a good way to teach my son to program JavaColonel Sponsz2008-11-03T16:15:15Z2008-11-03T16:15:15Z<p>There is an interesting Google Tech Talk on <a href="http://www.youtube.com/watch?v=Tcwx-I6Arwk" rel="nofollow">Teching Kids to Code</a> - it covers a piece of software called <a href="http://www.greenfoot.org/" rel="nofollow">Greenfoot</a> which is an introductory programming tool that uses Java. It uses drag-and-drop and other visual methods of interacting with classes.</p>
http://stackoverflow.com/questions/255902/how-do-you-manage-php-project-development-lifecycle/255947#2559476Answer by Colonel Sponsz for How do you manage PHP Project Development Lifecycle?Colonel Sponsz2008-11-01T18:45:00Z2008-11-01T18:45:00Z<p>This is how we manage our commercial site:</p>
<ol>
<li>Develop in a local sand box</li>
<li>Check-in to SVN</li>
<li>Automated build/test from SVN onto internal
dev server</li>
<li>Scripted deploy using rsync to staging
server for QA/UAT</li>
<li>Scripted deploy onto production
servers.</li>
</ol>
<p>Staging and production servers are both hosted by the ISP and are hardware and version matched and run RHEL, internal Dev server is version matched CentOS.</p>
<p>This way, when code hits the production servers there shouldn't be any nasty surprises as even the deploy scripts get checked in stage 4. </p>
http://stackoverflow.com/questions/255905/how-to-synchronize-development-and-production-database/255919#2559190Answer by Colonel Sponsz for How to synchronize development and production database.Colonel Sponsz2008-11-01T18:28:20Z2008-11-01T18:28:20Z<p><a href="http://navicat.com/" rel="nofollow">Navicat</a> has a structure synchronisation wizard that handles this.</p>
http://stackoverflow.com/questions/242606/my-ideal-cms-does-it-exist-or-isnt-it-a-cms-anymore/242738#2427383Answer by Colonel Sponsz for My ideal CMS. Does it exist, or isn't it a "CMS" anymore?Colonel Sponsz2008-10-28T10:08:43Z2008-10-28T11:04:08Z<p>Have a look at <a href="http://www.hippocms.org/" rel="nofollow">Hippo CMS</a></p>
<ol>
<li><p>You can define custom content types and <a href="http://www.hippocms.org/display/CMS/Template+Business+Logic+definition" rel="nofollow">apply business rules</a> to them. <a href="http://www.hippocms.org/display/CMS/10.+Workflow" rel="nofollow">Workflow</a> and <a href="http://www.hippocms.org/display/CMS/7.+Hippo+Repository+Configure+Clustering" rel="nofollow">clustering</a> are also supported.</p></li>
<li><p>You can store content as text/HTML fragments and put them wherever you like if you build your own front end. You can also store binary data - pictures, PDF's, Word Docs etc.</p></li>
<li><p>You can use your own front end to the data - We're currently using a single instance with both Symfony (PHP) and Echo2 (JAVA).</p></li>
<li><p>Not sure about this but the editor is pretty good and customisable. I guess you could develop your own editor if needed - see 5.</p></li>
<li><p>You can access the data via <a href="http://www.hippocms.org/display/CMS/WebDAV+properties+used+by+Hippo+CMS" rel="nofollow">WebDav</a>.</p></li>
<li><p>The editor is easy to customise and the repository is WebDav so there is a fair amount of flexibility. There is also a <a href="http://www.hippocms.org/display/CMS/06.+Using+DASL+Queries" rel="nofollow">DASL</a> engine built in. I have used command line tools for batch processing items and searching to build indexes and there are other tools available.</p></li>
<li><p>It's open source and there is a good community. Commercial support is also available. I've generally managed with the <a href="http://www.hippocms.org/display/CMS/Hippo+CMS+v6.0x+Documentation" rel="nofollow">documentation</a> but the main developers are pretty active on the mailing list and very helpful.</p></li>
</ol>
http://stackoverflow.com/questions/227557/is-it-dumb-to-develop-for-lamp-on-wamp/227880#2278800Answer by Colonel Sponsz for Is it dumb to develop for LAMP on WAMP?Colonel Sponsz2008-10-22T23:11:25Z2008-10-22T23:11:25Z<p>It's worth having a LAMP sandbox so you can get to know where to find - and how to edit - config files, get comfortable with restarting services, handling scheduled jobs etc. if you are going to have to deal with these tasks in production.</p>
http://stackoverflow.com/questions/217259/indenting-for-code-generation/218270#2182700Answer by Colonel Sponsz for Indenting for code-generationColonel Sponsz2008-10-20T12:34:53Z2008-10-20T12:34:53Z<p>I the PHP/HTML situation I try to keep each code fragment consistently indented in its source code. This keeps the code readable where it really matters and <em>usually</em> has the side effect of producing HTML output that is readable. As others have said, firebug takes care of the rest.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/218201#2182011Answer by Colonel Sponsz for What things didn't you know you needed but are now very glad you have?Colonel Sponsz2008-10-20T12:06:50Z2008-10-20T12:06:50Z<p>Versioning file system. Having worked on a VAX many years ago I'm still somewhat surprised that it's not a standard feature of modern operating systems.</p>
http://stackoverflow.com/questions/207642/php-development-environment-best-practices/212799#2127990Answer by Colonel Sponsz for PHP development environment best practicesColonel Sponsz2008-10-17T16:10:56Z2008-10-17T16:10:56Z<p>If you are working from the command line, using <a href="http://www.kernel.org/pub/software/scm/git/docs/git-svn.html" rel="nofollow">Git's SVN module</a> eases most of the SVN pain - it handles deletes and moves automagically. </p>
<p>The GUI front ends (kgit or qgit) provide a very intuitive history browser.</p>
http://stackoverflow.com/questions/202556/php-mvc-learning-suggestions/212054#2120547Answer by Colonel Sponsz for PHP MVC Learning SuggestionsColonel Sponsz2008-10-17T13:14:49Z2008-10-17T13:14:49Z<p>The <a href="http://www.symfony-project.org/book/1_1/02-Exploring-Symfony-s-Code" rel="nofollow">Symfony documentation</a> has a good explanation of MVC in PHP. It works an example from procedural code up to using the framework, one layer at a time.</p>
http://stackoverflow.com/questions/209206/advice-on-splitting-up-an-application/209768#2097681Answer by Colonel Sponsz for Advice on Splitting Up an ApplicationColonel Sponsz2008-10-16T18:45:32Z2008-10-16T18:45:32Z<p>You could split it into four SVN projects - one for each of the three apps and the fourth for the rest of the code. You can then define this shared code as an external for each of the individual apps so they can run as a self contained checkout.</p>
<p>That does get you your separate projects but comes with its own set of problems - mainly if you update the shared section for one app you have to regression test the other two to check you haven't broken any dependencies.</p>
<p>This is probably more hassle that it's worth but it depends on how you work.</p>
http://stackoverflow.com/questions/178484/how-can-we-get-people-to-participate-in-team-building/178622#1786222Answer by Colonel Sponsz for How can we get people to participate in team building?Colonel Sponsz2008-10-07T14:09:37Z2008-10-07T14:09:37Z<p>How about trying an activity they want to participate in? Admittedly that might just invert the problem but it might make everyone else realise that different people like different things.</p>
http://stackoverflow.com/questions/174516/selecting-a-maximum-order-number-in-sql2Selecting a maximum order number in SQLColonel Sponsz2008-10-06T14:31:09Z2008-10-06T14:57:12Z
<p>I have a table that records a sequence of actions with a field that records the sequence order:</p>
<pre><code>user data sequence
1 foo 0
1 bar 1
1 baz 2
2 foo 0
3 bar 0
3 foo 1
</code></pre>
<p>Selecting the first item for each user is easy enough with WHERE sequence = '0' but is there a way to select the last item for each user in SQL?</p>
<p>The result I am after should look like this:</p>
<pre><code>user data sequence
1 baz 2
2 foo 0
3 foo 1
</code></pre>
<p>I'm using MySQL if there are any implementation specific tricksters answering.</p>
http://stackoverflow.com/questions/132342/testing-form-inputs-in-phpunit1Testing form inputs in PHPUnitColonel Sponsz2008-09-25T09:37:54Z2008-09-25T22:57:41Z
<p>What's the best way to test <code>$_GET</code> and <code>$_POST</code> inputs in PHPUnit?</p>
<p>I have a class that sanitises input and want to check that it works correctly when processing bogus data. Is there an easy way to set up the form variables in PHPUnit or should I just pass off the validation to a secondary class/functions that are fed the form variables so test them indirectly?</p>
http://stackoverflow.com/questions/65651/directory-layout-for-phpunit-tests/100911#1009111Answer by Colonel Sponsz for Directory layout for PHPUnit tests?Colonel Sponsz2008-09-19T10:15:26Z2008-09-19T10:15:26Z<p>I put my test cases next the the source in a file with the same name but a .phpt extension. The deployment script simply filters out *.phpt when they push to production.</p>
http://stackoverflow.com/questions/94101/how-to-type-faster/94455#944550Answer by Colonel Sponsz for How to type fasterColonel Sponsz2008-09-18T16:58:31Z2008-09-18T16:58:31Z<p>If you are having a problem with a particular key combo or miss-typing a particular word, or even just want to practice something, put it into your password. That way you get it fixed in your muscle memory as you can't even see what you are typing.</p>
http://stackoverflow.com/questions/90924/what-is-the-best-php-programming-book/91013#910133Answer by Colonel Sponsz for What is the best PHP programming book?Colonel Sponsz2008-09-18T08:48:54Z2008-09-18T09:00:30Z<p>I like Schlossnagle's <a href="http://rads.stackoverflow.com/amzn/click/0672329239" rel="nofollow">Advanced PHP Programming</a>. It's a great reference with good worked examples for things like session handling, RPC, unit testing, caching, profiling and even extending the language engine. If you already know PHP and are using it for a large project it is a very useful book to have around.</p>
http://stackoverflow.com/questions/72458/how-do-i-use-htaccess-to-redirect-to-a-url-containing-httphost/72597#72597-1Answer by Colonel Sponsz for How do I use .htaccess to redirect to a URL containing HTTP_HOST?Colonel Sponsz2008-09-16T14:02:39Z2008-09-16T14:02:39Z<p>If you are staying on the same server then putting this in your .htaccess will work regardless of the server:</p>
<pre><code>RedirectMatch 301 ^/terms$ /articles/terms/
</code></pre>
<p>Produces:</p>
<pre><code>http://example.com/terms -> http://example.com/articles/terms
</code></pre>
<p>or:</p>
<pre><code>http://test.example.com/terms -> http://test.example.com/articles/terms
</code></pre>
<p>Obviously you'll need to adjust the REGEX matching and the like to make sure it copes with what you are going to throw at it. Same goes for the 301, you might want a 302 if you don't want browsers to cache the redirect.</p>
<p>If you want:</p>
<pre><code>http://example.com/terms -> http://server02.example.com/articles/terms
</code></pre>
<p>Then you'll need to use the HTTP_HOST parameter.</p>
http://stackoverflow.com/questions/71525/topology-drawing-tool/71542#715424Answer by Colonel Sponsz for Topology drawing toolColonel Sponsz2008-09-16T11:59:07Z2008-09-16T11:59:07Z<p>Try <a href="http://live.gnome.org/Dia" rel="nofollow">Dia</a> - it's open source and cross platform.</p>
http://stackoverflow.com/questions/71088/what-is-the-best-way-to-access-a-database-from-php/71131#711310Answer by Colonel Sponsz for What is the best way to access a database from PHP?Colonel Sponsz2008-09-16T10:45:19Z2008-09-16T11:06:50Z<p>Use an MVC structure and a database abstraction layer. This way you can go to one place to completely rework the internals of a data access class whilst keeping the public interface constant.</p>
<p>Raw SQL throughout the code is going to be nigh on impossible to scale.</p>
http://stackoverflow.com/questions/13620/speed-difference-in-using-inline-strings-vs-concatenation-in-php5/13680#13680Comment by Colonel Sponsz on Speed difference in using inline strings vs concatenation in php5?Colonel Sponsz2009-11-27T16:54:10Z2009-11-27T16:54:10ZI've just done some quick testing and there's not much of a saving between these two - certainly nowhere near as much as changing interpolation to concatenation - but single quotes are faster.http://stackoverflow.com/questions/1748014/this-is-admin-login-code-in-php-when-i-run-the-code-it-does-not-load-the-page-tComment by Colonel Sponsz on This is Admin Login code in PHP, when i run the code, it does not load the Page that I want.Colonel Sponsz2009-11-17T11:09:43Z2009-11-17T11:09:43ZConcatenating unescaped $_POST variables into a MySQL query string is huge security issue - <a href="http://xkcd.com/327/" rel="nofollow">xkcd.com/327</a>. At a minimum consider using PDO and prepared statements: <a href="http://uk.php.net/manual/en/pdo.prepared-statements.php" rel="nofollow">uk.php.net/manual/en/…</a>http://stackoverflow.com/questions/1709435/book-recommendation-for-unix-shell-commands/1709448#1709448Comment by Colonel Sponsz on Book recommendation for Unix shell commandsColonel Sponsz2009-11-10T16:55:01Z2009-11-10T16:55:01Z+1 This is the most used reference book in our office, it's covered with page tags and annotations.http://stackoverflow.com/questions/896377/what-are-your-experiences-selling-on-the-android-market/927402#927402Comment by Colonel Sponsz on What are your experiences selling on the Android Market?Colonel Sponsz2009-10-29T14:19:30Z2009-10-29T14:19:30ZScreen shots are now available in the App Store with the 1.6 OS release.http://stackoverflow.com/questions/702907/what-are-some-good-css-and-js-minimizers-for-production-code/702926#702926Comment by Colonel Sponsz on What are some good css and js minimizers for production code?Colonel Sponsz2009-10-22T14:36:32Z2009-10-22T14:36:32ZThe client side overhead of unpacking packed JS tends to outweigh the speed gains of downloading a minified file. With gzip compression the full source can even be faster than packed: <a href="http://www.ericmmartin.com/comparison-of-javascript-compression-methods/" rel="nofollow">ericmmartin.com/comparison-of-javascript-compress…</a>http://stackoverflow.com/questions/705344/loading-gravatar-using-jquery/705369#705369Comment by Colonel Sponsz on Loading gravatar using jqueryColonel Sponsz2009-08-06T16:41:50Z2009-08-06T16:41:50ZCheers, this just saved me a load of Googling. Using it to preview the Gravatar on a sign up form.http://stackoverflow.com/questions/1188551/common-programming-mistakes-for-javascript-developers-to-avoid/1188572#1188572Comment by Colonel Sponsz on Common programming mistakes for JavaScript developers to avoid?Colonel Sponsz2009-07-27T15:02:46Z2009-07-27T15:02:46Z@George IV - Hence my italics round /core/. It might be a poor user experience with JS disabled but you should at least be able to perform the important operations without it. And if you can't it should tell you rather than just leaving mouse clicks that do nothing.http://stackoverflow.com/questions/1186957/common-programming-mistakes-for-php-developers-to-avoid/1186986#1186986Comment by Colonel Sponsz on Common programming mistakes for PHP developers to avoid?Colonel Sponsz2009-07-27T12:53:38Z2009-07-27T12:53:38ZOr adding the $ when in $this context, i.e. $this->$var rather than $this->varhttp://stackoverflow.com/questions/1186837/google-app-engine-tutorial-problem-new-datastore-model/1187080#1187080Comment by Colonel Sponsz on Google app engine tutorial problem - new datastore modelColonel Sponsz2009-07-27T12:09:01Z2009-07-27T12:09:01ZThe Python style guide strongly recommends using spaces instead of tabs: <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">python.org/dev/peps/pep-0008</a>http://stackoverflow.com/questions/1059192/include-scripts-library-into-symfony-application/1059263#1059263Comment by Colonel Sponsz on Include Scripts library into Symfony applicationColonel Sponsz2009-07-13T13:15:20Z2009-07-13T13:15:20Z+1 The autoload extension is the way to do it whilst staying within Symfony.http://stackoverflow.com/questions/952431/what-do-you-do-to-your-javascript-code-before-deployment/1061170#1061170Comment by Colonel Sponsz on What do you do to your JavaScript code before deployment?Colonel Sponsz2009-07-01T12:29:41Z2009-07-01T12:29:41Z+1 for some hard performance data.http://stackoverflow.com/questions/719705/what-is-the-purpose-of-pythons-inner-classes/722175#722175Comment by Colonel Sponsz on What is the purpose of python's inner classes?Colonel Sponsz2009-06-01T13:23:22Z2009-06-01T13:23:22ZThanks, that's just solved a problem I was having trouble with. +1http://stackoverflow.com/questions/687/keyboard-for-programmers/146046#146046Comment by Colonel Sponsz on Keyboard for programmersColonel Sponsz2009-02-03T13:11:08Z2009-02-03T13:11:08Z+1 I use a laptop style keyboard, a track ball (stays in the same place) and a separate USB num pad if I need to do some numeric entry work.http://stackoverflow.com/questions/483675/images-in-rss-feed/483734#483734Comment by Colonel Sponsz on Images in RSS feedColonel Sponsz2009-01-27T15:04:59Z2009-01-27T15:04:59ZThat only gives you one image for the feed, like a logo -- it's a child of <channel> not <item>.http://stackoverflow.com/questions/479223/deny-browsers-without-javascript-enabled-to-use-my-php-site/479279#479279Comment by Colonel Sponsz on deny browsers without javascript enabled to use my php siteColonel Sponsz2009-01-27T11:54:09Z2009-01-27T11:54:09ZThe principles behind graceful degradation are better described by Progressive Enhancement: <a href="http://www.alistapart.com/articles/understandingprogressiveenhancement" rel="nofollow">alistapart.com/articles/…</a>