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.

5178 links 

page 23 / 259

Liste des liens

Piégé avec ma mutuelle obligatoire d'entreprise - OSD - Les liens de Knah Tsaeb
2021-03-2 1:39 - permalink -

Mais ce qui me révolte le plus c'est le principe même. On permet à une entreprise PRIVÉE de faire une ponction sur MON salaire sans en avoir réellement le choix de la dite entreprise.

Par définition une entreprise privée est là pour faire de l'argent et payer ses actionnaires. J'aurais préféré que l'on me prenne mes 70€ (35€ salarié + 35€ employeur) et qu'on les donne à la sécu plutôt qu'à des fonds de pension américains (dans les faits je sais pas si c'est vrai, mais on doit pas être loin de ça). Mais les français n'auraient jamais accepté une hausse des "cotisations" alors qu'une adhésion à une mutuelle obligatoire pas de problème.

C'est exactement ça. Et il faut que ça cesse. C'est insupportable.

assurances levons-nous Médecine politique sécurité-sociale
- https://book.knah-tsaeb.org/?Ms2luw
10 astuces et fonctions cachées pour maîtriser VLC comme un pro
2021-03-1 18:14 - 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/
2021-03-1 13:10 - 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
2021-02-28 1:35 - 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
2021-02-27 23:25 - 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‎
2021-02-27 23:24 - 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
2021-02-25 15:11 - 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
2021-02-25 14:44 - 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
2021-02-24 18:24 - 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
2021-02-24 18:11 - permalink -
php
- https://stackoverflow.com/questions/12692727/how-to-make-a-calculator-in-php
html2pdf/example12.php at master · spipu/html2pdf · GitHub
2021-02-24 11:13 - 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)
2021-02-22 15:20 - 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 !
2021-02-22 14:51 - 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 !
2021-02-22 14:46 - 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
2021-02-22 8:39 - 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
2021-02-19 16:58 - permalink -
windows word
- https://heureuxoli.developpez.com/office/word/champs/
Lancer automatiquement des logiciels au démarrage de Windows 10
2021-02-19 15:56 - 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
2021-02-17 13:17 - permalink -

Bien résumé

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

Pour un clavier avec des majuscules accentuées sur W10

windows
- https://www.pcastuces.com/pratique/windows/majuscules_accentuees/page1.htm
JSON Resume
2021-02-13 21:11 - permalink -

Un cv en JSON. Plusieurs thèmes possible.

CV html json npm pdf
- https://jsonresume.org/
page 23 / 259


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