I got less than 5-stars, once. Just once. And that was only because my customer clicked on 4 by mistake. They were very apologetic!
Permanently moving website to a new domain
You really want to add this to your .htaccess file:
Redirect 301 / http://your-new-domain
Let’s break that down.
- “Redirect” is pretty obvious, it tells the web server to redirect the request.
- “301” is a special code that tells any search engines that come by that this change is permanent, and they should update their results to reflect the new URL. (Using “302” instead would set it as a temporary move.)
- “/” just means the entire site, from the very top directory has been moved.
- “http://your-new-domain” or indeed, whatever your new URL is, is the new domain that all requests should be sent to. Note the final “/” on the end.
Easy peasy! Now all bookmarks, and search engine results will still be valid and get people to your new address, with one short piece of code.
I just reduced a client’s homepage load time…
I just reduced a client’s homepage load time by 50%. Sweet.
Gwibber and the new Twitter API
I noticed Gwibber, my social networking app for Ubuntu, stopped updating my Twitter status after the API was updated. Basically, it was broken.
And as of yet, it’s not been patched.
Here’s a fix I used to get Ubuntu updating my Twitter account again.
[sourcecode]pkill gwibbersudo gedit "/usr/share/gwibber/plugins/twitter/__init__.py"[/sourcecode]
Then search and replace “api.twitter.com/1” to “api.twitter.com/1.1”
Tada!
For the sake of honesty, I’ll admit I didn’t find this fix myself, I found it here.
On moving home
In some ways we’re still moving, but telling ourselves we’ve settled (or at least are settling) into the house we plan for our kids to grow up in.
We’re thrilled to have bought a house in this economy, in our favourite town (Glastonbury). There was some fairly well-attended shindig in the area around the time we moved, but by and large it stayed out of our way.
The day of the move was itself stressful—as they tend to be. Everything took longer than planned; we got everything in only to realise we’d designated the wrong rooms and needed to move it all about, and just where the hell are my clean pants anyway.
And now I find myself settled in my office, with my computer on, speakers operational, second monitor shining it’s light upon me, and I’m struck by how reliable the net can be.
Sure, Facebook can’t make up its mind how it wants to dress itself, email servers can be a bit of an arse sometimes, and Amazon is still convenient, if not a bit ethically questionable.
But it’s all right there. The methods I use to interact with friends and family across the world, the means to put dinner on my families table—they haven’t changed.
My surrounds have, but I have this little window through which the world doesn’t look so different.
And while technology is mercifully always adapting, it can also function as as a dependable “room with a view” from any house, train, or airport lounge.
In turn I reflect on my own website. While I was packing boxes, only to unpack them the next day, and helping move heavy bits of furniture that I’m sure we paid someone else to carry about, my website was viewed by 200 different people.
I’ve carved out a piece of digital real estate, that even in my absence, when my mind is firmly elsewhere, still attracts people from all manner of places. It’s a good thing I’m happy with it.
Good web development
Good web development isn't just about getting information online, but making something USEFUL. #UI
— Purple Web Marketing (@purpleweb) July 3, 2013
- « Previous Page
- 1
- …
- 28
- 29
- 30
- 31
- 32
- …
- 62
- Next Page »