Skip to content
View benoitpetit's full-sized avatar
🩵
Code with love
🩵
Code with love

Block or report benoitpetit

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
benoitpetit/README.md

👋 Hi, I'm Ben

🧑‍💻 Développeur & Artisan Open Source | 🛠️ Créateur d'Outils CLI | 🤖 Intégration IA

Portfolio Mastodon Email Donate using Liberapay


🧑‍💻 whoami

package main

import "fmt"

type Developer struct {
    Name        string
    Profession  string
    Location    string
    Languages   []string
    Experience  string
    FocusAreas  []string
    TechStack   []string
    Specialties []string
}

func main() {
    ben := Developer{
        Name:       "Benoit (Ben)",
        Profession: "Développeur & Artisan Solutions Open Source",
        Location:   "🇫🇷 France",
        Languages:  []string{"Français", "Anglais"},
        Experience: "8+ années",
        FocusAreas: []string{
            "🛠️ Outils CLI et Interfaces Développeur",
            "🤖 Intégration IA et Automatisation",
            "🚀 Solutions pour la Productivité",
            "📦 APIs et SDKs",
        },
        TechStack: []string{
            "Go", "JavaScript", "TypeScript", "Node.js", "Python",
            "Vue.js", "React", "Docker", "Linux", "Git",
        },
        Specialties: []string{
            "Command Line Tools", "IA Integration", "Developer Tools",
            "API Development", "Open Source Solutions",
        },
    }
    
    fmt.Printf("Loading profile for: %s...\n", ben.Name)
}

🛠️ Stack Technique

  • Langages : Go, Python, JavaScript, TypeScript, Node.js
  • Frontend : React, Vue.js, Next.js, HTML5/CSS3
  • Backend & DB : REST, GraphQL | PostgreSQL, MongoDB, Redis
  • DevOps & Infra : Docker, Ansible, Linux, GitHub Actions, Digital Ocean, CloudFlare

🚀 Projets & Articles

J'adore créer des solutions pour améliorer l'expérience développeur (DX) et partager ce que j'apprends en chemin.


💬 Envie de collaborer sur un projet innovant ou de discuter technique ? Envoyez-moi un email !

Pinned Loading

  1. societyai societyai Public

    SocietyAI is a TypeScript library for building complex collaborative AI systems. DAG engine, zero dependencies, and completely model agnostic.

    TypeScript 4

  2. signal-sdk signal-sdk Public

    A comprehensive TypeScript SDK for interacting with signal messenger, providing JSON-RPC communication and a powerful bot framework.

    TypeScript 10

  3. prompt-my-project prompt-my-project Public

    Is a command-line tool designed to create optimized, structured prompts from your software project's source code.

    Go 2

  4. xsh xsh Public

    Twitter/X CLI without API keys. xsh is a command-line interface for Twitter/X that works with cookie-based authentication. No developer account, no API keys, no rate limit headaches. Just log in wi…

    Go 2 1

  5. gowm gowm Public

    GoWM simplifies the integration of Go WebAssembly modules into your JavaScript projects.

    JavaScript 3 1

  6. mira mira Public

    Long-term memory system for LLMs with optimal context budget allocation, approximation guarantees, and temporal coherence. 100% local, deterministic, O(n log n).

    Go