Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • 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.

5166 links 

page 1 / 2

Liste des liens

24 results tagged code x
MUTOS - le hollandais volant
2022-02-6 2:5 - 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/
242 Favorite JavaScript Utilities in single line of code
2021-03-29 8:44 - 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
Télécharger LibreOffice | Communauté LibreOffice francophone
2020-06-19 15:47 - permalink -

La page avec le code source.

code libreoffice
- https://fr.libreoffice.org/download/telecharger-libreoffice/
GitHub - timovn/MyWebTools - Le Hollandais Volant
2019-06-5 16:4 - permalink -

Cool. Merci

code copains outils timo tools webdev
- https://lehollandaisvolant.net/?mode=links&id=20190605095439
Note: y a des fois j'te jure
2018-09-14 15:44 - permalink -

Pour être sûr qu'il n'y ait pas de doublon dans ta base ??? Si c'est pour compter le nombre d'entrée de ton tableau, là, c'est whaoou !

code fun php
- https://book.knah-tsaeb.org/?lxXcCw
YouTube thumbnail
Exact Instructions Challenge - THIS is why my kids want to kill me. - YouTube
2017-02-20 12:11 - permalink -

Excellente méthode pédagogique pour apprendre l'algorithmique.
via Timo

code tutoriels vidéos
- https://www.youtube.com/watch?v=cDA3_5982h8
Quick Tip: Accessing The Clipboard With JavaScript | Tutorialzine
2016-10-19 12:38 - permalink -

Copy On Click

var button = document.getElementById("copy-button"),
    contentHolder = document.getElementById("content-holder");

button.addEventListener("click", function() {

    // We will need a range object and a selection.
    var range = document.createRange(),
        selection = window.getSelection();

    // Clear selection from any previous data.
    selection.removeAllRanges();

    // Make the range select the entire content of the contentHolder paragraph.
    range.selectNodeContents(contentHolder);

    // Add that range to the selection.
    selection.addRange(range);

    // Copy the selection to clipboard.
    document.execCommand('copy');

    // Clear selection if you want to.
    selection.removeAllRanges();

}, false);

Modify Copied Text

document.addEventListener('copy', function(e){

    // We need to prevent the default copy functionality,
    // otherwise it would just copy the selection as usual.
    e.preventDefault();

    // The copy event doesn't give us access to the clipboard data,
    // so we need to get the user selection via the Selection API.
    var selection = window.getSelection().toString();

    // Transform the selection in any way we want.
    // In this example we will escape HTML code.
    var escaped = escapeHTML(selection);

    // Place the transformed text in the clipboard. 
    e.clipboardData.setData('text/plain', escaped);

});
code copie javascript
- http://tutorialzine.com/2016/10/quick-tip-accessing-the-clipboard-with-javascript/
ClicToDico: des bookmarklets pour mes élèves - Warrior du Dimanche
2016-10-10 14:8 - permalink -

javascript:(function(){%20if(window.getSelection){%20sel=window.getSelection();}else%20if(document.getSelection){%20sel=%20document.getSelection();}else{var%20selection=document.selection&&document.selection.createRange();if(selection.text){%20sel=selection.text;}};window.open('<a href="http://www.wordreference.com/enfr/'+sel,'traduction">http://www.wordreference.com/enfr/'+sel,'traduction</a>');})()

javascript:(function(){%20if(window.getSelection){%20sel=window.getSelection();}else%20if(document.getSelection){%20sel=%20document.getSelection();}else{var%20selection=document.selection&&document.selection.createRange();if(selection.text){%20sel=selection.text;}};window.open('<a href="http://www.linguee.fr/francais-anglais/search?source=auto&query='+encodeURIComponent(sel),'traduction">http://www.linguee.fr/francais-anglais/search?source=auto&query='+encodeURIComponent(sel),'traduction</a>');})()

javascript:(function(){%20if(window.getSelection){%20sel=window.getSelection();}else%20if(document.getSelection){%20sel=%20document.getSelection();}else{var%20selection=document.selection&&document.selection.createRange();if(selection.text){%20sel=selection.text;}};window.open('<a href="http://www.linguee.fr/francais-anglais/search?source=auto&query='+sel,'traduction">http://www.linguee.fr/francais-anglais/search?source=auto&query='+sel,'traduction</a>');})()
bookmarklet code javascript traduction
- http://warriordudimanche.net/index.php?article0349/clictodico-des-bookmarklets-pour-mes-eleves
Bookmarklet pour générer un mot de passe dans un formulaire contenant un champ mot de passe
2016-10-10 14:1 - permalink -

Suite au snippet de Bronco , j'ai fait ce petit bookmarklet qui peut être utile :

javascript:function%20generer_password(champ_cible){var%20ok='azertyupqsdfghjkmwxcvbn23456789AZERTYUPQSDFGHJKMWXCVBN';var%20pass='';var%20reponse=prompt("Quelle longueur pour le mot de passe à générer ?", "Nombre ( ≤ 8 pour plus de sécurité)");if(reponse==null){var%20longueur=8;}else{var%20longueur=reponse;}for(i=0;i<longueur;i++){var%20wpos=Math.round(Math.random()*ok.length);pass+=ok.substring(wpos,wpos+1);}champ_cible.value=pass;reponse=confirm("Voir le mot de passe généré ?");if(reponse){alert(pass);}}var%20champ_cible=undefined;var%20allinputs=document.getElementsByTagName('INPUT');var%20nbInputs=allinputs.length;for(var%20i=0;i<nbInputs;i++){if(allinputs[i].type=='password'){champ_cible=allinputs[i];}}if(champ_cible!=undefined){generer_password(champ_cible);}
code javascript password
- http://snippetvamp.warriordudimanche.net/snippetvamp.php?snippet=56def63350a33
Récupérer la liste de tous les logiciels installés - Windows 7 - PC Astuces
2016-10-5 11:16 - permalink -

1.Cliquez sur le bouton Démarrer. Saisissez la commande PowerShell.
2.Cliquez sur le programme Windows PowerShell
3.Dans la fenêtre qui s'ouvre saisissez la commande

Get-WmiObject -Class Win32_Product | Select-Object -Property Name 

et validez par Entrée.
4.La liste des logiciels installés est affichée à l'écran.
5.Pour enregistrer cette liste dans un fichier texte (pour l'archiver ou l'imprimer ensuite), saisissez la commande

 Get-WmiObject -Class Win32_Product | Select-Object -Property Name > liste.txt 

et validez par Entrée.
6.La liste des applications sera enregistrée dans le fichier liste.txt dans votre dossier utilisateur.
7.Vous pouvez fermer la fenêtre de PowerShell et allez dormir :D

code ligne-commande programme windows
- http://www.pcastuces.com/pratique/astuces/3806.htm
Les joies du code ... LOL - Bill2's Links
2016-10-3 1:54 - permalink -

Pas con... ^_^

astuce code programmation
- http://links.bill2-software.com/shaarli/?biwIVw
A curated listh with Self Hosted software solutions | LibHunt
2016-09-6 11:49 - permalink -

via Yome

code developpement programmation selfhosted software
- https://selfhosted.libhunt.com/categories
Trouver l'extension d'un fichier en php
2016-08-19 19:4 - permalink -
 $extension = end(explode(".", $file_name));
code extensions fichiers php
- http://php.net/manual/fr/function.is-file.php
Sergei Dorogin's technical blog: SQLiteException "database disk image is malformed" - Librement Shaarli
2016-06-15 22:50 - permalink -

Merci pour le partage. Je recopie l'astuce ici :
Réparer une base sqlite corrompue.
So, something's broken.
I executed a query like select * from {table} for each table in the database and all of them was executed successfully except one. This one caused the exactly same error I saw before -database disk image is malformed. But in spite of error I got data from this table.

So if I can read data then I can recreate my database.
I started searching for a way how to dump data from the database into a SQL-script with INSERTs. This post helped me a lot.
I needed to download SQLite shell. This tool allows to export data in many forms including INSERTs.
I run sqlite3.exe storage.data where "storage.data" is my corrupted database file.
The following script exports all content (as INSERTs) with schema into "dump_all.sql" file:

sqlite> .mode insert
sqlite> .output dump_all.sql
sqlite> .dump

Then exit (Ctrl-C, Ctrl-Z or ".exit") and run again: sqlite3.exe storage.fixed.data, where "storage.fixed.data" is name of non-existing file for my resurrected database.
The following script reads commands from "dump_all.sql" script file and recreates all database.

sqlite> .read dump_all.sql

After this procedure I got a new database file with all content from the corrupted file.

code SQLite
- http://www.librement-votre.fr/shaarli/?D3lHhg
Clean Coders: Clean Code, Episode 1: Clean Code (Remake!)
2016-06-14 18:7 - permalink -

À regarder

code tutoriels vidéos
- https://cleancoders.com/episode/clean-code-episode-1/show
From STUPID to SOLID Code! · William Durand
2016-06-14 18:7 - permalink -
code tutoriels
- http://williamdurand.fr/2013/07/30/from-stupid-to-solid-code/
Write Less Code · Code Ahoy
2016-06-7 9:30 - permalink -
code
- http://codeahoy.com/2016/06/03/write-less-code/
Télécharger un morceau depuis youtube et le convertir en mp3 - partage de liens - nonymous
2016-06-2 1:41 - permalink -
youtube-dl --extract-audio --audio-format mp3 <a href="https://www.youtube.com/watch?v=kfVsfOSbJY0">https://www.youtube.com/watch?v=kfVsfOSbJY0</a>

Merci pour l'astuce

code convertisseur mp3 mp4 youtube youtube-dl
- http://liens.nonymous.fr/?3aHSQQ
[JavaScript] detect down/up scrolling - Le Hollandais Volant - /Yome/links
2016-02-25 11:39 - permalink -

Moi aussi :

// Initial state
var scrollPos = 0;
// adding scroll event
window.addEventListener('scroll', function(){ scrolling() });

// the function : compares the "new" scrolling state with the previous
// (this allows detecting either "up" or "down" scrolling)
// then saves the new in the $previous for the next iteration.

function scrolling() {
    if ((document.body.getBoundingClientRect()).top > scrollPos) {
        console.log('scrolling DOWN');
    } else {
        console.log('scrolling UP');
    }
    scrollPos = (document.body.getBoundingClientRect()).top;
}
code javascript scroll
- http://links.yome.ch/?_14dCg
Retrouver (la syntaxe perdue de) Shaarli - KraZhtest - Liens utiles - C'est le bordel
2015-06-3 18:52 - permalink -

Je viens de l'appliquer à mon shaarli en utilisant prism.js.

Excellent !

code shaarli
- http://user23.net/links/index.php?08KERw
page 1 / 2


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 - Mastodon 1 - Mastodon 2