I have never done any objective C or Cocoa programing nor do I really want to. I like the book, which has an online version you can view here or even an iPhone app.
Font replacement aka dynamic text replacement has been around since 2004. I did not start using it till late 07 but lately it seems to be a hot topic again. Mostly because it has become a lot easier to implement I believe and SEO has become more prevalent.
Which font replacement technique should you use?
I have been trying to find the best font replacement technique. I have not found a clear winner but font replacement can now be done just with JavaScript. It uses SVG or VML I believe to have the browser draw the font so to speak.
How font replacement works.
Currently I have been using cufon but not on this site. (I am using Flir now but not much longer.) It is strictly JavaScript which is nice no more setting permissions on the server or worrying if the gd 2 library is installed.
It is really easy to implement, and seems to more accurately render the font spacing and details then Flir aka Facelift Image Replacement.
Flir is a server side font replacement that uses php, and javascript to redraw an image on the fly of a font. It works really well but letter spacing does not work so great when you use smaller font sizes. Also there was a fairly bug that need to be patched a few months ago.
Other than that is great and is easier to use than sifr which uses flash to replace fonts. I am not a flash guy though so that may be why I have a bit of a bias towards Flir.
Typeface is another js font replacement tool. It does not use php and is very similar to cufon. You can read more about cufon vs typeface here. The best way to know is just to try. I have not used typeface yet but would be interested to hear your comments.
How to install and use Cufon
Below is a quick tutorial of how to use cufon, by Jeffrey Way of nettuts.com.
Not another jQuery site? Well sort of …. If you think you have got what it takes to write for jQuery journal let me know. This site is for beginners and we are looking for tutorials.You can view it here:
Work directly with writers and in house designer to update site. The existing site was created all in perl and this update converted it all to php. Also created back end administration to post articles, manage subscriptions and moderate site. View site.
South Dakota Emergency Nurses Association needed a design for the website. All work was created in Photoshop CS3 and delivered within the budgeted time line. Design was delivered as psd file to driver websites. Website has not yet been published as of this date.
Well I am not sure how much effort this will take but I am starting to build my own controller (Why? Well for work … mostly and for curiosity also) . I will share some insights here as I progress.
It is going to be loosely based off ideas from these two sites.
A nice wordpress tip. IF you want to add RSS you can do so by just using the built in rss parser.
See the code below. Just add your rss url in the wp_rss function your done.
However this is outdated! See below for a better way to do this.
Old Way: (This may cause invalid characters when using UTF 8 encoding.)
[sourcecode language='php']
wp_rss('http://rss-feed-url', 10); ?>
[/sourcecode]
And Now for a better Way:
[sourcecode language='php']
include_once(ABSPATH . WPINC . '/feed.php');
// Get a SimplePie feed object from the specified feed source.
$rss = fetch_feed('http://example.com/rss/feed/goes/here');
// Figure out how many total items there are, but limit it to 5.
$maxitems = $rss->get_item_quantity(5);
// Build an array of all the items, starting with element 0 (first element).
$rss_items = $rss->get_items(0, $maxitems);
?>
No items.
‘;
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?>