Shaare your links...
2563 links
Choses partagées Home RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
page 1 / 1
12 results for tags html x (Search as fulltext.)

Perhaps would you like to search on the restricted wiki, too. Or search on all the Internets.

  • Responsive Web Design Patterns | This Is Responsive
    Bookmarked on Monday, January the 14 of 2013 at 18h 27m 51s - permalink -
    - http://bradfrost.github.com/this-is-responsive/patterns.html
    responsive html xhtml integration front-end developpement web gabarit modele template pattern pro
  • Comment télécharger les vidéos Youtube (octobre 2012)
    Astuce via Sebsauvage, qui fait appel à HTML5. Un petit applisignet JS dans Firefox.

    Ne concerne que les vidéos que Youtube fournit en ogv ou mp4 / WebM

    Lien direct : http://tontof.net/?1349367149 .

    Code :
    (function () {
       if (window.location.href.indexOf('youtube') !== -1 &&
               window.location.href.indexOf('html5') === -1) {
           window.location.assign(window.location.href.replace('&v=', '&html5=1&v=')
                                               .replace('?v=', '?html5=1&v='));
       } else {
           var videos = document.getElementsByTagName('video');
           if (videos.length > 0) {
               window.location.assign(videos[0].src);
           } else {
               window.alert('No video found !');
           }
       }
    }());
    Bookmarked on Monday, October the 8 of 2012 at 12h 42m 47s - permalink -
    - http://sebsauvage.net/links/index.php?52802w
    html 5 html5 ftw youtube video videos download telecharger herunterladen runterladen signapplet marque-page scripte applisignet js javascript firefox
  • La tête dans le Flux ! - Les bons livres HTML / CSS
    Bookmarked on Friday, September the 7 of 2012 at 19h 30m 25s - permalink -
    - http://blog.goetter.fr/post/30459978737/les-bons-livres-html-css
    pro html xhtml css livre auto-formation integration balisage presentation
  • HexGL, the HTML5 futuristic racing game.
    Bookmarked on Saturday, August the 18 of 2012 at 09h 13m 27s - permalink -
    - http://hexgl.bkcore.com/
    wipeout wipe out race racing game jeu course hexgl html5 html 5 webgl three.js bkcore
  • Un joli casse-tête en intégration – HTeuMeuLeu
    Bookmarked on Sunday, July the 29 of 2012 at 14h 39m 10s - permalink -
    - http://www.hteumeuleu.fr/un-joli-casse-tete-en-integration/#comment-1299
    integration html xhtml css pur
  • Comment supprimer tous les accents d'un contenu html sans toucher aux balises - HowTommy | Liens et actu en vrac - Liens en vrac de sebsauvage
    texte = texte.Replace("À", "À");
    texte = texte.Replace("Á", "Á");
    texte = texte.Replace("Â", "Â");
    texte = texte.Replace("Ã", "Ã");
    texte = texte.Replace("Ä", "Ä");
    texte = texte.Replace("Å", "Å");
    texte = texte.Replace("Æ", "Æ");
    texte = texte.Replace("Ç", "Ç");
    texte = texte.Replace("È", "È");
    texte = texte.Replace("É", "É");
    texte = texte.Replace("Ê", "Ê");
    texte = texte.Replace("Ë", "Ë");
    texte = texte.Replace("Ì", "Ì");
    texte = texte.Replace("Í", "Í");
    texte = texte.Replace("Î", "Î");
    texte = texte.Replace("Ï", "Ï");
    texte = texte.Replace("Ð", "Ð");
    texte = texte.Replace("Ñ", "Ñ");
    texte = texte.Replace("Ò", "Ò");
    texte = texte.Replace("Ó", "Ó");
    texte = texte.Replace("Ô", "Ô");
    texte = texte.Replace("Õ", "Õ");
    texte = texte.Replace("Ö", "Ö");
    texte = texte.Replace("×", "×");
    texte = texte.Replace("Ø", "Ø");
    texte = texte.Replace("Ù", "Ù");
    texte = texte.Replace("Ú", "Ú");
    texte = texte.Replace("Û", "Û");
    texte = texte.Replace("Ü", "Ü");
    texte = texte.Replace("Ý", "Ý");
    texte = texte.Replace("Þ", "Þ");
    texte = texte.Replace("ß", "ß");
    texte = texte.Replace("à", "à");
    texte = texte.Replace("á", "á");
    texte = texte.Replace("â", "â");
    texte = texte.Replace("ã", "ã");
    texte = texte.Replace("ä", "ä");
    texte = texte.Replace("å", "å");
    texte = texte.Replace("æ", "æ");
    texte = texte.Replace("ç", "ç");
    texte = texte.Replace("è", "è");
    texte = texte.Replace("é", "é");
    texte = texte.Replace("ê", "ê");
    texte = texte.Replace("ë", "ë");
    texte = texte.Replace("ì", "ì");
    texte = texte.Replace("í", "í");
    texte = texte.Replace("î", "î");
    texte = texte.Replace("ï", "ï");
    texte = texte.Replace("ð", "ð");
    texte = texte.Replace("ñ", "ñ");
    texte = texte.Replace("ò", "ò");
    texte = texte.Replace("ó", "ó");
    texte = texte.Replace("ô", "ô");
    texte = texte.Replace("õ", "õ");
    texte = texte.Replace("ö", "ö");
    texte = texte.Replace("ø", "ø");
    texte = texte.Replace("ù", "ù");
    texte = texte.Replace("ú", "ú");
    texte = texte.Replace("û", "û");
    texte = texte.Replace("ü", "ü");
    texte = texte.Replace("ý", "ý");
    texte = texte.Replace("þ", "þ");
    texte = texte.Replace("ÿ", "ÿ");

    Via Tommy  http://liens.howtommy.net/?gntKMQ
    Bookmarked on Friday, June the 8 of 2012 at 17h 38m 03s - permalink -
    - http://sebsauvage.net/links/index.php?eE8IzQ
    pro dev developpement html xhtml php integration entite accent esperluette ampersand & code
  • Pure CSS Animated UI - Fire & Ice - jsFiddle
    Interface en JS pour tester simultanément du HTML, du CSS et du Javascript.
    Bookmarked on Tuesday, June the 5 of 2012 at 15h 23m 03s - permalink -
    - http://jsfiddle.net/jrFbM/
    html xhtml css js interface windows test pro developpement
  • DaPo/Convertisseur-pixels----pourcentage · GitHub
    Un outil logiciel d'intégration HTML.
    Bookmarked on Tuesday, April the 24 of 2012 at 16h 08m 46s - permalink -
    - https://github.com/DaPo/Convertisseur-pixels----pourcentage
    html xhtml css convertisseur converter integration pixel pourcentage web webdesign
  • The SOC Project V 1.0 : un générateur de formulaires HTML5 créé par Nicolas Hoffmann
    Création assistée de formulaires Web en HTML 5.
    Bookmarked on Monday, April the 2 of 2012 at 15h 27m 08s - permalink -
    - http://www.nicolas-hoffmann.net/SOC/
    generateur createur moulinette html 5 html5 outil codage coding soc project socproject
  • WeasyPrint - Converts HTML + CSS to PDF - WeasyPrint converts HTML/CSS documents to PDF
    Bookmarked on Saturday, March the 24 of 2012 at 21h 16m 58s - permalink -
    - http://weasyprint.org/
    html css page conversion convert convertir en into vers pdf python
  • Elliot Theis • Facebook uses bgsound to see if you have opened an email
    Facebook marque avec un identifiant unique chaque email qu'elle envoie, afin de savoir si ils sont ouverts par l'utilisateur. Et aussi sans doute l'IP et l'heure d'ouverture.

    Seule parade probable : désactiver l'affichage HTML des courriels, et celui des images.
    Bookmarked on Wednesday, March the 7 of 2012 at 18h 15m 25s - permalink -
    - http://blog.elliottheis.com/post/18764203385/facebook-uses-bgsound-to-see-if-you-have-opened-an
    facebook fb privacy vie_privee tracking pistage email mail courriel conversation html bgsound
  • View HTTP Request and Response Header
    Bookmarked on Thursday, December the 1 of 2011 at 21h 59m 33s - permalink -
    - http://web-sniffer.net/
    request requete response reponse header header entetes lecteur reader analyser analysis analyse analyseur http url uri html get post head trace sniff sniffer renifleur
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.