So last week I’ve started sharing a lot more of what I read on a day to day basis on Twitter, and I decided I had to share these links here on yoast.com as well. Below is a quite extensive list of links that I found interesting, ordered by topic. I’ll try to do these [...]
Yoast tweaking websites
Not only am I an SEO, I’m fairly good at webdesign as well. With webdesign I mean the translation of a nice idea by someone else into completely valid templates, others are often better in creating nice looks for a site. I’ve started my own webdesign company on the side for this: AlthA Webdesign.
Next to webdesign, I do a lot of web development using PHP, mainly using the different API’s of the search engines and social media networks out there to create mash ups.
Practical Guide to 404 Error Pages: What WordPress is Missing
I make mistakes. You make mistakes. We all do. And some of these mistakes end up providing our readers with a 404 page. Chances are that page says “Error 404: file not found”. How does that help your visitor? Instead of just identifying the problem, your 404 page needs to offer a solution. In the [...]
Using the Technorati API on your blog
In my effort to remove all badges from my front page and decrease the load time, I have now moved to using the Technorati API to display Technorati info. It looks like this: The code is almost as easy as the code to display your FeedBurner subscribers or your last tweet. You’ll need to create [...]
The full guide to mailto links!
For a small project I had to create a smart mailto: link to make my life a bit easier. I wanted it to hold not only a to and the subject (I’d figured that much out) but a multi lined body too. Turns out that is pretty darn easy to do. So, for my own [...]
Categories: Webdesign & development
Added a print CSS style sheet
Today, I checked an item off on my todo list that had been on there way too long: I created a print style sheet for this site. Every time I write an article that is longer than 5 paragraphs, I get emails from readers asking for a better print style sheet. Until just a few [...]
Get the number of popular digg posts for a URL
Sometimes, for instance when you’re building a domain-info tool, you want to know the number of posts on that site that have made it to the Digg frontpage. After playing a bit, I came up with this pretty easy code: [code language="php"] function FrontpageDiggs($url) { $result['source'] = "http://digg.com/rss_search?search=".$url."&area=promoted&type=url§ion=all"; $output = file_get_contents($result['source']); preg_match_all("/.*().*/",$output,$matches); $result['result'] = count($matches[1]); [...]
Categories: Webdesign & development
OS X 10.5 Leopard: Spaces combined with Parallels
OS X 10.5 has this awesome great new feature called Spaces, they’re multiple desktops on steroids. You can assign programs to open in a specific Space, swiftly switch between them and loads more cool stuff. Now, if you’re a developer and need to test your stuff in Windows, you can assign Parallels (in which you [...]
Categories: Webdesign & development
Big hunkin’ list of Mac Tools for SEO’s and Webdevelopers
I’ve been wanting to do this list for quite a while, but I finally put myself to doing it: a big list of all the web development and SEO tools I use on my Mac. It’s a page, I’ll keep updating it when I find new apps that are worth mentioning there. If you have [...]
Webdesign survey
It’s up again, the annual webdesign survey by A List Apart, I took it, and so should you! (If you don’t like surveys do it for the prizes…)
Categories: Webdesign & development
Implementing a sitewide search function
Those of you coming to this site more often might have noticed a small change in the search box. It’s now implemented sitewide, and I’ve built a sitewide search functions using the Yahoo! API. It was quite nescessary because I found that people were searching for “sortable.zip” on the blog, and they wouldn’t find anything [...]
Categories: Webdesign & development