diff --git a/Makefile b/Makefile index 3f2d1f0..9df6dfd 100644 --- a/Makefile +++ b/Makefile @@ -42,13 +42,16 @@ help: @echo 'Set the RELATIVE variable to 1 to enable relative urls ' @echo ' ' -html: +Flex/.git/config: + git clone --depth 1 https://github.com/alexandrevicenzi/Flex + +html: Flex/.git/config $(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) clean: [ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR) -regenerate: +regenerate: Flex/.git/config $(PELICAN) -r $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) serve: @@ -73,7 +76,7 @@ else $(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) endif -publish: +publish: Flex/.git/config $(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS) ssh_upload: publish diff --git a/content/pages/bookmarks.md b/content/pages/bookmarks.md index d2afa67..216483e 100644 --- a/content/pages/bookmarks.md +++ b/content/pages/bookmarks.md @@ -140,6 +140,7 @@ Date: 2021-05-05 15:21:00 ## Cybersecurity/OSINT - [The OSINT Framework](https://osintframework.com/) +- [OSINT Tool Comparison Table](https://docs.google.com/spreadsheets/d/18U1qcaPaqIF8ERVLI-g5Or3gUbv0qP_-JUtc0pbEs0E/edit#gid=0) - [Have I been Pwned (« Have them been pwned :D »)](https://haveibeenpwned.com/) - 🔧 [theHarvester — E-mails, subdomains and names Harvester](https://github.com/laramies/theHarvester) - 🔧 [SpiderFoot — automates OSINT for threat intelligence and mapping your attack surface.](https://github.com/smicallef/spiderfoot) @@ -299,6 +300,7 @@ Or from command line with a postgresql client: ## Programming/Python +- 🔧 [Convert setup.cfg to pyproject.toml](https://github.com/abravalheri/ini2toml) - 📑 [Python Design Patterns](https://python-patterns.guide) - 🔧 [pz — Easily handle day to day CLI operation via Python instead of regular Bash programs.](https://github.com/CZ-NIC/pz) - 📑 [Quantum Computing in Python](https://iza.ac/pdf/pycon2021.pdf) diff --git a/content/pages/gpg.md b/content/pages/gpg.md index e12fda0..3de8836 100644 --- a/content/pages/gpg.md +++ b/content/pages/gpg.md @@ -9,6 +9,7 @@ My GPG key fingerprint, since 2021-04-22 is `8AFAA8C574C3E9804BB4337546EBCD72F08 - on [keys.openpgp.org](https://keys.openpgp.org/search?q=8AFAA8C574C3E9804BB4337546EBCD72F08E6717) - on [mdk.fr](https://mdk.fr/8AFAA8C574C3E9804BB4337546EBCD72F08E6717.pub) +- on [github.com](https://github.com/JulienPalard.gpg) It can be imported using: diff --git a/content/pages/index.md b/content/pages/index.md index 81655ae..4f20c6c 100644 --- a/content/pages/index.md +++ b/content/pages/index.md @@ -8,9 +8,10 @@ CPython core developer, PSF fellow, independent Python trainer. - My projects - Translating the [Python documentation in French](https://docs.python.org/fr/). - Building an online Python exercises platform: [Hackinscience](https://hackinscience.org/). - - 99 other projects on [my github](https://github.com/JulienPalard). + - many other projects on [my github](https://github.com/JulienPalard). - [My CV](https://mdk.fr/Julien-Palard.pdf) -- [My ssh key](https://mdk.fr/id_rsa.pub) and [my gpg key](https://mdk.fr/8AFAA8C574C3E9804BB4337546EBCD72F08E6717.pub) +- [My ssh key](https://mdk.fr/id_rsa.pub) +- [My gpg key](/pages/gpg.html) - I'm `mdk` on [Libera.Chat](https://web.libera.chat/#python-fr) and Mastodon. > "Walking on water and developing software from a specification are easy if both are frozen." - Edward V. Berard - diff --git a/content/pages/supinternet_rendu.md b/content/pages/supinternet_rendu.md index 433f357..b41f5ad 100644 --- a/content/pages/supinternet_rendu.md +++ b/content/pages/supinternet_rendu.md @@ -55,7 +55,7 @@ Le sujet du mail devra être au format `f"Rendu {nom_du_projet}"`. Seul le `R` de `Rendu` sera en majuscule, tout le reste doit être en bas-de-casse. -Le mail doit être envoyé à *julien@python.org*. +Le mail doit être envoyé à *julien@palard.fr*. > Un rendu ne respectant pas strictement le format de rendu risque de ne pas être corrigé (ignorés par mon script de ramassage). diff --git a/pelicanconf.py b/pelicanconf.py index cbecaff..2bc1874 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -18,9 +18,8 @@ DISPLAY_PAGES_ON_MENU = False MAIN_MENU = False LINKS = ( - ("My Python Talks", "/pages/talks.html"), ("About me", "/pages/julien-palard.html"), - ("GPG: 0x46EBCD72F08E6717", "/pages/gpg.html"), + ("My Talks", "/pages/talks.html"), ("HackInScience", "https://hackinscience.org"), )