
attractive, usable web applications
Richard's Blog - Design, coding and life in Japan
Web Admin
Doctrine ORM Joys and Frustrations
Submitted by Richard on Wed, 04/14/2010 - 22:34I was to first make it clear that I think Doctrine is a fantastic ORM and my choice by far for any PHP project.
Tags:
Programmers are most effective when they avoid writing code
Submitted by Richard on Thu, 12/24/2009 - 10:36I stumbled upon this blog post which includes the statement 'Programmers are most effective when they avoid writing code'.
This got me thinking, particularly about some of the tools we use.
Tags:
Making multi website systems
Submitted by Richard on Thu, 11/26/2009 - 11:33I have realized over time that I get asked to do similar things again and again. I have set up websites that are similar to others I have made in the past. Of course the know how and the code sitting there waiting to be re-used means I can do this again more simply and quickly than the first time around!!
So is this the way to do it............. NO!
Tags:
A bash script to download your remote MySQL schema and load it locally
Submitted by Richard on Tue, 11/10/2009 - 16:46#!/bin/bash REMOTEUSER=username REMOTEPASS=password REMOTECOMPUTER=remotecomputer.com REMOTEMYSQLUSER=mysqllogin REMOTEMYSQLPASS=mysqlpass DB=database FILENAME=dbschema.sql LOCALMYSQLUSER=localuser LOCALMYSQLPASS=localpassword ssh -l "$REMOTEUSER" "$REMOTECOMPUTER" "mysqldump -u$REMOTEMYSQLUSER -p$REMOTE
{syntaxhighlighter brush: bash;gutter: false; fontsize: 100; first-line: 1; }#!/bin/bash REMOTEUSER=username REMOTEPASS=password REMOTECOMPUTER=remotecomputer.com REMOTEMYSQLUSER=mysqllogin REMOTEMYSQLPASS=mysqlpass DB=database FILENAME=dbschema.sql LOCALMYSQLUSER=localuser LOCALMYSQLPASS=localpassword ssh -l "$REMOTEUSER" "$REMOTECOMPUTER" "mysqldump -u$REMOTEMYSQLUSER -p$REMOTEMYS
Tags:
Meeting with the big guys! (Hitachi Systems)
Submitted by Richard on Fri, 10/23/2009 - 13:48With one of the contract clients I am working, I am dealing with a large lighting company called Daiko, we are going to put in place a stock availability function into our website to connect with Daiko's inventory data.
Tags:
Recent Blog Posts
- Doctrine 2 and why you should use it! 29th Jul 10, 15:23
- How to localize your main blog listing page using Drupal 26th Jun 10, 11:46
- Creating Rails like template helpers in Django 24th Jun 10, 22:01
- Error: No module named messagesdjango.contrib.contenttypes 22nd Jun 10, 22:00
- Creating multiple blocks easily in a Drupal module pt2 8th Jun 10, 14:12