Fuel for a great web experience

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    7 Favorites

    Fuel for a great web experience - Presentation Transcript

    1. Fuel for a great web experience. Christian Heilmann | http://wait-till-i.com | http://scriptingenabled.org La Cantine, Paris, April 2009
    2. As web developers our job is to build interfaces.
    3. Interfaces that allow people to reach their goals easily.
    4. Today I am here to talk to you about tools that make it easy for you to do that.
    5. All of which are part of what we offer you.
    6. And are free for you to use.
    7. For all this, you need to remember one URL:
    8. http://developer.yahoo.com
    9. I will talk about 7 things we offer and how to use them.
    10. 1 We provide a great online experience.
    11. Yahoo’s products are built by teams of experts who are passionate about their jobs.
    12. We try our hardest to make things work for everybody out there.
    13. This means first and foremost to take the time and think about what we are trying to achieve.
    14. Analyse what users want to do here: Define type of search, enter search term, submit form.
    15. Then use what allows them to do exactly that.
    16. How about this one?
    17. Analyse what data you display, and find the easiest way to show it. Then make it look the way you want it to.
    18. Sometimes you need to make technologies work by building workarounds.
    19. Screenshots of uk.video.yahoo.com with and without JavaScript http://uk.video.yahoo.com/
    20. We build things using progressive enhancement.
    21. Without JavaScript With JavaScript http://developer.yahoo.com/yui/examples/autocomplete/ac_basic_array_clean.html
    22. Without JavaScript With JavaScript http://developer.yahoo.com/yui/examples/datatable/dt_enhanced.html
    23. Once we found out the goals of our users, we drive for excellence.
    24. http://finance.yahoo.com/currency-converter? u#from=USD;to=EUR;amt=1
    25. http://developer.yahoo.net/blog/archives/ 2009/01/accessible_converter.html
    26. 2 We share the data that drives this experience.
    27. Our research with users resulted in patterns that we apply to help people reach their goals as quickly as possible.
    28. These patterns are available for you to apply to your own products.
    29. http://developer.yahoo.com/ypatterns
    30. http://developer.yahoo.com/ypatterns/wireframes/
    31. Under the hood, our systems are driven by APIs to make sure we can scale products to our size.
    32. These are available to you, too.
    33. http://developer.yahoo.com/everything.html
    34. 3 We share the research we’ve done to make it a smooth experience.
    35. The exceptional performance section of YDN provides detailed information on how to make your products behave faster.
    36. http://developer.yahoo.com/performance/
    37. 4 We provide building blocks to build your own great experience.
    38. http://developer.yahoo.com/yui/
    39. The Yahoo User Interface library is a CSS and JavaScript framework to build working web applications and sites.
    40. http://developer.yahoo.com/yui/grids/builder/
    41. Unlike other frameworks YUI is not a catch-all solution but is cut up into modules, each fulfilling one job.
    42. You can use any of these modules on their own, even together with other libraries.
    43. We’ve used these modules to create reusable widgets based on out design patterns.
    44. http://ui.jquery.com/ http://ui.jquery.com
    45. The YUI widgets come with an own style that can be fully customised.
    46. http://developer.yahoo.com/yui/articles/skinning/
    47. They all are event driven which means you can change their workings without changing their code.
    48. http://developer.yahoo.com/yui/examples/autocomplete/ ac_basic_xhr_log.html
    49. 5 We provide tools to improve your products.
    50. All our products are built around a defined methodology defining browser support.
    51. http://developer.yahoo.com/yui/articles/gbs/
    52. You can use this methodology to scope out client work without over promising.
    53. One great tool to test the quality of a web sites is YSlow.
    54. How can you make it faster? http://developer.yahoo.com/yslow/
    55. http://developer.yahoo.com/yui/logger/
    56. http://developer.yahoo.com/yui/profilerviewer/
    57. http://developer.yahoo.com/yui/yuitest/
    58. 6 We offer amazingly easy interfaces to the web.
    59. First there was Pipes.
    60. http://pipes.yahoo.com
    61. However, Pipes was too complex and not flexible enough as you cannot change a pipe programatically.
    62. So we came up with a query language for the web: YQL.
    63. Say you want to get photos of Paris that you are allowed to show in your own products.
    64. You need to define Paris without a doubt. select woeid from geo.places where text='Paris,france'
    65. Then find photos that were taken there. select id from flickr.photos.search where woe_id in (select woeid from geo.places where text='paris,france')
    66. Check that they have the right license. select id from flickr.photos.search where woe_id in (select woeid from geo.places where text='paris,france') and license=4
    67. And get all the information about them. select * from flickr.photos.info where photo_id in (select id from flickr.photos.search where woe_id in (select woeid from geo.places where text='paris,france') and license=4)
    68. http://developer.yahoo.com/yql http://developer.yahoo.com/yql/console/?q=select%20*%20from %20flickr.photos.info%20where%20photo_id%20in%20(select%20id%20from %20flickr.photos.search%20where%20woe_id%20in%20(select%20woeid %20from%20geo.places%20where%20text%3D%27paris%2Cfrance%27)%20and %20license%3D4)
    69. You have the data, now you can build a nice interface to show it.
    70. http://isithackday.com/hacks/cantine/index.php?loc=paris,france
    71. All without having to spend hours on reading either the Flickr or the GeoPlanet API docs :)
    72. Using YQL and YUI you can create a whole web site maintained elsewhere.
    73. YQL makes access to all kind of APIs very easy.
    74. What if you want to add yours?
    75. YQL has a concept of “Open Tables”.
    76. This means you can tell us about your API endpoint and parameters in an XML schema...
    77. ...point to this schema and use it as a table in YQL.
    78. For example: Twitter.
    79. use \"http://github.com/spullara/yql-tables/raw/ 4832c92c38389e98f5ceef017f61d59a9e027664/twitter/ twitter.user.timeline.xml\" as twitter; select title,link from twitter where id='codepo8'
    80. There’s a repository of open tables available on github.
    81. http://github.com/spullara/yql-tables/tree/master
    82. Add yours, get people to use your API and get famous :)
    83. 7 We offer our search index to tailor to vertical markets.
    84. http://developer.yahoo.com/search/boss/
    85. http://ask-boss.appspot.com/
    86. http://ask-boss.appspot.com/
    87. view=searchmonkey_feed view=searchmonkey_rdf http://developer.yahoo.com/search/boss/ structureddata.html
    88. http://keywordfinder.org
    89. So there you have it – 7 things we offer you as developers to use and learn from.
    90. We’re improving our work by getting your feedback and seeing your implementations.
    91. And you can build much better products by basing them on working solutions and concentrating on the delivery of your products rather than problems we already had to solve for you.
    92. Come and grab and show us what you can do!
    93. Thanks. Any questions? Christian Heilmann http://icant.co.uk http://wait-till-i.com http://scriptingenabled.org http://twitter.com/codepo8

    + Christian HeilmannChristian Heilmann, 6 months ago

    custom

    2395 views, 7 favs, 7 embeds more stats

    My talk at the developer evening at La Cantine in P more

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 2395
      • 2224 on SlideShare
      • 171 from embeds
    • Comments 0
    • Favorites 7
    • Downloads 16
    Most viewed embeds
    • 110 views on http://www.wait-till-i.com
    • 43 views on http://developer.yahoo.net
    • 13 views on http://icant.co.uk
    • 2 views on http://feeds.feedburner.com
    • 1 views on http://www.hanrss.com

    more

    All embeds
    • 110 views on http://www.wait-till-i.com
    • 43 views on http://developer.yahoo.net
    • 13 views on http://icant.co.uk
    • 2 views on http://feeds.feedburner.com
    • 1 views on http://www.hanrss.com
    • 1 views on http://feeds.developer.yahoo.net
    • 1 views on http://notebook.zoho.com

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories