2008
150 open documents in Photoshop - long day of work
Popularity: 3% [?]
Popularity: 3% [?]

Let’s say, hypothetically, that you are a designer, and are working on a design comp for a Christian Science church or reading room, and you wanted a high resolution vector version of the logo to use in your mock-up so you didn’t have to chop out background garbage out of some low-resolution version of the logo you found on the web somewhere. What should you do?
In the Cross and Crown trademark licensing documentation, you will find the following instructions:
Two approvals are necessary:
(1) for your type of use (sign, etc.) and
(2) for the actual form of your use (how the sign appears).
Therefore, if you already have a sample or mock-up of the proposed use, please send it by e-mail or regular mail along with the Request Form, so both approvals can be done simultaneously. It will save you time later.
Unfortunately, they do not currently provide any links to a high-resolution version of their logo for purposes of laying out a design, which would be very helpful to all the designers out there trying to help their clients prepare a mock-up of the proposed usage.
Or do they!??
Interestingly, they do happen to include the logo in their announcement PDF about the licensing terms. If you are a designer, and are in need of a vector version of the logo, you should have no problem saving the linked PDF, opening it up in Illustrator and copying the high-resolution logo artwork contained therein for use in your comps.
Once you’ve copied it out into a new document you may need to release two clipping paths to get at the actual logo paths, which you can then change the color of as needed, resize, save as an .EPS or .PDF, place in Photoshop, etc.
You still need to get their permission to use the logo in a final production setting, but now when you submit your design mock-up at least the logo will look as crisp and correct as it can.
Popularity: 15% [?]
In preparation for upgrading a whole mess of sites to using the latest version of WordPress I decided it was time to finally upgrade my own site and to implement the new design I’d been working on for a while (for over a year now).
Popularity: 38% [?]
As part of getting an upgraded server set up and transferring sites from the older server, I had to re-install PEAR XML_RSS. One of its dependencies is XML_Tree.
Normally, this command should have worked with no problems:
pear install XML_RSS
It downloaded XML_RSS just fine, but then choked on XML_Tree, which was a required dependency.
Initial output:
# pear install XML_RSS
Did not download dependencies: pear/XML_Tree, use --alldeps or --onlyreqdeps to download automatically
pear/XML_RSS requires package "pear/XML_Tree"
No valid packages found
install failed
My next try was to specify installing XML_Tree:
# pear install XML_Tree
WARNING: "pear/XML_Tree" is deprecated in favor of "pear/XML_Serializer"
downloading XML_Tree-1.1.tgz ...
Starting to download XML_Tree-1.1.tgz (4,826 bytes)
.....done: 4,826 bytes
XML error: not well-formed (invalid token) at line 10
Download of "pear/XML_Tree" succeeded, but it is not a valid package archive
Error: cannot download "pear/XML_Tree"
Download failed
install failed
After some troubleshooting, here is how I fixed this problem:
cd /tmp/pear/cache/pear clear-cachetar xvfz XML_Tree-1.1.tgzvi package.xmlESC :wq)rm -rf XML_Tree-1.1.tgztar cfv - package.xml XML_Tree-1.1/ | gzip > XML_Tree-1.1.tgzpear install -O XML_Tree-1.1.tgz XML_Tree is now installed. You should now be able to continue installing XML_RSS normally.
Popularity: 12% [?]
Google’s new Charts API is very cool. I am interested to see how we might possibly use that with Collabofit to do additional charting.
Here’s the code used to generate that graph above:
http://chart.apis.google.com/chart?
cht=lc
&chs=500x300
&chd=s:GabrielSerafini2007
&chtt='Gabriel%20Serafini%202007'%20Using%20the%20New%20Google%20Charts%20API
&chxt=x,y
&chxl=0:|1976|1986|1996|2007|1:||Cool||Amazing||Awesome
Very simple, clean, elegant and neat.
Popularity: 9% [?]
I’ve had this domain name for a while and finally built something on it. The idea is to figure out good ways to save money on car insurance. We have USAA for ours, which makes it nice because it is a pretty good rate. Some people need extra help, though, to find the best prices. Hopefully this site will assist them in their search.
It is built using WordPress, and will hopefully pay for itself through the Google Adsense ads.
Popularity: 14% [?]
Found this useful plugin from this site while working on a site that was in the middle of getting dugg/reddited:
WP-Cache is an extremely efficient WordPress page caching system to make your site much faster and responsive. It works by caching Worpress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and then building the page from the database. WP-Cache allows to serve hundred of times more pages per second, and to reduce the response time from several tenths of seconds to less than a millisecond.
Popularity: 11% [?]
I’m working on a new site relating to Gramm-Leach-Bliley Act compliance (it will replace the useless site that is currently up at grammleachblileyact.com) and was looking for breadcrumb functionality and a better way to manage outputting links from the Blogroll on the links.php page.
I had searched for a good WordPress breadcrumbs plugin a while ago, and the ones I found didn’t really impress me. I’m really happy with the one I ended up finding this time. It’s called Breadcrumb Navigation XT and it does exactly what I was looking for. I’ll be using this probably for any future needs when it comes to breadcrumbs and WordPress.
The second plugin that I found was related to fixing how WordPress currently outputs links using the default get_links_list() function used in most links.php template pages right now. I had used on the XyzAnt.com links page another WordPress function (wp_list_bookmarks()) that only works for WordPress 2.1 and higher, and is still undergoing active development / documentation. That function, however, only allows you to output the description, and doesn’t appear to include the functionality to show notes. Since there is a larger amount of allowable text for the notes field, and that is what I needed, I still needed to find (or write) a solution to outputting all links, ordered by category, displaying the notes field as well as link title, url, image, etc. This is the plugin that I found that does just this (found it after writing about 80% of the same functionality myself). It does just what I was looking for, shows all the categories that contain links and the links within each category.
Plugin author’s latest post about WordPress 2.1 support: Link Library now supports Wordpress 2.1
Popularity: 18% [?]
For quite a while, RSS2.com has been slow. Ever since it hit, oh, around 1.4 million items in its database (now up over 2 million) the queries that were responsible for building the home page view had gotten slower and slower.
The problem was one of normalization, and the desire to not have data going into two places. The design originally worked this way:
feed_id. This was running against the feed_data table, which now has over 2 million rows.feed_id found. Originally, I couldn’t figure out a way to do this all in one query. So this was another 10 individual SQL queries, looking up information about the feed needed to display on the home page (like the name of the feed, URL, etc.) This query did a join of the feed_data with the feed_info tables. This is what took progressively longer and longer, the more rows in the feed_data table.This ended up being really, really slow on the homepage load (like over 2 minutes). This was obviously too slow. I implemented caching at a number of layers to mitigate the problem, which made for a very speedy second page load, but the first one was still way too slow.
After consulting with my friend Ben, he agreed that it was an inherently expensive query to run. We agreed that it needed to be re-architected to be able to significantly improve performance.
The new design required creating a new table dedicated to the home page posts where, when a RSS feed is read, it inserts the most recent new item into the new table.
The new process works like this:
feed_data table, and the feed_info table is updated as well with a last checked timestamp.REPLACE command, with the combined feed information as well as item informationThese new changes have made using RSS2.com much more usable again, and it is way faster. The homepage loads in under a 1/2 second now, just like it should.
Popularity: 7% [?]
Nice article on ALA about how to create a layout using almost pure CSS where there is a fixed-width sidebar and a dynamically resizing right-hand main content area without using Javascript to dynamically resize the page.
All right, class. Using CSS, kindly produce a liquid layout that contains a fixed-width, scrolling side panel and a flexible, scrolling main panel. Okay, now do it without JavaScript.
Popularity: 8% [?]