Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • ► Play Videos
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5008 links 

page 1 / 13

Liste des liens

259 results tagged javascript x
:zap: Simple and easy to use lightbox script written in pure JavaScript | JsRepos
Sat 02 Apr 2022 01:35:04 AM CEST - permalink -

Un caroussel associé à une lightbox.

caroussel javascript lightbox
- - https://jsrepos.com/lib/feimosi-baguetteBox-js-javascript-modals-and-popups
Système de carrousel accessible avec ARIA et en Vanilla JS - Van11y
Fri 25 Mar 2022 07:34:46 PM CET - permalink -

Un autre carroussel accessible

accessibilité carroussel javascript
- - https://van11y.net/fr/carrousel-accessible/
Un carrousel accessible et responsive en Vanilla JS - Agence web Adilade
Fri 25 Mar 2022 07:27:41 PM CET - permalink -

Un carroussel qui respecte l'accessibilité. Pas évident en fait

accessibilité carroussel javascript
- - https://www.adilade.fr/blog/carrousel-accessible-responsive-vanillajs/
MUTOS - le hollandais volant
Sun 06 Feb 2022 02:05:20 AM CET - permalink -

Super. Et comme toujours, c'est super propre comme code. Aucun tracker contrairement aux autres versions existantes...

Par contre, la licence n'est pas indiquée. On peut l'utiliser ?

code copains développement javascript jeux web
- - https://lehollandaisvolant.net/tout/tools/mutos/
Wesley Aptekar-Cassels | Reasons to avoid Javascript CDNs - Liens en vrac de sebsauvage
Mon 13 Dec 2021 11:48:04 AM CET - permalink -

Ça n'a jamais servi à rien sauf à tracer les utilisateurs plus facilement...

cdn javascript vie-privée
- - https://sebsauvage.net/links/?riTwlQ
Link Lock - Password-protect links
Wed 01 Dec 2021 04:20:05 PM CET - permalink -

Ajouter un mot de passe à n'importe quelle url.

html javascript outils password
- - https://jstrieb.github.io/link-lock/create/
GitHub - jstrieb/urlpages: Create and view web pages stored entirely in the URL
Wed 01 Dec 2021 04:19:17 PM CET - permalink -

Encoder une page dans l'url en base64, à la manière de zerobin.

css html javascript outils
- - https://github.com/jstrieb/urlpages
Developer Tools secrets that shouldn’t be secrets | Christian Heilmann
Mon 15 Nov 2021 09:27:58 AM CET - permalink -

via Timo

console javascript tricks tutoriels
- - https://christianheilmann.com/2021/11/01/developer-tools-secrets-that-shouldnt-be-secrets/
CodePen Home File and Directory Drag-and-drop for Firefox and Chrome - Codepen - Le Hollandais Volant
Tue 12 Oct 2021 03:10:09 PM CEST - permalink -
dossier javascript upload
- - https://lehollandaisvolant.net/?mode=links&id=20211011183334
Swipey image grids.
Thu 15 Apr 2021 08:40:19 AM CEST - permalink -

Des images dans du svg...

animation css images javascript svg
- - https://www.cassie.codes/posts/swipey-image-grids/
La synthèse vocale en JS: SILENCE DANS LA BIBLIOTHEQUE ! - Warrior du Dimanche
Mon 05 Apr 2021 07:53:34 PM CEST - permalink -

Je relais mais j'ai peu d'espoir...
Peut-être du côté de Mozilla ???

javascript librairie voix
- - http://warriordudimanche.net/article1497/lenfance-codeur-synthese-vocale-js
242 Favorite JavaScript Utilities in single line of code
Mon 29 Mar 2021 08:44:35 AM CEST - permalink -

JS​

This is going to be useful: 242 Favorite JavaScript Utilities
in single line of code! No more! by Phuoc Nguyen (@nghuuphuoc@twitter.com)
https://1loc.dev/​

code javascript utilitaire
- - https://mastodon.design/@stephaniewalter/105971676135455296
Files · master · InterHop / Goupile · GitLab
Fri 05 Mar 2021 11:32:18 PM CET - permalink -

Le dépôt git d'InterHop.

git interhop javascript logiciel-libre Médecine
- - https://framagit.org/interhop/goupile/-/tree/master
String.prototype.includes() - JavaScript | MDN
Sun 28 Feb 2021 01:35:44 AM CET - permalink -
if (!String.prototype.includes) {
  String.prototype.includes = function(search, start) {
    'use strict';

    if (search instanceof RegExp) {
      throw TypeError('first argument must not be a RegExp');
    }
    if (start === undefined) { start = 0; }
    return this.indexOf(search, start) !== -1;
  };
}

const str = "Être ou ne pas être, telle est la question.";

console.log(str.includes("Être"));       // true
console.log(str.includes("question"));   // true
console.log(str.includes("pléonasme"));  // false
console.log(str.includes("Être", 1));    // false
console.log(str.includes("ÊTRE"));       // false
console.log(str.includes(""));       // true

Voir aussi

  • Array.prototype.includes()
  • TypedArray.prototype.includes()
  • String.prototype.indexOf()
  • String.prototype.lastIndexOf()
  • String.prototype.startsWith()
  • String.prototype.endsWith()
caractères fonction javascript
- - https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Global_Objects/String/includes#syntaxe
GitHub - mermaid-js/mermaid: Generation of diagram and flowchart from text in a similar manner as markdown
Wed 30 Dec 2020 11:17:06 AM CET - permalink -

Mermaid is a Javascript based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams. The main purpose of Mermaid is to help documentation catch up with development.

Doc-Rot is a Catch-22 that Mermaid helps to solve.

Diagramming and documentation costs precious developer time and gets outdated quickly. But not having diagrams or docs ruins productivity and hurts organizational learning.
Mermaid addresses this problem by cutting the time, effort and tooling that is required to create modifiable diagrams and charts, for smarter and more reusable content. The text definitions for Mermaid diagrams allows for it to be updated easily, it can also be made part of production scripts (and other pieces of code). So less time needs to be spent on documenting, as a separate and laborious task.

diagrammes javascript markdown outils
- - https://github.com/mermaid-js/mermaid
The Modern JavaScript Tutorial
Tue 08 Dec 2020 10:12:57 AM CET - permalink -

À lire.
Le design du site est léché. J'aime beaucoup.

javascript tutoriels
- - https://javascript.info/
Google Tag Manager, la nouvelle arme anti adblock | Pixel de tracking
Mon 16 Nov 2020 02:47:09 PM CET - permalink -

Va falloir naviguer sans js, sans css et sans html... euh, wait !?

google internet javascript tracker vie-privée
- - https://www.pixeldetracking.com/fr/google-tag-manager-server-side-tagging
Réalisez des présentations en quelques minutes avec Wanaprez ! - Wanadev
Tue 18 Aug 2020 01:12:11 PM CEST - permalink -

Pour réaliser des présentations simples mais propres en markdown.

html javascript libreoffice powerpoint présentation
- - https://www.wanadev.fr/214-realisez-des-presentations-en-quelques-minutes-avec-wanaprez/
Offline MDN Docs - Kapeli
Mon 06 Jul 2020 01:06:17 PM CEST - permalink -

Intéressant car souvent Zeal plante avec les docs MDN

css documentation html javascript svg tutoriels xslt
- - https://kapeli.com/mdn_offline
PHONK - Self-contained Creative scripting toolbox for new and old Android devices
Fri 03 Jul 2020 08:37:02 AM CEST - permalink -

Self-contained Creative scripting toolbox for new and old Android devices

android developpement javascript logiciel outils
- - https://phonk.app/
page 1 / 13


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020