4587 links
39 private links
  • Strak.ch | Actu et liens en vrac
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 3 / 228
Newer►
  • prompts.chat - AI Prompts Community

    Plateforme Sociale Libre pour les Prompts IA.

    March 8, 2026 at 7:52:36 PM GMT+1 * - permalink -
    QRCode
    - https://prompts.chat/
    AI Prompt
  • GitHub - dan0dev/ScreenPrompt: A transparent overlay window for Windows that is invisible to screen capture software. Perfect for presentations, video calls, content creation, and keeping notes visible while screen sharing. · GitHub

    Utile pour avoir ses notes sous les yeux pendant une présentation, mais sans en avoir l'air.

    March 7, 2026 at 8:38:00 AM GMT+1 * - permalink -
    QRCode
    - https://github.com/dan0dev/ScreenPrompt
    Travail Présentation
  • Headlamp

    Une interface webui voire même gui à tester pour Kubernetes.
    Supporte OIDC et on peut lui filer des comptes de service pour ségréger les droits.

    March 6, 2026 at 8:05:01 PM GMT+1 * - permalink -
    QRCode
    - https://headlamp.dev/
    Kubernetes Webui
  • Coffee: The Glorious Solution to The Coffee–Sleep Cycle

    C'est clairement ce que je ressens vis-à-vis du café ces temps, étant dans un cycle de sommeil compliqué de jeune papa...

    March 6, 2026 at 8:00:54 PM GMT+1 * - permalink -
    QRCode
    - https://sketchplanations.com/coffee-the-glorious-solution
    Café MaLife
  • YGGLeak

    Yggtorrent s'est fait totalement défoncé et toutes les données sensibles ont été diffusées publiquement ! Oo

    En attendant la prochaine crémerie : https://ygg.gratis/

    March 4, 2026 at 6:44:33 PM GMT+1 * - permalink -
    QRCode
    - https://yggleak.top/fr
    YggTorrent Torrent Leak Hack
  • Kilo - Kilo: The Open Source AI Coding Agent for VS Code, JetBrains, and your CLI

    Encore un autre LLM, mais plus agnostique, donc pas cantonné à quelques modèles payants.

    Exemple d'utilisation : https://www.xda-developers.com/kilo-is-vs-code-extension-works-with-every-local-llm-i-throw-at-it/

    March 4, 2026 at 6:18:00 PM GMT+1 * - permalink -
    QRCode
    - https://kilo.ai/
    AI LLM VSCode
  • Keep Android Open

    Vu sur F-Droid, pour empêcher qu'Android devienne un système fermé.

    March 4, 2026 at 6:03:25 AM GMT+1 * - permalink -
    QRCode
    - https://keepandroidopen.org/
    Google Android Cybersécurité
  • Claude Desktop not opening

    Si Claude Code ne se lance plus et reste en arrière-plan, il faut probablement activer Hyper-V sur votre PC.

    March 3, 2026 at 6:11:33 AM GMT+1 * - permalink -
    QRCode
    - https://www.reddit.com/r/ClaudeAI/comments/1re2wqf/claude_desktop_not_opening/?tl=fr
    Claude AI
  • Firefox Adds AI Controls Menu to Disable or Manage AI Features - gHacks Tech News

    Mozilla a implémenté un gros bouton "Désactiver l'IA". Le respect des utilisateurs, bravo à eux.

    February 25, 2026 at 11:44:29 AM GMT+1 * - permalink -
    QRCode
    - https://www.ghacks.net/2026/02/25/firefox-adds-ai-controls-menu-to-disable-or-manage-ai-features/
    Mozilla Firefox AI
  • World Monitor - Real-Time Global Intelligence Dashboard

    Un dashboard augmenté à l'IA qui fait le buzz (on dit ça encore ?) et qui agrège énormément de flux différents en live. Bourse, politique, menaces Cyber, ça a l'air très complet.

    On peut le hoster:
    https://github.com/koala73/worldmonitor

    February 25, 2026 at 11:42:59 AM GMT+1 * - permalink -
    QRCode
    - https://worldmonitor.app/
    Monitoring AI
  • Accomplish - Open Source AI Agent for Your Desktop

    Un agent IA qui peut être pas mal pour ranger des documents rangés n'importe comment dans un NAS par votre moitié.

    February 23, 2026 at 6:28:25 PM GMT+1 * - permalink -
    QRCode
    - https://www.accomplish.ai/
    AI Documentation
  • GitHub - duggytuxy/syswarden: SysWarden is a tool based on the Data-Shield IPv4 Blocklists Community, Spamhaus ASN, Wazuh and Fail2ban that blocks up to 99% of noisy, disruptive, and malicious IP addresses and focuses on real signals.

    Pour sécuriser un VPS exposé par exemple.

    February 23, 2026 at 6:26:46 PM GMT+1 * - permalink -
    QRCode
    - https://github.com/duggytuxy/syswarden
    Cybersécurité Script
  • Claude Code's hidden conversation history (and how to actually use it) | @kentgigger

    TL;DR.

    February 22, 2026 at 1:32:01 PM GMT+1 * - permalink -
    QRCode
    - https://kentgigger.com/posts/claude-code-conversation-history
    Claude AI
  • Use Claude Code in VS Code - Claude Code Docs

    Titre.

    February 22, 2026 at 1:30:59 PM GMT+1 * - permalink -
    QRCode
    - https://code.claude.com/docs/en/vs-code
    Claude VSCode AI
  • GitHub - derailed/popeye: 👀 A Kubernetes cluster resource sanitizer

    Pour voir la santé d'un cluster Kubernetes. Ce tool est Read Only.

    February 19, 2026 at 4:48:41 PM GMT+1 * - permalink -
    QRCode
    - https://github.com/derailed/popeye
    Kubernetes Outils
  • Stuck Kubernetes Finalizers

    Si un namespace ne veut vraiment pas se laisser supprimer, en état "Terminating":

    kubectl get namespace mynamespace -o json > mynamespace.json

    Edit the file and remove the finalizers field entirely, ensuring the JSON looks like this:

    {
      "apiVersion": "v1",
      "kind": "Namespace",
      "metadata": {
        "name": "mynamespace"
      }
    }

    Then apply the modified JSON back to the API:

    kubectl replace --raw "/api/v1/namespaces/mynamespace/finalize" -f mynamespace.json

    Voir aussi https://blog.zwindler.fr/2020/03/23/supprimer-un-namespace-bloque-a-terminating/

    February 19, 2026 at 2:43:33 PM GMT+1 * - permalink -
    QRCode
    - https://blog.devops.dev/stuck-kubernetes-finalizers-e20c7f0c9fb7
    Kubernetes Debug
  • NetBird - Open Source Zero Trust Networking

    "NetBird combines a WireGuard-based overlay network with Zero Trust Network Access, providing a unified open source platform for reliable and secure connectivity."

    February 18, 2026 at 10:39:13 PM GMT+1 * - permalink -
    QRCode
    - https://netbird.io/
    ZeroTrust VPN AutoHébergement
  • Pangolin | Remote Access Platform

    "Pangolin is an open-source, identity-based remote access platform built on WireGuard that enables secure, seamless connectivity to private and public resources."

    February 18, 2026 at 10:38:43 PM GMT+1 * - permalink -
    QRCode
    - https://pangolin.net/
    ZeroTrust VPN AutoHébergement
  • GitHub - open-webui/open-webui: User-friendly AI Interface (Supports Ollama, OpenAI API, ...)

    Une webui pour vLLM (shaarkling précédent, huhu) et d'autres LLM.

    February 18, 2026 at 10:32:53 PM GMT+1 * - permalink -
    QRCode
    - https://github.com/open-webui/open-webui
    LLM AutoHébergement Webui
  • GitHub - vllm-project/vllm: A high-throughput and memory-efficient inference and serving engine for LLMs

    Une alternative à Ollama, qui semble avoir de meilleures performances dans les tests.

    February 18, 2026 at 10:30:48 PM GMT+1 * - permalink -
    QRCode
    - https://github.com/vllm-project/vllm
    LLM AI AutoHébergement
Links per page: 20 50 100
◄Older
page 3 / 228
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation