Skip to content

Instantly share code, notes, and snippets.

View eyssette's full-sized avatar
🧗‍♂️

Eyssette eyssette

🧗‍♂️
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
504b 0304 1400 0000 0800 2d7e 664f 834e
7aff 7803 0000 031b 0000 2d00 0000 4472
6f70 2d31 2e30 2f63 7373 2f64 726f 702d
7468 656d 652d 6172 726f 7773 2d62 6f75
6e63 652e 6d69 6e2e 6373 73cd 586d 8fe2
2010 fe2b cd6e 2ed1 3b6b e89e de07 f827
f78d b654 c9b6 a5a1 78ea 9afd efc7 4bbb
562d 2cad 2f31 d94d 0a33 c033 cf0c c38c
f394 b32a 2439 2948 2966 f3ee 28f8 7936
8638 1384 9f4f c624 639c 9cce f669 368a
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?birthYear ?deathYear ?personLabel_fr ?personLabel_en ?person ?image ?genderLabel ?languageLabel ?sitelinks ?outcoming ?article # ?countryLabel ?continentLabel ?movementLabel ?timePeriodLabel
WHERE {
?person wdt:P31 wd:Q5 .
?person wdt:P106 wd:Q4964182 .
@eyssette
eyssette / requete-idRef-domaines-thematiques-philosophie.sparql
Created January 24, 2022 10:29
Recherche des domaines et thématiques associés à la philosophie sur IdRef
SELECT DISTINCT ?uri1 ?label1 ?uri2 ?label2 COUNT (distinct ?doc2) as ?nbdoc2
WHERE {
<http://www.idref.fr/027295206/id> skos:narrower ?uri1.
?uri1 skos:prefLabel ?label1.
OPTIONAL {
?uri1 skos:narrower ?uri2.
?uri2 skos:prefLabel ?label2.
?doc2 dcterms:subject ?uri2.
} } ORDER BY ?label1
@eyssette
eyssette / liste-philosophes-programme-terminale.csv
Last active February 3, 2022 00:01
Liste des philosophes au programme en terminale
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
Période,Catégorie,Philosophe,Naissance,Mort,Image,Informations,Ressource 1,Ressource 2,Ressource 3,Ressource 4
Antiquité,Présocratiques,Anaximandre,-610,-546,https://upload.wikimedia.org/wikipedia/commons/3/38/Anaximander.jpg,,,,,
Antiquité,Présocratiques,Pythagore,-570,-495,https://upload.wikimedia.org/wikipedia/commons/1/1a/Kapitolinischer_Pythagoras_adjusted.jpg,"Pythagore de Samos est un philosophe grec présocratique, fondateur d'une école et d'une tradition de pensée qui porte son nom. Les pythagoriciens accordent une place fondamentale aux nombres, qui seraient constitutifs de toute chose.","<a href=""http://encyclo-philo.fr/les-presocratiques-a/"">Les Présocratiques</a> <span style=""font-size:0.95em"">(Encyclopédie Philosophique)</span>","<a href=""https://plato.stanford.edu/entries/pythagoras/"">Pythagoras</a> (Encyclopédie Stanford)","<a href=""https://iep.utm.edu/pythagor/"">Pythagoras</a> (Internet Encyclopedia of Philosophy)","<a href=""https://plato.stanford.edu/entries/pythagoreanism/"">Pythago
@eyssette
eyssette / éthiques-environnementales-arguments-valeur-intrinsèque-de-la-nature.md
Created April 13, 2022 17:41
éthiques-environnementales-arguments-valeur-intrinsèque-de-la-nature.md

Les arguments en
faveur d'une valeur
intrinsèque de la nature





Un argument moral

  • Il n'y a pas que les êtres humains qui ont un statut moral, il faut aussi inclure :
    • … tous les êtres sensibles (antispécisme)

    • … tous les êtres vivants (biocentrisme)
@eyssette
eyssette / arguments-format-texte.md
Last active April 24, 2022 18:51
Arguments en faveur du format texte

Les arguments
en faveur du
format texte

Un format
léger


  • Edition
    plus rapide
    • Pas besoin d'un
      logiciel lourd
    • Utilisation de logiciels
      plus adaptés pour l'édition
      • Éditeur Markdown
      • IDE (Visual Studio Code,
        Sublime Text, Atom …)
      • Vim, Emacs
  • Focalisation sur le fond et pas sur la forme
@eyssette
eyssette / ol-custom.css
Created September 18, 2022 20:08
Custom CSS for ol lists
ol {list-style-type:none; font-weight:bold; counter-reset: item;}
ol ol {list-style-type:none;font-weight:normal; font-style:italic}
ol ol ol {list-style-type:none; font-weight:normal; font-style:normal}
ol ol ol ol {list-style-type:none; font-size:0.9em}
ol li:before{content: counter(item, upper-roman) " – "; counter-increment: item;}
ol ol li:before{content: counter(item, upper-alpha) ". ";}
ol ol ol li:before{content: counter(item, decimal) ") ";}
ol ol ol ol li:before{content: counter(item, lower-alpha) "/ ";}
@eyssette
eyssette / snap-windows-Lubuntu-TODO.md
Last active September 22, 2022 15:26
Snap windows - Lubuntu

Edit .config/lxqt/globalkeyshortcuts.conf Remove the lines about the Super Key

[Super_L.33]
Comment=Show/hide main menu
Enabled=true
path=/panel/mainmenu/show_hide
@eyssette
eyssette / toGithubPages.md
Last active October 11, 2022 10:55
A bookmarklet to automatically go to a GitHub Pages site from a repository on Github.com
  1. Copy the code below:
javascript:var url = window.location.href; const regex =/.*\.com\/(.*?)\/(.*)/; ;window.location.href = url.replace(regex,%27https://$1.github.io/$2%27).replace(%27blob/main/%27,%27%27).replace(/\.md$/,%27%27);
  1. Create a new bookmark.
  2. Set the bookmarklet name and paste the above as the URL.