Link To Full Story: www.wpbeginner.com
A while back we shared how you can control your WordPress RSS Footer with a use of a famous plugin called RSS Footer by Joost. While the plugin is great, but it is very limited. You can only add text to the footer, and it is always the same text displayed on each post’s footer. What if you want to display different text for each post in your RSS post? What if you want specific posts to have a different title in RSS Feeds? What if you want to display a specific custom field in your RSS Feeds? Well this is why we present you this article which will show you how to add any type of content in your WordPress RSS Feeds. This hack will put you in control of your WordPress RSS Feeds and you can manipulate it in anyway you want.
Note: This hack is not for beginners. Only users who feel comfortable with editing functions.php file and have some knowledge of php should try this. Beginner users should either use the plugin mentioned in the article above, or consult professionals like us to do it for you.
1. Add a Custom Field to your WordPress RSS Footer
In this first example, we will show you how you can use custom field to display specific text/object in your WordPress RSS Feed. This trick will allow you to show different text, advertisement, image, or anything else for each post. First open your functions.php and paste the following codes in the php tags:
Saturday, January 30, 2010
Link To Full Story: Webmonkey
From the weekend desk, two items announced late Friday afternoon we’d be remiss if we didn’t tell you about.
First, Google is officially dropping support for IE6. Come March 1st, the company is also going to start phasing out support for other older browsers from Apple, Mozilla and Google itself, but IE6 is the one everyone’s most happy to see gone. The notoriously buggy browser is still supported by some institutions and large organizations. The new minimum browser requirements in Google Apps will be Microsoft Internet Explorer 7.0, Mozilla Firefox 3.0, Google Chrome 4.0 and Safari 3.0.
Second, Mozilla has launched Firefox for mobiles running Nokia’s Maemo operating system. This is the first official 1.0 version of Mobile Firefox, and the first mobile browser ever to support add-ons. We took it for a test drive when it was still in beta and found it to be quite slick.
Saturday, January 30, 2010
Link To Full Story: www.webmonkey.com
It’s official, your Firefox syncing prayers have been answered — Weave 1.0 has arrived.
Weave is a free add-on for Firefox that syncs your data — bookmarks, browsing history, open tabs, Personas and stored passwords — across multiple PCs running Firefox and supported mobile devices. Weave is currently an add-on available through Mozilla Labs, but look for Weave to become a part of Firefox itself later this year.
Link To Full Story: www.seomoz.org
The
launch of
Open Site Explorer last week opens up a lot of link data, filters, and anchor text to a much wider audience than we've ever had before. In that same vein, today we're announcing our new and improved
SEOmoz Free API.
Any
registered (it's free) SEOmoz member can visit our
API Portal and get an
API key that gives you access to:
- Data for any URL in our index including
- Domain and Page Authority
- mozRank
- total link count
- external, followed link count
- The first 500 links to any page, sub domain or domain
- Filtering on those links: 301s, Follows, External, etc.
- The first 3 domains linking to any page, sub domain or domain
- The first 3 anchor text terms or phrases in links to any page, sub domain or domain
Link To Full Story: webhostinghelpguy.inmotionhosting.com
An article that details all the uses of PHP would be as long as the New York City phonebook, and about as exciting to read. And while we have tutorials on PHP planned for the future, we thought we’d start everyone off with six fun and easy PHP tricks you can try right now, no matter what your familiarity with the language is.
1. Referrals
This simple example shows the user how they got to your site.
$referer = $_SERVER['HTTP_REFERER'];
echo "You reached this site via " . $referer;
See It In Action: You reached this site via http://www.dzone.com/links/rss/php_tricks_for_beginners.html
Since a user knowing how they got to your site isn’t particularly useful, you need to combine the above script with something, such as a unique page for users who come to your site from a particular location. For example, the script below would send visitors who found your site through Twitter to one page, while all others would be redirected to another. This script, just FYI, needs to go at the very top of the page you’re building.
if (strlen(strstr($_SERVER["HTTP_REFERER"],"twitter"))>0) {
header ('Location: http://' . $_SERVER['HTTP_HOST'] . '/from_twitter.html');
} else {
header ('Location: http://' . $_SERVER['HTTP_HOST'] . '/not_from_twitter.html');
}
Link To Full Story: net.tutsplus.com
Requirements
To complete this tutorial, you'll need the following:
Introduction to PhoneGap
PhoneGap is an open-source framework that can turn any web app into a native app for iPhone, BlackBerry and Android. It pulls off
this trick by running your web code in a UIWebView, an embedded instance of Safari without the
toolbars and buttons of the standalone Safari app. PhoneGap then extends this basic functionality by mapping features of the
iPhone SDK to JavaScript objects you can call in your web code, so you can easily add features like GPS, camera, contacts, vibration,
SQLLite and accelerometer support. And when you're ready to distribute your app, PhoneGap 0.80 is Apple-approved!
Included in the PhoneGap distribution is everything you need to build and run an iPhone app. The included XCode project is bundled
with a sample code showing how to use many of the native features, and all the supporting files necessary to compile the app and
run it in the iPhone Simulator or on your phone.
Link To Full Story: www.joeyrivera.com
Zend Framework 1.10.0 is out and a comment was posted on my blog that lead me to creating this new post. I’m going to focus more on Zend_Paginator and Zend_Rest_Client to access Twitters API since I’ve already created a post on Zend_Cache. Normally, I would use Zend_Service_Twitter to access the twitter service but it still seems to require authentication to retrieve a users timeline where only protected users should require authentication.
Zend_Paginator
Zend_Paginator from the Zend Framework site:
Zend_Paginator is a flexible component for paginating collections of data and presenting that data to users.
Zend_Paginator automatically creates pagination for you by setting up a few parameters and passing it an array of data. What is pagination, if you have ever gone to Google and searched for anything, usually you’ll see something like the following at the bottom of the search results page:

See the numbers and the text links, this is called pagination. So much data exists for the particular search that it wouldn’t make sense to display it all in one page. It would cause large amounts of scrolling down to view, the load time of the page would be affected, so we rather show fewer results and give our users the option of viewing more by clicking on the pagination links.
To demonstrate how to use Zend_Paginator I created a sample Zend Framework 1.10.0 application. This application grabs my last 50 tweets using the Twitter API and displays them 10 at a time using Zend_Paginator. I use Zend_Cache to cache my twitter data so I don’t have to spend time accessing their api every time – I’m sure they would appreciate it.
Link To Full Story: www.thebitsource.com
The Bitsource conducted a review of the two cloud computing platforms, Rackspace Cloud Servers and Amazon Elastic Compute Cloud (EC2), to get a general idea of overall system performance. Included in the tests were pure computing power (CPU), and raw disk I/O throughput. Using a consistent testing methodology across most instance sizes over a two-month time span (a painstaking process requiring lots of patience) has resulted in the following comparison of CPU performance, disk performance and cost between the two platforms.
We hope that this evaluation will save the reader some effort by answering questions about how the two platforms compare in terms of time, power, efficiency and cost. The purpose of this article is to answer a simple question: How do the two platforms stack up against each other in terms of disk and CPU efficiency?
Link To Full Story: css.dzone.com
In this
video you can see Mestrallet demonstrate the following GateIn functions:
- Provide a simple text file with a list of addresses, deploy it on GateIn WebDAV drive
- Build with the online IDE a REST API on the cloud (using Groovy and the JSR 311 specification) that reads the content of that file and exposes it as a REST service with a simple click
- Consume that REST service within a Gadget and use the Google maps API to render a map that points to the address from the file
Wednesday, January 27, 2010
Link To Full Story: www.guardian.co.uk
World government data revealed
Data, data, data. There's loads of it out there and more coming your way as governments open their statistics vaults around the world.
First the US with data.gov, then Australia and New Zealand followed suit. Now it's the UK's turn with data.gov.uk.