At first glance, new #Wordpress TwentyThirteen theme looks like Tumblr. Smells like Tumblr too.
— Purple Web Marketing (@purpleweb) August 5, 2013
In anticipation of the mahoneywebmarketing co hotline arriving…
In anticipation of the mahoneywebmarketing.co hotline arriving tomorrow (well, I’m just making my mobile number dedicated for work) I’m also moving my peter@mahoneywebmarketing.email email to Google Apps.
Awesome.
Share your feedback
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.
- « Previous Page
- 1
- …
- 18
- 19
- 20
- 21
- 22
- …
- 53
- Next Page »