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.

5167 links 

page 22 / 259

Liste des liens

Sur le capitaisme de surveillance
2021-03-16 19:4 - permalink -
capitalisme framasoft podcast surveillance
- https://www.lacantine-brest.net/christophe-masutti-sur-le-capitalisme-de-surveillance-et-le-logiciel-libre/
Débuter avec git
2021-03-16 11:36 - permalink -
git tutoriels
- https://carlchenet.com/category/debuter-avec-git/
Un plat de rougail-saucisse s'encastre dans le pare-brise d'une automobiliste à Orange - Le Hollandais Volant
2021-03-15 18:9 - permalink -

Ils volent bas cette année !!

insolite
- https://lehollandaisvolant.net/?mode=links&id=20210314120927
Sécurité web : l'indispensable à savoir - Je suis un dev
2021-03-9 12:51 - permalink -

Web Security for Developers: Real Threats, Practical Defense de Mac Donald

développement sécurité web
- https://www.jesuisundev.com/securite-web/
Rasp-Hifi-volumio — MCHobby - Wiki
2021-03-7 2:21 - permalink -
audio hifi Raspberry système
- https://wiki.mchobby.be/index.php?title=Rasp-Hifi-volumio
Raspberry pi en magétoscope programmable dérrière box
2021-03-7 2:7 - permalink -
cron enregistrement Raspberry vlc
- https://forum.raspfr.org/Raspberry-pi-en-magetoscope-programmable-derriere-box-t-730.html
Files · master · InterHop / Goupile · GitLab
2021-03-5 23:32 - permalink -

Le dépôt git d'InterHop.

git interhop javascript logiciel-libre Médecine
- https://framagit.org/interhop/goupile/-/tree/master
J’étais tranquille, j’étais pénard … – Le DIM
2021-03-4 17:32 - permalink -

Gloups.
Je ne comprends pas les gens à l'origine de ces infections. Quel est leur but ? Car le motif financier n'est pas suffisant vu les conséquences que ça engendre.

blackout infection informatique Médecine virus
- https://www.departement-information-medicale.com/blog/2021/02/19/jetais-tranquille-jetais-penard/
Mudita Pure | Mudita
2021-03-3 18:24 - permalink -

Très intéressant. 314 € quand même...

téléphone
- https://mudita.com/products/pure/
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
page 22 / 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