Skip to main content

Home/ centreforelearning/ Group items matching "API" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Obi-Wan Fareed

Overview - Tin Can API - 3 views

  •  
    This API captures data in a consistent format about a person or group's activities from many technologies.
  • ...1 more comment...
  •  
    Very interesting description of LRS. Do you think we can develop one or more of our own?
  •  
    Hi Ashley, I've been reading through this section for developers: http://tincanapi.com/page-developers/. From what I understand so far, an LRS should do at least one of the following: - Standardize and serialize the various types of data from different networks (e.g. Twitter, Facebook) into an LMS-friendly format - Act as a stand-alone enterprise-level web-service from which other web-services can extract the collated data for their own usage. The Tin Can apis look useful so far for our own use (including mobile support), since they support Javascript, Objective C and Java. I believe these apis can link up with Google Enterprise Apps for greater LRS functionality too.
  •  
    Ah, that's good news indeed if Google Enterprise Apps are friendly towards this strategy. Keep monitoring. Things tend to change rapidly with Google!
Ashley Tan

Get picky with the Google Picker API - The official Google Code blog - 2 views

  • Users have content across many Google properties: YouTube, Picasa Web Albums, Google Docs, and more. Now we have a common interface for your users to select Google content. The Google Picker API provides a familiar-looking dialog box that’s easy for you to integrate into your apps. Your users can quickly browse their own content without ever leaving your page or app.
yeuann

gdata-objectivec-client - Google Data APIs Objective-C Client Library - Google Project Hosting - 1 views

  • The Google Data APIs Objective-C Client Library provides an iPhone static library, a Mac OS X framework, and source code that make it easy to access data through Google Data APIs. To get started with Google data APIs and the Objective-C Client Library, look at the overview slides, read the introduction and study the example applications.
  •  
    This may be useful for those who are planning to write iPhone / iPad apps using Objective-C.
yeuann

SoundCloud - The Tour - Your Sound, In The Player - 0 views

  •  
    A polished site for recording, uploading and sharing audio files... it offers the ability to share audio files with social tagging on FB, Twitter and Tumblr, and also timed comments too. Seems to be getting more and more popular. Perhaps we can use its API for our Well Said app...
Kartini Ishak

Adobe Dreamweaver and the jQuery Mobile framework - 1 views

  • jQuery goes mobile
  • ith a robust page/view mechanism supporting transitions, UI elements, dead-simple navigation, and list management, the jQuery Mobile framework provides everything you need to get up and running quickly with a mobile-savvy website or application without a complete crash-course in a new development model.
  • In the next version of Dreamweaver, we plan to allow easy creation of a jQuery Mobile project and easy insert objects to let you build out your user interfaces quickly and with confidence. Greatly expanded jQuery code hinting will help professionals make the best use of their time and enable designers to more effectively understand the syntax and structure of jQuery. Combined with the WebKit-powered Live View introduced in Dreamweaver CS4, you’ll be armed with some of the most powerful tools available to help your clients and projects move swiftly into a multiscreen world.
  • ...1 more annotation...
  • The next release of Dreamweaver will be the first step in what we hope will be a long and fruitful collaboration.
  •  
    jQuery goes mobile. Simple attributes applied to basic elements are all you need, and the jQuery Mobile API offers endless possibilities to those who wish to go under the hood.
bernard tan

Safari on iPhone & iPad 4.2: Accelerometer, WebSockets & better HTML5 support | Mobile Web Programming - 0 views

  • OS 4.2 is a free update for every iPhone, iPod or iPad device available now. This new release provides some major changes on HTML5 and W3C future standards support, like WebSockets and Accelerometer support, print support, new JavaScript data-types and better SVG support.
  • Accelerometer & Gyroscope support through the DeviceOrientation API WebSockets API from HTML5 Updated HTML5 Form Support Partial XHR-2 Support Print Support New JavaScript data types New DOM events Enhanced SVG and Canvas support
bernard tan

Maps - University of Ottawa - 1 views

  •  
    a wep app of university of ottawa using googlemap api showcasing tons of features from libraries to computers labs, atms, restaurants.
  •  
    You might be intestered Eve.
Sally Loan

ThemeRoller | jQuery UI - 0 views

  •  
    For multimedia developer
Sally Loan

Business mobile apps - Esponce - tracking, mobile apps, recovery and API - create raster and vector QR codes - 0 views

  •  
    Effective mobile marketing strategy
yeuann

iOS 5 To Have Powerful Face Detection | TechCrunch - 1 views

  • The API supports a call to mouthPosition as well as left and right eye positions. T
  •  
    We could incorporate this feature into our apps e.g. the Well Said app, or automated tagging of faces in classroom video recordings...
bernard tan

flixel.org v2.0 - 1 views

shared by bernard tan on 10 Dec 10 - Cached
  • A revolution in Flash game production. An amazing new way for man to interface with machine. The beginning of a new tomorrow. Never before has the world witnessed such a collection of AS3 files. We put it all in the new flixel 2. Groups to help organize game objects, quad trees for faster, more accurate collisions, a cleaner API, plus all the old flixel classics: animated sprites, tilemaps, and particle emitters. Most importantly, flixel is still completely free for personal or commercial use
  • Display Hundreds of Objects at Once Create Tilemaps from Text Files or Images Generate and Emit Particles for Hot Effects Play Positional, Streaming, Looping Sounds Scroll Objects or Groups in Parallax Text Display, Buttons and Mouse Cursors Save Games, Math Utiltities and Collisions Pure ActionScript 3 is Fun and Free!
  •  
    Game development code library for flash based game in case we are working on flash game development that is ported to iphone games.
bernard tan

Exporting Images from Canvas Tag HTML5 - 1 views

  • Exporting & Saving One thing that SVG can’t do is save the resulting image as a bitmap. It’s easy for <canvas> because the element is already a bitmap in the first place! The canvas can export its image to a data URL (e.g., data:image/png;base64,iVBORw0KGg...). This data may then be rendered in the browser, which could then be saved or dragged to the desktop, used in a new canvas, and so on. The browser must support PNG images, and it may have varying support for GIF and JPG. For our example, we’ll stick with PNG since it supports alpha transparency, and where we haven’t drawn on the canvas, it’ll be transparent. To get the data URL, we simply call canvas.toDataURL('image/png'). Note that we’re calling toDataURL() on the <canvas> element, not on the 2D context. This is because we’re getting all the pixels in the canvas, not just the pixels in a particular context. So taking the example we’ve put together already, we’ll make the browser redirect to a PNG version of the image when a user clicks on the <canvas> element (a contrived example, I know!): canvas.onclick = function () {  window.location = canvas.toDataURL('image/png');};
  •  
    I am sharing of export images from web app specially to Eve and Sham, maybe useful for our harmonia project. This is the workflow i was mentioning on exporting the contents of the new html5 tag canvas to an jpeg or png and it opens in a browser, which then can be save or be used for other things, we could also explore on other options of sending the image directly to other applications. http://jsbin.com/abagi3/5/ Above url is a live prototype and you can actually view source to see how easily it is being done. :)
bernard tan

HTML5 video that display syncing interactive contents to enhance learning. - 0 views

  •  
    A demo using html5 video and dynamic contents. MAKE YOUR VIDEO MORE INTERACTIVE by detecting the timing on the html5 video api, you can provide dynamic contents to support your points in your speech at the correct moment .. imagine this. you can pull in pictures from some other sites, real live data from stockmarket, or interactive forms while persuading people to donate!!! this people are nuts with this idea!!!
1 - 15 of 15
Showing 20 items per page