Connect With WRD
feed via e-mail
feed via e-mail

Posts Tagged ‘Yahoo’

simpleWeather is a jQuery plugin for fetching any weather-related data from Yahoo! Weather.

It makes use of the YQL API and can bring weather details of any location by mentioning their name (or zip code – US only).

simpleWeather jQuery Plugin

The data returned includes current/max temperature (in fahrenheit or celcius), humidity, pressure, visibility, wind speed/direction and the weather condition image. There is also support for the forecast of the next day.

Weather condition images are provided by Yahoo! but custom ones can be used too (Free Weather Icons Collection).

There are various new and exciting stuff with the website development like HTML5 and CSS3.

But, when it comes to designing HTML e-mails, it is still the tables and hacks for improving compatibility with different e-mail clients.

HTML E-mail Boilerplate is a project which presents a starting point for HTML e-mail design and includes solutions for the major rendering problems with the most common email clients.

The code is very well documented and the download pack includes a non-documented version).

HTML E-mail Boilerplate

Accessible Audio Player (AAP) is a cross-browser audio player with playlist support that is created for people with disabilities in mind.

It uses the HTML5 <audio> element for browsers that support it, and the Yahoo! Media Player for those that don’t.

Accessible Audio Player

If a browser can't use any of the options above, the player displays a list of links to the mp3 files.

The player can switch to the next track automatically or with the help of prev-next buttons and its voice can be controlled.

There is also a WordPress plugin for AAP for easier integration with the CMS application.

Exactfactor is a free web based service that enables you to analyze the positions of keywords of a website in major search engines.

It lets you to add competitors & compare your website’s results with a competitor.

SEO Keyword Compare

Another nice feature is the ability to add alerts. You can get alerts when:

  • keywords you mentioned become the top 1, top5, etc. in the search engines
  • your website beats a competitor for the given keywords

Exactfactor is very easy to use with a clean interface & considering search engines are the most important "factors" of traffic, the service is definitely helpful.

FlashFlickr PhotoGallery is an open source photo gallery built with Flex 2 / AS3.

The application enables users to browse your Flickr pictures, see your sets, tags and notes within your website from a good looking interface.

Flash Flickr Photo Gallery

The gallery has a location map feature built with Yahoo AS3 libraries that shows the location of the image (if mentioned) using Yahoo maps. This requires a Yahoo API key.

It also has the Flickr authentication for Flickr registered users. This way, registered users can also add comments, tags (if allowed) to the images (Flickr API key needed).

Yahoo! has a nice library of design patterns which can be summarized as a list of optimal solutions to common design problems.

Whenever we start to design a new website – an application, we need to decide on lots of things like "what type of pagination I will use, will I use auto-complete for forms and so.

Design Pattern Library

Yahoo! Design Pattern Library aims to answer these questions with providing the generally accepting methods and information. Although tools and logics needed to be used may differ, it is a nice resource for seeing the optimum.

  • Tags:
  • Filed under: Extras, Info, No License
  • 0 Comments
  • The title is fun, I know (and I love Lords Of The Rings).

    Mapstraction has kind of a similar logic. It provides a common API for the major mapping providers. This means, when you code with Mapstraction API, you can easily switch from Yahoo Maps to Google maps or else.

    You can even use this power to create creative solutions like this syncronizing maps example:

     JavaScript Map API

    Some features of this mapping API:

    • Support for 9 major mapping providers
    • Point, Line, Polygon support
    • Image overlay
    • GeoRSS and KML feed import
    • Geocoding of addresses
    • Driving directions

    CSS Grid Builder is a web tool which can create standards-compliant grid layouts with a few clicks.

    Outputs are generated with the powerful Yahoo! UI Library: Grids CSS which offers pre-built templates & page layout combinations.

    Auto CSS Grid Builder

    YUI Grids CSS:

    • Supports fluid-width (100%) layouts as well as preset fixed-width layouts at 750px, 950px, and 974px, and the ability to easily customize to any number.
    • Supports easy customization of the width for fixed-width layouts.
    • Flexible in response to user initiated font-size adjustments.
    • Template columns are source-order independent, so you can put your most important content first in the markup layer for improved accessibility and search engine optimization (SEO).
    • Self-clearing footer. No matter which column is longer, the footer stays at the bottom.
    • Layouts less than 100% are automatically centered.
    • Accommodates IAB’s Ad Unit Guidelines for common ad dimensions.
    • Offers full A-grade browser support.

    CSS Grid Builder is a quick solution specially for Yahoo! UI Library users or web developers who are better in coding rather than design.

    Robots.txt file usage is sometimes ignored. On the other hand, it is an important factor for the webpages being indexed properly and very easy to setup.

    I know that robots.txt is not something new. But, I’ve been preparing a SEO sheet for a while and wanted to share this small & useful portion with you.

    What is robots.txt?

    Robots.txt is a file that is used to exclude content from the crawling process of search engine spiders / bots. Robots.txt is also called the Robots Exclusion Protocol.

    Why to use robots.txt?

    In general, we prefer that our webpages are indexed by the search engines. But there may be some content that we don’t want to be crawled & indexed. Like the personal images folder, website administration folder, customer’s test folder of a web developer, no search value folders like cgi-bin, and many more. The main idea is we don’t want them to be indexed.

    Is robots.txt file a certain solution?

    No. Standards based bots like Google’s, Yahoo’s or other big search engine’s robots listen to your robots.txt file. This is because they are programmed to. If configured so, any search engine bot can ignore the robots.txt file. Result: there is no guarantee.

    How to use robot.txt file?

    Robots.txt file has some simple directives which manages the bots. These are:

    • User-agent: this parameter defines, for which bots the next parameters will be valid. * is a wildcard which means all bots or Googlebot for Google.
    • Disallow: defines which folders or files will be excluded. None means nothing will be excluded, / means everything will be excluded or /folder name/ or /filename can be used to specify the values to excluded. Folder name between slashes like /folder name/ means that only folder name/default.html will be excluded. Using 1 slash like /folder name means all content inside the folder name folder will be excluded.

    There are also some other parameters which are only supported by all browsers. These are:

    • Allow: this parameter works just the opposite of Disallow. You can mention which content will be allowed to be crawled here. * is a wildcard.
    • Request-rate: defines pages/seconds to be crawled ratio. 1/20 would be 1 page in every 20 second.
    • Crawl-delay: defines howmany seconds to wait after each succesful crawling.
    • Visit-time: you can define between which hours you want your pages to be crawled. Example usage is: 0100-0330 which means that pages will be indexed between 01:00 AM – 03:30 AM GMT.
    • Sitemap: this is the parameter where you can show where your sitemap file is. You must use the complete URL addres for the file.

    Robots.txt example:

    User-agent: * #allows all search engine spiders.
    Disallow: /secretcontent/ #disallow them to crawl secretcontent folder.

    Resources:
    http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=40360
    http://www.robotstxt.org/
    http://www.searchtools.com/robots/robots-txt.html
    http://en.wikipedia.org/wiki/Robots.txt

    Yahoo Media Player is a browser based MP3 player which lets you play music from any website quickly.

    Yahoo Media Player, after inserting a javascript code to your pages, searches for the MP3 files and creates a playlist.

    Yahoo Media Player

    How to use Yahoo Media Player?

  • Link to audio

    Insert one or more anchor elements containing the URL of an audio file into your web page. For example:

    <a href="example1.mp3">My first song</a>
    <a href="example2.mp3">My second song</a>

  • Embed the Player

    Copy and paste this code into your page:

    <script type="text/javascript" src="http://mediaplayer.yahoo.com/js"></script>

  • Use the player

    This play button will appear next to each of your audio links: Yahoo Media Player

    Press a play button. The Yahoo! Media Player will open.

  • Uptime Robot
    feed-holder
    FeedBurner
    HotScripts Marketplace
    PSD2HTML.com