Coding The RSS feed for Coding.

  • How to use SDKMAN with MobaXterm on Win11

    prerequisites – Moba’s built-in Cygwin has apt-cyg; otherwise use the GUI package manager apt-cyg install curl zip unzip sed install SDKMAN! curl -s "https://get.sdkman.io" | bash Adapt your .Bashrc # --- SDKMAN & MobaXterm/Cygwin compatibility shim ----------------- if [[ -d "$HOME/.sdkman" ]]; then PLATFORM_FILE="$HOME/.sdkman/var/platform" TARGET="windowsx64" # refresh every shell start in case sdk selfupdate reset it [[ ! -f "$PLATFORM_FILE" || "$(cat "$PLATFORM_FILE")" != "$TARGET" ]] && printf '%s\n' "$TARGET" > "$PLATFORM_FILE" fi # ------------------------------------------------------------------ Script à copier dans votre /home/mobaxterm #! Continue reading →

  • Tldr: You can’t automate trust.

    Read “We Used ChatGPT to Write Tests. The QA Team Revolted.“ by Codepinion on Medium

  • 👀 Transform Your Code into AI-Optimized Prompts in Seconds

    code2prompt.dev

  • About “vibe coding” #LLM #AI #coding

  • Un compteur pour déterminer quand Trump va être dégagé (ou pas)

    Documentation du Script N8N Description Ce script JavaScript est conçu pour N8N afin de calculer et de publier quotidiennement des décomptes avant des événements politiques majeurs aux États-Unis, à savoir : Les Midterms (élections de mi-mandat). L'élection présidentielle. Le jour de l’investiture. Il génère également une barre de progression graphique pour chaque événement sous forme de texte. Fonctionnalités 1. Définition des dates clés Le script définit les dates des événements cibles : Continue reading →

  • Bluesky Won’t Save Us Like radiation, social media is invisible scientific effluence that leaves us both more knowledgeable and more ignorant of the causes of our own afflictions than ever

    #bluesky #moderation #mastodon

  • Nice Map of GitHub

    anvaka.github.io/map-of-gi…

    #dataviz #github #coding

    The link leads to a #dataviz of the github coding landscape&10;Shades of blue differentiate different coding languages and by zooming in, one can explore different github repositories.
  • Ça fait plusieurs semaines qu’au boulot je nage entre des Keycloak, des Tyk, des frontend #AngularJS et mine de rien ça avance, on va pouvoir décommissioner tout un bazar de serveurs qui a plusieurs années, hors support, non maintenu, bref une cata ambulante 🖖🏽

  • interesting for local development anchor.dev/blog/intr… #lclhost

  • Happy to be using many of these tools, both at home and work :)

  • Yay Github Multi Account Support 😎

  • geeks gonna geek

    github-guessr.vercel.app/game

  • Mon extension Chrome/Vivaldi/Edge pour poster sur Bluesky marche en mode basique !

    Mon extension Chrome/Vivaldi/Edge pour poster sur Bluesky depuis n’importe quel tab sur lequel on est dans le navigateur fonctionne, en mode décoffrage brut : le titre et le lien sont postés, mais pas de carte intégrée et le lien n’est pas clickable, mais pour 2 ou 3h de dev ça me va, next corriger les bugs!! c’est aussi la première fois de ma vie que je crée une extension pour chrome et c’est une chouette learning curve ! Continue reading →

  • JSON to RSS feed with N8N and optional HTML manipulation

    I’m so thrilled to finally having done it right ! This workflow that you can copy and use on N8N does a few things HTTP request a JSON feed to get last published items at the source (belgian AFSCA) Using regex to pick image file from the description field Clean up of the Description field from any html tags Serve a new RSS feed (Afsca does not have one) Use the RSS feed to Publish anywhere Testing your feed Disable the workflow Disable the Feed node (left webhook) Enable Manual Execution Run the Workflow to inspect it and pin data if you need to test it To enable the servicing of the RSS feed Disable the Manual Execution node Enable the Feed node (left webhook) Enable the workflow Visit your production RSS URL provided by the Feed node Use view-source:https://URL of your RSS feed to easily inspect the content of your rss feed. Continue reading →

  • Bluesky, comment utiliser un newsbot pour générer des Customs Feeds thématiques ?

    L’idée avec ce tuto, c’est de démontrer une mise en place d’utilisation des customs feeds sur Bluesky basé sur un News Bot qui va générer le contenu, ce qui va nous permettre de segmenter l’activité du newsbot en différents customs feeds auxquels les utilisateurs vont pouvoir s’abonner. D’abord, j’ai été récupérer les Flux RSS de chez LeMonde.fr Ensuite, j’ai mis en place un agrégateur de flux afin de rassembler les différents flux d’info par dossier (actu, culture, planète etc. Continue reading →

  • Comment déployer un news bot RSS sur Bluesky?

    pré-requis un compte bluesky dédié un “app password” un flux RSS source de contenu à publier bsky.rss la commande git installée Docker et Docker-Compose installé Pour l’exercice, on va déployer un newsbot https://disclose.ngo/ C’est un média d’investigation. Setup Pas besoin d’un gros serveurs, il suffit d’avoir un ordinateur, évidemment si vous le débranché, le bot s’éteint aussi, donc, c’est plus pratique de mettre ça en ligne, sur un petit vps, même un serveur à 5€ par mois fera tout à fait l’affaire. Continue reading →

  • Interesting tool for devs

    Explore the #ActivityPub protocol interactively

    ActivityPub.Academy is a learning resource for ActivityPub. The protocol is brought to life by showing Activities sent between different instances in real time!

    activitypub.academy

  • Neat Comprehensive #Python Cheatsheet

    gto76.github.io/python-ch…

  • Python & ActivityPub, initial research

    A bunch of Python related ressources and ActivityPub Implementations These are examples of ActivityPub server implementations written in Python: ActivityPub Example: An example of an ActivityPub server implementation written in Python. dsblank/activitypub: Prototyping a Python ActivityPub distributed server in Tornado. pylodon: Flask-based ActivityPub server implementation. Source: GitHub - BasixKOR/awesome-activitypub Libraries These are libraries that can help you with implementing ActivityPub: activity: ActivityPub library for Golang. activitypub-php: A library to turn any PHP project into a full ActivityPub implementation. Continue reading →