Skip to content

Instantly share code, notes, and snippets.

View smwhr's full-sized avatar

Smwhr / Julien Zamor smwhr

View GitHub Profile

API - Protocoles

  1. Si je communique en REST, l'échange se fait
  • en XML
  • en JSON
  • en HTML
  • comme je veux
  1. Si je communique en SOAP, l'échange se fait
@smwhr
smwhr / ontransitionend.js
Created March 28, 2015 17:05
Ontransitionend
jQuery.fn.extend({
ontransitionend: function(callback) {
var transitionEvent='webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend';
return this.each(function() {
var self = jQuery(this);
self.one(transitionEvent,
function(e) {
self.off(transitionEvent);
callback.call(self);
});
Cinéma :
http://wiki.gromez.fr/dev/api/allocine_v3
http://developer.rottentomatoes.com/
http://www.omdbapi.com/
https://www.themoviedb.org/apps
http://thetvdb.com/api/
Images & Vidéos :
https://www.flickr.com/services/api/
https://developers.google.com/youtube/v3/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.