front and back-end web development, Leeds, UK


Richard's Blog - Design, coding and life in Japan

Richard

Web Admin

Doctrine ORM Joys and Frustrations

 I 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

I 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

I 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

#!/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

#!/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)

With 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

Syndicate content