Skip to content
  • Fri. Feb 3rd, 2023

Chris Tate-Davies

A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'

  • Home
  • About
Top Tags
  • MySQL
  • linux
  • terminal
  • PHP
  • ubuntu
  • mac
  • jquery

Latest Post

Finding text in files in a folder Calculation for working out overage Auto-complete Lists in HTML5 HTML5 Boilerplate MySQL / MariaDB Superuser
IT

Finding text in files in a folder

Jan 4, 2022 admin
Uncategorized

Calculation for working out overage

Oct 25, 2021 admin
HTML JavaScript JQuery

Auto-complete Lists in HTML5

Jul 9, 2021 admin
HTML

HTML5 Boilerplate

Apr 8, 2021 admin
IT MySQL

MySQL / MariaDB Superuser

Mar 4, 2021 admin
IT

Finding text in files in a folder

Jan 4, 2022 admin
Uncategorized

Calculation for working out overage

Oct 25, 2021 admin
HTML JavaScript JQuery

Auto-complete Lists in HTML5

Jul 9, 2021 admin
HTML

HTML5 Boilerplate

Apr 8, 2021 admin
IT

Rename a branch in SVN

May 14, 2015 admin

If you made a typo or a similar mistake when naming your new branch, and you want to rename it,…

IT

Mac OSX – Can’t eject disk (in use)

Apr 13, 2015 admin

So you get that annoying “The volume can’t be ejected because it’s currently in use.” message trying to unmount your…

IT

svnX – Use DiffMerge as diff tool

Apr 7, 2015 admin

So, I use svnX on MacOSX and I find DiffMerge a much nicer application than the default FileMerge, but I…

IT

Plex – External FAT32 USB drive

Mar 18, 2015 admin

So, trying to use a Linux Mint laptop and Plex for a lower power consumption server seemed a good idea,…

IT MySQL

Mysqldump all databases and gzip

Mar 2, 2015 admin

So, quick and simple MySQL backup in a CRON. #!/bin/bash _hour=`date '+%H'`; _user="root"; _pass="thepassword"; _dest="/srv/backups/daily/"; mysqldump -u $_user -p$_pass --all-databases…

IT

Grep duplicate JSON keys

Jan 28, 2015 admin

If you have large JSON files with application settings in, you need to be sure that the settings only appear…

PHP

Case insensitive PHP in_array()

Jan 13, 2015 admin

Simple function for using in_array() with case insensitive querying. function i_in_array($needle, $haystack) { return in_array(strtolower($needle), array_map("strtolower", $haystack)); }

IT

Backup all SVN repos

Dec 11, 2014 admin

If you need to backup your SVN repositories, then you can use this bash script to do so: #!/bin/bash DATE=`date…

MySQL

Numerical Data Types in MySQL

Oct 29, 2014 admin

In most MySQL GUI’s that offer the ability to alter the table definitions of a schema, if you add a…

CSS IT JavaScript

Annoying IE Compatability Mode

Sep 24, 2014 admin

I recently had to create a site for an education facility, and they turn on Compatibility mode for all their networked…

Posts navigation

1 2 3 … 19
Tags
Access admin ajax apache bash centos class command command line config Console CSS date error events files find fonts google grep HTML install ip address iphone javascript jquery linux log mac microsoft mssql MySQL PHP regex regular expressions root service subversion svn terminal ubuntu vpn windows Zend zend framework
Recent Posts
  • Finding text in files in a folder
  • Calculation for working out overage
  • Auto-complete Lists in HTML5
  • HTML5 Boilerplate
  • MySQL / MariaDB Superuser
Recent Comments
  • admin on eXfat drive not working in Windows XP?
  • David Coleman on eXfat drive not working in Windows XP?
  • Matt on eXfat drive not working in Windows XP?
  • Michael on eXfat drive not working in Windows XP?
  • admin on VPNetMon – close programs when VPN drops

You missed

IT

Finding text in files in a folder

Jan 4, 2022 admin
Uncategorized

Calculation for working out overage

Oct 25, 2021 admin
HTML JavaScript JQuery

Auto-complete Lists in HTML5

Jul 9, 2021 admin
HTML

HTML5 Boilerplate

Apr 8, 2021 admin

Chris Tate-Davies

A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'

Proudly powered by WordPress | Theme: Newsup by Themeansar.

  • Home
  • About