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.

4736 links 

page 1 / 237

Liste des liens

10 astuces et fonctions cachées pour maîtriser VLC comme un pro
Mon 01 Mar 2021 06:14:48 PM CET - permalink -

Enregistrez l’écran de votre ordinateur

Oui, il est possible d’utiliser VLC pour enregistrer un screencast sur votre PC. Pour cela, cliquez sur le menu Média puis choisissez d’Ouvrir un périphérique de capture.

Dans la fenêtre qui s’affiche, cliquez sur le menu déroulant Mode de capture et sélectionnez Bureau. Dans les options, personnalisez le Débit d’images pour la capture en le mettant au moins sur 25 ima/s pour un résultat suffisamment fluide.

Cliquez ensuite sur la flèche du bouton Lire pour afficher les autres options et choisissez de Convertir.

Dans la fenêtre suivante, sélectionnez un Profil (Vidéo – H265 + MP3, par exemple pour enregistrer une capture d’écran vidéo avec le son) et cliquez sur Parcourir.

Sélectionnez votre répertoire de sauvegarde et renseignez le nom sous lequel votre capture d’écran vidéo sera enregistrée. Validez en cliquant sur le bouton Enregistrer dans la fenêtre de l’explorateur de fichiers.

Enfin, cliquez sur le bouton Démarrer pour lancer l’enregistrement de la capture vidéo. Une fois votre screencast terminé, appuyez simplement sur le bouton Stop de VLC pour arrêter et sauvegarder automatiquement votre vidéo.

outils vlc écran
- - https://www.01net.com/astuces/10-astuces-et-fonctions-cachees-pour-maitriser-vlc-comme-un-pro-2036165.html
https://c.ecyseo.net/
Mon 01 Mar 2021 01:10:19 PM CET - permalink -

Un peu de publicité personnelle.
Je viens de mettre en ligne une calculatrice basique codée en php parce que je ne tiens pas à ce que la calculatrice de Windobe me traque.

Si vous êtes intéressés, vous pouvez la télécharger.

calcul outils php
- - https://c.ecyseo.net/
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
Linux devices have a unique identifier called machine-id. Here is how to change it. – INCOG.HOST – BLOG
Sat 27 Feb 2021 11:25:36 PM CET - permalink -
sudo crontab -e
*/1 * * * * sudo rm /etc/machine-id && sudo systemd-machine-id-setup
cat /etc/machine-id && cat /var/lib/dbus/machine-id
Linux sécurité vie-privée
- - https://incog.host/blog/linux-devices-have-a-unique-identifier-called-machine-id-here-is-how-to-change-it/
Protocol Leak Protection and Fingerprinting Protection‎
Sat 27 Feb 2021 11:24:59 PM CET - permalink -

À lire...

Linux sécurité vie-privée
- - https://www.whonix.org/wiki/Protocol-Leak-Protection_and_Fingerprinting-Protection#Identifiers_Design_Goals
Les 7 principes de base du design - 99designs
Thu 25 Feb 2021 03:11:50 PM CET - permalink -
design UX
- - https://99designs.fr/blog/conseils-design/the-7-principles-of-design/
Marie-Cécile Godwin :« les usages prévalent sur tout » – Framablog
Thu 25 Feb 2021 02:44:28 PM CET - permalink -

Pour s’intéresser au libre, il faut avoir fait un chemin individuel qui implique forcément de la réflexion, une prise de recul sur l’existant, et l’audace de s’orienter vers quelque chose de différent de la norme.

Ce qui explique pourquoi les GAFAM ont tellement d'ampleur et de pouvoir : parce que la plupart des gens consomment et ne réfléchissent pas.

design Libre réflexions UX
- - https://framablog.org/2021/02/24/marie-cecile-godwin-les-usages-prevalent-sur-tout/
Shunting-yard algorithm - Wikipedia
Wed 24 Feb 2021 06:24:32 PM CET - permalink -

Pour effectuer un programme permettant le calcul en tenant compte des priorités arythmétiques.

/* This implementation does not implement composite functions,functions with variable number of arguments, and unary operators. */

while there are tokens to be read:
    read a token.
    if the token is a number, then:
        push it to the output queue.
    else if the token is a function then:
        push it onto the operator stack 
    else if the token is an operator then:
        while ((there is an operator at the top of the operator stack)
              and ((the operator at the top of the operator stack has greater precedence)
                  or (the operator at the top of the operator stack has equal precedence and the token is left associative))
              and (the operator at the top of the operator stack is not a left parenthesis)):
            pop operators from the operator stack onto the output queue.
        push it onto the operator stack.
    else if the token is a left parenthesis (i.e. "("), then:
        push it onto the operator stack.
    else if the token is a right parenthesis (i.e. ")"), then:
        while the operator at the top of the operator stack is not a left parenthesis:
            pop the operator from the operator stack onto the output queue.
        /* If the stack runs out without finding a left parenthesis, then there are mismatched parentheses. */
        if there is a left parenthesis at the top of the operator stack, then:
            pop the operator from the operator stack and discard it
        if there is a function token at the top of the operator stack, then:
            pop the function from the operator stack onto the output queue.
/* After while loop, if operator stack not null, pop everything to output queue */
if there are no more tokens to read then:
    while there are still operator tokens on the stack:
        /* If the operator token on the top of the stack is a parenthesis, then there are mismatched parentheses. */
        pop the operator from the operator stack onto the output queue.
exit.
algorithmes calcul wikipedia
- - https://en.wikipedia.org/wiki/Shunting-yard_algorithm
How to make a calculator in PHP? - Stack Overflow
Wed 24 Feb 2021 06:11:37 PM CET - permalink -
php
- - https://stackoverflow.com/questions/12692727/how-to-make-a-calculator-in-php
html2pdf/example12.php at master · spipu/html2pdf · GitHub
Wed 24 Feb 2021 11:13:57 AM CET - permalink -

Pour remplacer les puces par des images (ou changer le style de la puce), il faut placer la règle css dans la balise ul, sinon, dans la balise  <style type="text/css">, ça ne fonctionne pas.

astuce html html2pdf pdf
- - https://github.com/spipu/html2pdf/blob/master/examples/res/example12.php
Cross-database queries in SQLite (and weeknotes)
Mon 22 Feb 2021 03:20:28 PM CET - permalink -

Pour requêter sur plusieurs bases en même temps.
Via SebSauvage

astuce SQLite
- - https://simonwillison.net/2021/Feb/21/cross-database-queries/
Soins psychiques : l'État va-t-il exclure du service public la majorité des enfants et adolescents ? - Basta !
Mon 22 Feb 2021 02:51:25 PM CET - permalink -

Tout-va-bien.....

levons-nous Médecine société
- - https://www.bastamag.net/Etat-ARS-demanteler-CMPP-centres-psychologiques-enfants-adolescents
Les assistés de la France d’en haut : 86 milliards d'euros de « niches fiscales » et bien d'autres « avantages » - Basta !
Mon 22 Feb 2021 02:46:51 PM CET - permalink -

Les assistés ne sont pas ceux que l'on croit.

levons-nous politique société
- - https://www.bastamag.net/Les-assistes-de-la-France-d-en-haut-Observatoire-des-inegalites-niches-fiscales-reduction-impot
🧠Psychology of Design: 101 Cognitive Biases & Principles That Affect Your UX
Mon 22 Feb 2021 08:39:50 AM CET - permalink -

Intéressant. Pas forcément évident à mettre en place. Et surtout basé, je trouve, sur l'immediatete de l'information (et sur le fait que l'utilisateur ne doit pas réfléchir ou ne réfléchit pas)

developpement UX web
- - https://growth.design/psychology/#priming
L'utilisation des champs dans Microsoft Word
Fri 19 Feb 2021 04:58:58 PM CET - permalink -
windows word
- - https://heureuxoli.developpez.com/office/word/champs/
Lancer automatiquement des logiciels au démarrage de Windows 10
Fri 19 Feb 2021 03:56:13 PM CET - permalink -

Il faut copier le raccourci de l'application dans le dossier de démarrage que l'on trouve via la commande shell:startup (ce qui ouvre le dossier C:\Users\utilisateur\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup).

L'invite de commande peut s'ouvrir grâce aux touches windows + R

windows
- - https://www.commentcamarche.net/informatique/windows/45-lancer-automatiquement-des-logiciels-au-demarrage-de-windows-10/
Sondage préparatoires - Warrior du Dimanche
Wed 17 Feb 2021 01:17:18 PM CET - permalink -

Bien résumé

levons-nous merdias politique
- - https://warriordudimanche.net/article1470/sondage-preparatoires#comments
PC Astuces - Obtenir des majuscules accentuées dans Windows
Wed 17 Feb 2021 11:10:41 AM CET - permalink -

Pour un clavier avec des majuscules accentuées sur W10

windows
- - https://www.pcastuces.com/pratique/windows/majuscules_accentuees/page1.htm
JSON Resume
Sat 13 Feb 2021 09:11:07 PM CET - permalink -

Un cv en JSON. Plusieurs thèmes possible.

CV html json npm pdf
- - https://jsonresume.org/
Bullshit Job » Job Title Generator
Tue 09 Feb 2021 10:19:42 PM CET - permalink -

Trop bien. Je vais mettre ça sur mon cv.

bullshit générateur
- - https://www.bullshitjob.com/title/
page 1 / 237


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