This commit is contained in:
Oliver Davies 2017-07-11 18:57:51 +01:00
parent 0692d8ff00
commit 47e2ffcfda
247 changed files with 409 additions and 383 deletions

View file

@ -88,7 +88,7 @@
<li class="post">
<h2>Some Useful Git Aliases</h2>
<p class="posted">15th January 2014</p>
<p class="posted text-light">15th January 2014</p>
<p>Here are some bash aliases that I use and find helpful for quickly writing Git and Git Flow commands.</p>
@ -99,7 +99,7 @@
<li class="post">
<h2>Download Different Versions of Drupal with Drush</h2>
<p class="posted">31st December 2013</p>
<p class="posted text-light">31st December 2013</p>
<p>If you use <a href="https://raw.github.com/drush-ops/drush/master/README.md" title="About Drush">Drush</a>, it's likely that you've used the <code>drush pm-download</code> (or <code>drush dl</code> for short) command to start a new project. This command downloads projects from Drupal.org, but if you don't specify a project or type "drush dl drupal", the command will download the current stable version of Drupal core. Currently, this will be Drupal 7 with that being the current stable version of core at the time of writing this post.</p>
@ -112,7 +112,7 @@
<li class="post">
<h2>Quickly Apply Patches Using Git and curl or wget</h2>
<p class="posted">24th December 2013</p>
<p class="posted text-light">24th December 2013</p>
<p>Testing a patch file is usually a two-step process. First you download the patch file from the source, and then you run a separate command to apply it.</p>
@ -125,7 +125,7 @@
<li class="post">
<h2>Useful Vagrant Commands</h2>
<p class="posted">27th November 2013</p>
<p class="posted text-light">27th November 2013</p>
<p><a href="http://www.vagrantup.com" title="About Vagrant">Vagrant</a> is a tool for managing virtual machines within <a href="https://www.virtualbox.org">VirtualBox</a> from the command line. Here are some useful commands to know when using Vagrant.</p>
@ -136,7 +136,7 @@
<li class="post">
<h2>Don&#039;t Bootstrap Drupal, Use Drush</h2>
<p class="posted">19th November 2013</p>
<p class="posted text-light">19th November 2013</p>
<p>There are times when doing Drupal development when you need to run a custom PHP script, maybe moving data from one field to another, that doesn't warrant the time and effort to create a custom module. In this scenario, it would be quicker to write a .php script and bootstrap Drupal to gain access to functions like <code>node_load()</code> and <code>db_query()</code>.</p>
@ -149,7 +149,7 @@
<li class="post">
<h2>Create a Zen Sub-theme Using Drush</h2>
<p class="posted">6th September 2013</p>
<p class="posted text-light">6th September 2013</p>
<p>How to use <a href="https://drupal.org/project/drush">Drush</a> to quickly build a new sub-theme of <a href="https://drupal.org/project/zen">Zen</a>.</p>
@ -160,7 +160,7 @@
<li class="post">
<h2>Going to DrupalCon</h2>
<p class="posted">26th July 2013</p>
<p class="posted text-light">26th July 2013</p>
<p><a href="http://www.precedent.co.uk">Precedent</a> are sending myself and two of our other Drupal Developers to <a href="http://prague2013.drupal.org">Drupalcon Prague</a>.</p>
@ -171,7 +171,7 @@
<li class="post">
<h2>Creating Local and Staging sites with Drupal&#039;s Domain Module Enabled</h2>
<p class="posted">17th July 2013</p>
<p class="posted text-light">17th July 2013</p>
<p>The <a href="https://drupal.org/project/domain" title="The Domain Access project on Drupal.org">Domain Access project</a> is a suite of modules that provide tools for running a group of affiliated sites from one Drupal installation and a single shared database. The issue is that the domains are stored within the database so these are copied across when the data is migrated between environments, whereas the domains are obviously going to change.</p>
@ -184,7 +184,7 @@
<li class="post">
<h2>Some useful links for using SimpleTest in Drupal</h2>
<p class="posted">13th June 2013</p>
<p class="posted text-light">13th June 2013</p>
<p>Here are some useful links that I've found when researching about unit testing in Drupal using SimpleTest.</p>
@ -195,7 +195,7 @@
<li class="post">
<h2>Display Git Branch or Tag Names in your Bash Prompt</h2>
<p class="posted">27th April 2013</p>
<p class="posted text-light">27th April 2013</p>
<p>Whilst watching <a href="http://drupalize.me" title="Drupalize.me">Drupalize.me</a>'s recent <a href="http://drupalize.me/series/introduction-git-series" title="Introduction to Git on Drupalize.me">Introduction to Git series</a>, I thought it was useful the way that the current Git branch or tag name was displayed in the bash prompt. Here's how to do it.</p>