<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Freeway Projects</title> <atom:link href="http://www.freewayprojects.com/feed/" rel="self" type="application/rss+xml" /><link>http://www.freewayprojects.com</link> <description>Web Development and Graphic Design Services</description> <lastBuildDate>Tue, 31 Jan 2012 11:28:33 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>For all Drupal devlopers who use Emacs!</title><link>http://www.freewayprojects.com/2011/12/for-all-drupal-devlopers-who-use-emacs/</link> <comments>http://www.freewayprojects.com/2011/12/for-all-drupal-devlopers-who-use-emacs/#comments</comments> <pubDate>Wed, 14 Dec 2011 11:32:06 +0000</pubDate> <dc:creator>kbailey</dc:creator> <category><![CDATA[Bailey's Blog]]></category> <category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">http://www.freewayprojects.com/?p=1590</guid> <description><![CDATA[You must install drupal-mode from https://github.com/nyuhuhuu/drupal-mode/blob/master/drupal-mode.el You may need to create the ~/.emacs.d/plugins/drupal-mode-el/ directory to put the drupal-mode.el file into.  And on Debian/Ubuntu you will probably have to install the w3m-el package &#8211; but after that you have a Drupal specific php-mode called drupal-mode. This fixes the issue whereby arrays in php-mode are not indented in [...]]]></description> <content:encoded><![CDATA[<p>You must install drupal-mode from <a href="https://github.com/nyuhuhuu/drupal-mode/blob/master/drupal-mode.el">https://github.com/nyuhuhuu/drupal-mode/blob/master/drupal-mode.el</a></p><p>You may need to create the ~/.emacs.d/plugins/drupal-mode-el/ directory to put the drupal-mode.el file into.  And on Debian/Ubuntu you will probably have to install the w3m-el package &#8211; but after that you have a Drupal specific php-mode called drupal-mode.</p><p>This fixes the issue whereby arrays in php-mode are not indented in the same way that Drupal Coding Standards specify.</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://www.freewayprojects.com/2011/12/for-all-drupal-devlopers-who-use-emacs/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>DO NOT CTRL-ALT-DEL during a boot</title><link>http://www.freewayprojects.com/2011/12/do-not-ctrl-alt-del-during-a-boot/</link> <comments>http://www.freewayprojects.com/2011/12/do-not-ctrl-alt-del-during-a-boot/#comments</comments> <pubDate>Sat, 03 Dec 2011 11:26:18 +0000</pubDate> <dc:creator>kbailey</dc:creator> <category><![CDATA[Bailey's Blog]]></category> <category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">http://www.freewayprojects.com/?p=1580</guid> <description><![CDATA[I don&#8217;t normally do this &#8211; but today &#8211; in a rush &#8211; I hit Ctrl-Alt-Del dring POST on a new HP mail server being set up.  And when the server came back up on of the two RAID 1 drives had its amber light on showing drive failure &#8211; Doh! I shut the server [...]]]></description> <content:encoded><![CDATA[<p>I don&#8217;t normally do this &#8211; but today &#8211; in a rush &#8211; I hit Ctrl-Alt-Del dring POST on a new HP mail server being set up.  And when the server came back up on of the two RAID 1 drives had its amber light on showing drive failure &#8211; Doh!</p><p>I shut the server down &#8211; pulled the drive out and pushed it back in again &#8211; and powered back up.  The drive is now showing the 1 second green flash to show that it is being rebuilt.  Hopefully, the drive should be OK as the server is brand new and it was my forced reboot which caused the error.</p><p>As a side note &#8211; just how do you reset the NIC on a Debian server after a config change these says.  It used to be an easy:</p><p># /etc/init.d/networking restart</p><p>but that doesn&#8217;t seem to work any more.  Maybe I should be using this new &#8216;ip&#8217; command somehow?</p> ]]></content:encoded> <wfw:commentRss>http://www.freewayprojects.com/2011/12/do-not-ctrl-alt-del-during-a-boot/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Solving the &#8216;Your branch is ahead of &#8216;origin/master&#8217; by x commits&#8217; issue after pulling using git.</title><link>http://www.freewayprojects.com/2011/11/solving-the-your-branch-is-ahead-of-originmaster-by-x-commits-issue-after-pulling-using-git/</link> <comments>http://www.freewayprojects.com/2011/11/solving-the-your-branch-is-ahead-of-originmaster-by-x-commits-issue-after-pulling-using-git/#comments</comments> <pubDate>Wed, 30 Nov 2011 12:19:19 +0000</pubDate> <dc:creator>kbailey</dc:creator> <category><![CDATA[Bailey's Blog]]></category><guid isPermaLink="false">http://www.freewayprojects.com/?p=1554</guid> <description><![CDATA[This is an annoyingly simple issue &#8211; so simple that it may not be blogged elsewhere. You have a remote repository and push some code updates to it from a local repository &#8211; you then switch to a different local repository and pull down the updated code from the remote repository with: $ git pull [...]]]></description> <content:encoded><![CDATA[<p>This is an annoyingly simple issue &#8211; so simple that it may not be blogged elsewhere.</p><p>You have a remote repository and push some code updates to it from a local repository &#8211; you then switch to a different local repository and pull down the updated code from the remote repository with:</p><p>$ git pull origin mybranch</p><p>which updates your local mybranch nicely.</p><p>Now when you run</p><p>$ git status</p><p>it says everything is up-to-date &#8211; but you get the horrible &#8217;Your branch is ahead of &#8216;origin/master&#8217; by x commits&#8217; message &#8211; WTF!</p><p>What this is saying is that your local branch &#8211; mybranch &#8211; is ahead of your local <strong>copy</strong> of the remote &#8211; origin/mybranch.</p><p><img title="git" src="http://www.freewayprojects.com/content/uploads/2011/11/git-300x153.png" alt="git" width="300" height="153" /></p><p>See &#8211; your local copy of origin/mybranch (in this case origin/6.x-1.x) still points to the previous commit.</p><p>The thing is &#8211; I was being too clever and trying to avoid pulling and updating master.  What I should have run was:</p><p>$ git pull origin</p><p>This will fetch and merge the current branch from the remote to my local branch- and also update my local tracking branch &#8211; origin/mybranch &#8211; to point to the latest commit.</p><p>If you run</p><p>$ git pull origin</p><p>after running</p><p>$ git pull origin mybranch</p><p>it seems to be safe and to sort out the issue of &#8217;Your branch is ahead of &#8216;origin/master&#8217; by x commits&#8217;.</p><p>Hopefully this quick note might help someone who found themselves in the same position as me.</p> ]]></content:encoded> <wfw:commentRss>http://www.freewayprojects.com/2011/11/solving-the-your-branch-is-ahead-of-originmaster-by-x-commits-issue-after-pulling-using-git/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>We have moved!</title><link>http://www.freewayprojects.com/2011/10/we-have-moved/</link> <comments>http://www.freewayprojects.com/2011/10/we-have-moved/#comments</comments> <pubDate>Thu, 06 Oct 2011 12:04:35 +0000</pubDate> <dc:creator>Anna Bailey</dc:creator> <category><![CDATA[News & Announcements]]></category><guid isPermaLink="false">http://www.freewayprojects.com/?p=1269</guid> <description><![CDATA[As of the 1st of October 2011, Freeway Projects has moved to a new office at Salt Quay House in Sutton Harbour, Plymouth. Our new office, which is on the fourth floor, has an amazing view over the marina, and is a great place to work from, and we are hoping the move will help [...]]]></description> <content:encoded><![CDATA[<p><strong>As of the 1st of October 2011</strong>, Freeway Projects has moved to a new office at <strong>Salt Quay House</strong> in <strong>Sutton Harbour</strong>,<strong> Plymouth</strong>. Our new office, which is on the fourth floor, has an amazing view over the marina, and is a great place to work from, and we are hoping the move will help to provide quality service to our clients.</p><p>Why not pop in and see us over a cup of coffee, admire the view and maybe even talk business!</p><p><strong>Our new full address is:</strong></p><p>4th Floor Salt Quay House,<br /> 6 North East Quay,<br /> Sutton Harbour,<br /> Plymouth,<br /> PL4 0HP</p> ]]></content:encoded> <wfw:commentRss>http://www.freewayprojects.com/2011/10/we-have-moved/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: www.freewayprojects.com @ 2012-01-31 12:48:00 by W3 Total Cache -->
