User Peter Coulton - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:57:13Zhttp://stackoverflow.com/feeds/user/117http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1576/what-should-a-longtime-windows-user-know-when-starting-to-use-linux37What should a longtime Windows user know when starting to use Linux?Peter Coulton2008-08-04T20:54:29Z2009-11-25T18:26:10Z
<p>We've finally moved our websites to a decent <a href="http://www.simplehelix.com/" rel="nofollow">host</a>, and for the first time we have Shell Access.</p>
<p>I know very little about using Linux, I can navigate through the file system, read files with <a href="http://en.wikipedia.org/wiki/Vim%5F%28text%5Feditor%29" rel="nofollow">Vim</a> and I'm aware of the man command, and I have been able to work out solutions to problems as they show up (eventually), but I know I'm unaware of a lot.</p>
<p>Edit: We currently only use the host to hold our live sites, I'm sure that we use it more effectively, but I'm not sure where to start.</p>
<p>So with Web Development in mind:</p>
<ul>
<li>What are the essential commands that every Linux user should know about?</li>
<li>What are the most useful commands that I should look into?</li>
</ul>
http://stackoverflow.com/questions/1457294/ruby-on-rails-symbol-validation/1457315#14573155Answer by Peter Coulton for Ruby on Rails symbol validationPeter Coulton2009-09-21T22:58:29Z2009-09-21T23:07:09Z<p>If you add in a <a href="http://api.rubyonrails.org/classes/ActiveRecord/Validations/ClassMethods.html#M002168" rel="nofollow">validates_format_of</a> you can supply a regex to test the link with.</p>
<pre><code>class Story < ActiveRecord::Base
validates_presence_of :name , :link
validates_format_of :link, :with => /^http.*$/
end
</code></pre>
http://stackoverflow.com/questions/1453081/good-version-control-system-for-eveyday-files/1453133#14531330Answer by Peter Coulton for Good version control system for eveyday filesPeter Coulton2009-09-21T06:43:02Z2009-09-21T06:43:02Z<p>I use Git for my code and personal files and find it works really well. Takes a little work to get things setup, I use cygwin but I've heard <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysgit</a> is easier. No messy .svn folders, fast topic branches for experiments with easy merging, and I use <a href="http://github.com" rel="nofollow">Github</a> to push my backups to everynight.</p>
http://stackoverflow.com/questions/76420/best-php-ruby-python-e-commerce-solution/76551#765510Answer by Peter Coulton for Best php/ruby/python e-commerce solutionPeter Coulton2008-09-16T20:23:10Z2009-08-02T04:01:43Z<p>We use Magento hosted on <a href="http://www.simplehelix.com" rel="nofollow">SimpleHelix</a> and performance is great, as long as you don't use the default theme which is horrible and slow.</p>
http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git14How do I clone all remote branches with Git?Peter Coulton2008-09-15T22:42:07Z2009-07-27T06:10:37Z
<p>I have a master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back.</p>
<p>I'm sure I'm missing something obvious, but I have RTM any I'm getting no joy at all.</p>
<p><hr /></p>
http://stackoverflow.com/questions/993960/how-can-i-get-jqueryui-sortable-to-revert-faster1How can I get JQueryUI sortable to 'revert' faster?Peter Coulton2009-06-14T22:50:17Z2009-06-15T00:13:56Z
<p>JQuery's <code>sortable</code> has an option to <code>revert</code> the item that the user drags back in line with the rest, but the animation is a little slow.</p>
<p>Is there a simple way to specify <code>'fast'</code> like some of the other methods?</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1729#1729165Answer by Peter Coulton for What is the single most influential book every programmer should read?Peter Coulton2008-08-05T00:07:28Z2009-02-23T08:09:45Z<p><a href="http://www-cs-faculty.stanford.edu/~uno/taocp.html" rel="nofollow">The Art of Computer Programming</a> if only for the effort Knuth put into it.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/6/62/ArtOfComputerProgramming.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/564785/how-do-i-pass-this-path-to-a-bash-function0How do I pass this path to a bash function?Peter Coulton2009-02-19T11:01:56Z2009-02-19T11:05:24Z
<p>I've been having trouble moving to directories with spaces in the name, but it I just figured it was a problem with Cygwin and worked around it.</p>
<p>Then I found that I could create symbolic links to those directories which made me maybe think it wasn't Cygwin. Then I remembered I created an alias for <code>cd</code> that would list the directory contents and saw this:</p>
<pre><code>cdls { cd $1; ls; }
alias cd='cdls'
</code></pre>
<p>So the problem is when I try this it fails:</p>
<pre><code>$ cd /cygdrive/c/Program\ Files/
bash: cd: /cygdrive/c/Program: No such file or directory
</code></pre>
<p>I can see that the space is causing the path to be split into multiple arguments, but how do I join them together again?</p>
http://stackoverflow.com/questions/564785/how-do-i-pass-this-path-to-a-bash-function/564798#5647980Answer by Peter Coulton for How do I pass this path to a bash function?Peter Coulton2009-02-19T11:05:24Z2009-02-19T11:05:24Z<p>Looks like I just needed to explain the problem for the answer to come to me. My solution is:</p>
<pre><code>cdls () { cd "$*"; ls ; }
alias cd='cdls'
</code></pre>
<p>Simple.</p>
http://stackoverflow.com/questions/545315/why-not-use-html-tables-for-layout/545338#5453382Answer by Peter Coulton for Why _not_ use html tables for layoutPeter Coulton2009-02-13T09:33:19Z2009-02-13T09:33:19Z<p>If you have the kind of constraints you mentioned, deadline looming, large existing code base, then use tables, the universe won't implode, but in the long term using css and welformed markup will allow you to create a nicer, cleaner, more maintainable website.</p>
http://stackoverflow.com/questions/534121/how-to-safely-allow-embed-content/534144#5341440Answer by Peter Coulton for How to safely allow embed content?Peter Coulton2009-02-10T20:49:31Z2009-02-10T20:49:31Z<p><a href="http://refactormycode.com/codes/333-sanitize-html" rel="nofollow">This is how</a> Stackoverflow does it, I think, over at <a href="http://refactormycode.com/codes/333-sanitize-html" rel="nofollow">RefacterMyCode</a>.</p>
http://stackoverflow.com/questions/327417/using-capistrano-to-deploy-a-non-rails-site-via-ftp/327441#3274414Answer by Peter Coulton for Using Capistrano to deploy (a non-Rails site) via FTP?Peter Coulton2008-11-29T11:26:00Z2008-11-29T11:33:36Z<p>We use capistrano to deploy our site which is written in PHP.</p>
<p>From memory (I'm not at work right now) we overode deploy and used rsync to sync over sftp. Something like this:</p>
<pre><code>desc "Sync"
namespace :deploy do
desc "Sync remote by default"
task :default do
remote.default
end
namespace :remote do
desc "Sync to remote server"
task :default do
`rsync -avz "/path/to/webapp" "#{remote_host}:#{remote_root}/path/to/webapp"`
end
end
end
</code></pre>
<p>I'm sure you could replace rsync with whatever an ftp program and it should work fine.</p>
http://stackoverflow.com/questions/326699/difference-between-hashing-a-password-and-encrypting-it/326729#3267290Answer by Peter Coulton for Difference between Hashing a Password and Encrypting itPeter Coulton2008-11-28T21:29:51Z2008-11-28T21:29:51Z<p>As correct as the other answers may be, in the context that the quote was in, hashing is a tool that may be used in securing information, encryption is a process that takes information and makes it very difficult for unauthorized people to read/use.</p>
http://stackoverflow.com/questions/5682/is-it-just-me-or-are-characters-being-rendered-incorrectly-more-lately1Is it just me, or are characters being rendered incorrectly more lately?Peter Coulton2008-08-08T04:51:27Z2008-11-05T14:40:26Z
<p>I'm not sure if it's my system, although I haven't done anything unusual with it, but I've started noticing incorrectly rendered characters popping up in web pages, text-files, <a href="http://ejohn.org/blog/html5-doctype/" rel="nofollow">like this</a>:</p>
<p><img src="http://www.kbssource.com/strange-characters.gif" alt="" title=""></p>
<p>I have a hunch it's a related to the fairly recent trend to use unicode for everything, which is a good thing I think, combined with fonts that don't support all possible characters.</p>
<p>So, does anyone know what's causing these blips (am I right?), and how do I stop this showing up in my own content?</p>
http://stackoverflow.com/questions/223833/import-in-media-not-working-in-firefox-3-0-32@import in @media not working in Firefox 3.0.3Peter Coulton2008-10-21T22:47:01Z2008-10-22T02:30:03Z
<p>This is what I have, which works in IE7, but not in Firefox:</p>
<pre><code>@media screen { @import 'screen.css'; }
</code></pre>
<p>It works outside of the @media block in Firefox:</p>
<pre><code>@import 'screen.css';
</code></pre>
<p><strong>UPDATE:</strong> </p>
<p>This works:</p>
<pre><code>@media screen {
.yui-d3f
{
border: 1px solid #999;
height: 250px;
}
}
</code></pre>
<p>What am I missing?</p>
http://stackoverflow.com/questions/223833/import-in-media-not-working-in-firefox-3-0-3/223949#2239490Answer by Peter Coulton for @import in @media not working in Firefox 3.0.3Peter Coulton2008-10-21T23:35:40Z2008-10-21T23:35:40Z<p>Ok, so Firefox doesn't like the method I chose, favouring:</p>
<pre><code>@import 'stylesheet.css' media_type;
</code></pre>
<p>But IE7 doesn't understand this method, but this could be good:</p>
<pre><code>@import 'firefox-screen.css' screen;
@media screen { @import 'IE7-screen.css'; }
</code></pre>
http://stackoverflow.com/questions/4452/does-rsi-affect-legs2Does RSI affect legs?Peter Coulton2008-08-07T06:15:02Z2008-10-21T11:25:43Z
<p>Wikipedia says that RSI is also called 'work related upper limb disorder', but I'm getting serious knee pain when I'm sat working for long periods (18+ hours).</p>
<p>Has anyone else experienced this, and have you found a solution?</p>
http://stackoverflow.com/questions/171279/how-do-i-convert-a-character-code-back-to-a-character1How do I convert a character code back to a character?Peter Coulton2008-10-05T00:51:54Z2008-10-05T03:07:20Z
<p>How to I get the Fixnum returned by the following:</p>
<pre><code>"abc"[2]
</code></pre>
<p>Back into a character?</p>
http://stackoverflow.com/questions/168859/is-there-a-universally-accepted-value-for-no-value/168921#1689214Answer by Peter Coulton for Is there a universally accepted value for no value?Peter Coulton2008-10-03T21:08:20Z2008-10-03T21:08:20Z<p>It all depends on what you are trying to tell the user when there is no value. </p>
<p>For example, does no value mean that the data isn't available yet, but will be later? Or is the data point not applicable to the current record?</p>
<p>I would choose a value that imparts the most information.</p>
http://stackoverflow.com/questions/155609/what-is-the-difference-between-a-method-and-a-function/155631#1556310Answer by Peter Coulton for What is the difference between a method and a functionPeter Coulton2008-09-30T23:51:19Z2008-09-30T23:51:19Z<p>A method is simply a function that is defined within a class.</p>
http://stackoverflow.com/questions/99348/how-do-i-change-the-colors-displayed-in-cygwin-rxvt1How do I change the colors displayed in cygwin rxvt?Peter Coulton2008-09-19T03:38:29Z2008-09-19T23:24:44Z
<p>When I use "[\e[34m]sometext" i get sometext in blue, but can I specify the shade of blue somewhere?</p>
http://stackoverflow.com/questions/53290/how-could-i-get-my-svn-only-host-to-pull-from-a-git-repository1How could I get my SVN-only host to pull from a git repository?Peter Coulton2008-09-10T01:36:21Z2008-09-10T01:47:47Z
<p>I'd really like to get our host to pull from our Git repository instead of uploading files manually, but it doesn't have Git installed.</p>
<p>So is there a way to trick Subversion (which they do have) into checking out a Git repository?</p>
<p>I think I already know the answer, namely bug my host to add Git and live with it until they do, but I thought I would ask anyway.</p>
http://stackoverflow.com/questions/369/how-much-of-the-web-build-process-do-you-should-you-automate10How much of the Web build process do you/should you automate?Peter Coulton2008-08-02T08:12:39Z2008-09-09T01:55:18Z
<p>And what is your system of choice?</p>
<p>Off the top of my head I would say that for a real one step web 'build' the following steps would have take place:</p>
<ol>
<li>Take a source snapshot</li>
<li>Change any config files for release</li>
<li>Compress CSS and JS</li>
<li>Run Tests</li>
<li>Take a database snapshot [without test data]</li>
<li>Move the source to the server</li>
<li>Import a clean, current version of the database into the server</li>
<li>Automatically confirm the 'build' was successful</li>
</ol>
<p>Has anyone got a system that does all of these steps?</p>
http://stackoverflow.com/questions/16298/how-to-redirect-sitea-to-siteb-with-a-or-cname-records2How to redirect siteA to siteB with A or CNAME recordsPeter Coulton2008-08-19T14:42:29Z2008-08-23T16:29:05Z
<p>I have 2 hosts and I would like to point a subdomain on host one to a subdomain on host two:</p>
<pre><code>subdomain.hostone.com --> subdomain.hosttwo.com
</code></pre>
<p>I added a CNAME record to host one that points to subdomain.hosttwo.com but all I get is a '<strong>400 Bad Request</strong>' Error.</p>
<p>Can anyone see what I'm doing wrong?</p>
http://stackoverflow.com/questions/5459/accessing-a-const-attribute-of-series-of-classes1Accessing a CONST attribute of series of ClassesPeter Coulton2008-08-07T22:58:42Z2008-08-23T16:06:01Z
<p>This is how I wanted to do it which would work in PHP 5.3.0+</p>
<pre><code><?php
class MyClass
{
const CONSTANT = 'Const var';
}
$classname = 'MyClass';
echo $classname::CONSTANT; // As of PHP 5.3.0
?>
</code></pre>
<p>But I'm restricted to using PHP 5.2.6. Can anyone think of a simple way to simulate this behaviour without instantiating the class?</p>
http://stackoverflow.com/questions/19112/setting-up-dual-heads-on-centos-52Setting up Dual Heads on CentOS 5Peter Coulton2008-08-21T00:12:44Z2008-08-21T05:08:29Z
<p>I asked a question a while ago about learning to use Linux, and since then I've installed CentOS 5 on a local machine to match my host.</p>
<p>Installation was fine, and I'm up and running, but I can't setup it up to use 2 monitors (Dual Heads) and I just can't cope without 2 monitors.</p>
<p>So is anyone using CentOS with 2 monitors? And if so HOW?</p>
<pre><code>CentOS 5
GNOME 2.16.0
nVidia 8600 GTS
</code></pre>
http://stackoverflow.com/questions/19112/setting-up-dual-heads-on-centos-5/19142#191420Answer by Peter Coulton for Setting up Dual Heads on CentOS 5Peter Coulton2008-08-21T00:31:27Z2008-08-21T00:31:27Z<p>@<a href="http://beta.stackoverflow.com/questions/19112/setting-up-dual-heads-on-centos-5#19123" rel="nofollow">Mike Stone</a></p>
<p>My host uses CentOS as their base with <a href="http://www.litespeedtech.com/products/webserver/overview/" rel="nofollow">LiteSpeed</a> for the web server, so I was planning to clone their setup as closley as possible for testing.</p>
<p>I'll take a look at Ubuntu, and use that if I can't find a solution.</p>
http://stackoverflow.com/questions/13289/can-you-share-your-secrets-or-best-practices-for-problem-solving/13364#133640Answer by Peter Coulton for Can you share your secrets or best practices for Problem Solving?Peter Coulton2008-08-16T21:09:24Z2008-08-16T21:09:24Z<p>Before:</p>
<ol>
<li>Read everything you can find about the problem domain.</li>
<li>Don't skip topics that you think won't be relevant.</li>
<li>Repeat step 1 and 2.</li>
</ol>
<p>During:</p>
<ol>
<li>Split large problems into the smaller tasks.</li>
<li>Define your fitness criteria (write the tests).</li>
</ol>
<p>Ater:</p>
<ol>
<li>Do a post-mortem of the solution/project.</li>
<li>Try new languages, learn new techniques.</li>
<li>Practise, practise, practise.</li>
</ol>
http://stackoverflow.com/questions/4494/can-you-should-you-learn-seo-techniques/4568#45681Answer by Peter Coulton for Can you /should you learn SEO techniquesPeter Coulton2008-08-07T10:27:17Z2008-08-07T10:27:17Z<p>Google offers some <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=35769" rel="nofollow">guidelines</a> in their <a href="http://www.google.com/webmasters/" rel="nofollow">Webmasters Tools</a>, I think they focus more on What Not to Do, but it might be a good place to start.</p>http://stackoverflow.com/questions/4369/how-to-include-php-files-that-require-an-absolute-path/4385#43858Answer by Peter Coulton for How to include PHP files that require an absolute path?Peter Coulton2008-08-07T04:20:47Z2008-08-07T04:28:34Z<p>This should work </p>
<pre><code>$root = realpath($_SERVER["DOCUMENT_ROOT"]);<br><br>include "$root/inc/include1.php";<br></code></pre>
<hr>
<p><strong>Edit:</strong> added imporvement by <a href="http://beta.stackoverflow.com/questions/4369/include-files-requiring-an-absolute-path#4388" rel="nofollow">aussieviking</a></p>http://stackoverflow.com/questions/1453081/good-version-control-system-for-eveyday-files/1453133#1453133Comment by Peter Coulton on Good version control system for eveyday filesPeter Coulton2009-09-21T07:03:23Z2009-09-21T07:03:23ZI've been using Git on windows for about 18 months using cygwin and I find it works great. Git wasn't hard to pickup, and although the process is a bit different, each difference offers an advantage.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1729#1729Comment by Peter Coulton on What is the single most influential book every programmer should read?Peter Coulton2009-09-16T16:29:36Z2009-09-16T16:29:36Z@sakra: Trolling is an art. And if you read this book programming might become an art for you too.http://stackoverflow.com/questions/1086785/announcing-git-users-survey-2009Comment by Peter Coulton on Announcing "Git User's Survey 2009"Peter Coulton2009-07-06T13:28:33Z2009-07-06T13:28:33ZAnswers to his question would be useful to others if you made it a little more generic. Maybe something like "best place to announce a <something> for developers". http://stackoverflow.com/questions/550181/c-pointer-snippetComment by Peter Coulton on C++ Pointer SnippetPeter Coulton2009-02-15T02:28:27Z2009-02-15T02:28:27ZI think you might get some good results by posting this on <a href="http://refactormycode.com/" rel="nofollow">refactormycode.com</a>http://stackoverflow.com/questions/534121/how-to-safely-allow-embed-content/534144#534144Comment by Peter Coulton on How to safely allow embed content?Peter Coulton2009-02-10T22:00:22Z2009-02-10T22:00:22Z@troelskn: That is not correct - <a href="http://stackoverflow.com/questions/31657/what-html-tags-are-allowed-on-stack-overflow" rel="nofollow" title="what html tags are allowed on stack overflow">stackoverflow.com/questions/31657/…</a>http://stackoverflow.com/questions/534121/how-to-safely-allow-embed-content/534144#534144Comment by Peter Coulton on How to safely allow embed content?Peter Coulton2009-02-10T21:30:36Z2009-02-10T21:30:36Z@Carl: I agree, using something like the Zend Framework if the functinality is already there makes all kinds of sense.http://stackoverflow.com/questions/534121/how-to-safely-allow-embed-content/534144#534144Comment by Peter Coulton on How to safely allow embed content?Peter Coulton2009-02-10T20:55:08Z2009-02-10T20:55:08ZBut it's the same problem being solved, he just needs to translate it.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/166088#166088Comment by Peter Coulton on What real life bad habits has programming given you?Peter Coulton2008-12-12T01:59:14Z2008-12-12T01:59:14Z@EricSchaefer: I wish I could upvote commentshttp://stackoverflow.com/questions/326429/what-version-control-system-is-most-trivial-to-set-up-and-use-for-toy-projects/326470#326470Comment by Peter Coulton on What version-control system is most trivial to set up and use for toy projects?Peter Coulton2008-11-28T19:40:17Z2008-11-28T19:40:17ZHaving used Git I think in general it is the way to go, but for a student it may be benefitial for them to learn SVN because that's almost certainly what they will be asked to use in the real world.http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186140#186140Comment by Peter Coulton on What is the best comment in source code you have ever encountered?Peter Coulton2008-10-10T08:32:57Z2008-10-10T08:32:57ZHe was french, but everyone wrote in Latin didn't they?http://stackoverflow.com/questions/168859/is-there-a-universally-accepted-value-for-no-value/168869#168869Comment by Peter Coulton on Is there a universally accepted value for no value?Peter Coulton2008-10-03T21:00:47Z2008-10-03T21:00:47ZI don't think its one or the other, depends on the context