home.social

Search

1000 results for “cli_ar”

  1. Go実装のCLI/TUIツール。ほう
    ---
    SSHポートフォワーディングを劇的に快適にする「MolePort」完全ガイド【導入から活用まで】
    zenn.dev/nonejp/articles/molep
    #bookmarks

  2. [Stéphane HUC :: IT Log] nous offre un article à-propos de Debian : rmadison, l'outil CLI pour interroger le dépôt des paquets de Debian

    - doc.huc.fr.eu.org/fr/sys/debia

    #Debian #rmadison #depots

  3. I often need to spin disposable machines with network connectivity for testing, deployment or some work that require isolation, and then keep it running or trash it out!

    I thought if I could just put the essential of my config into one of this nice disk images created by nixos-generators / disko and the likes.
    I could then spawn a ton of #vm by pressing enter, arrow up, enter,.. 😄

    It took some time, but I finally came up with a cli that does the job!

    #nixos #rust
    github.com/crocuda/virshle

  4. Starting tomorrow, my book about JFP will be available for free on Amazon for 5 days.

    JFP — JARO Flash Protocol — is my attempt to describe a more controlled way of working with AI-assisted development.

    The main idea is simple:

    AI can generate.
    JFP controls.

    Instead of relying only on vague prompts, JFP focuses on clear specifications, explicit constraints, mapped outputs, validation before execution, human review when scope becomes unclear, and execution reports after the work is done.

    I have also started publishing the open-source companion repository on GitHub, with examples, templates, validator/CLI prototypes, case studies, and an early GitHub Actions integration.

    Book:
    amazon.co.uk/dp/B0GYS9GCRS

    Repository:
    github.com/etechvictoria-ui/et

    This is still early-stage work, but I believe the problem is real:

    AI is powerful, but uncontrolled AI work can easily become unclear, unsafe, or difficult to review.

    JFP is my attempt to make AI-assisted work more explicit, bounded, reviewable, and auditable.

    Feedback is welcome.

    #ArtificialIntelligence #SoftwareDevelopment #OpenSource #GitHub #AIEngineering #AIGovernance #DeveloperTools #JFP

  5. Starting tomorrow, my book about JFP will be available for free on Amazon for 5 days.

    JFP — JARO Flash Protocol — is my attempt to describe a more controlled way of working with AI-assisted development.

    The main idea is simple:

    AI can generate.
    JFP controls.

    Instead of relying only on vague prompts, JFP focuses on clear specifications, explicit constraints, mapped outputs, validation before execution, human review when scope becomes unclear, and execution reports after the work is done.

    I have also started publishing the open-source companion repository on GitHub, with examples, templates, validator/CLI prototypes, case studies, and an early GitHub Actions integration.

    Book:
    amazon.co.uk/dp/B0GYS9GCRS

    Repository:
    github.com/etechvictoria-ui/et

    This is still early-stage work, but I believe the problem is real:

    AI is powerful, but uncontrolled AI work can easily become unclear, unsafe, or difficult to review.

    JFP is my attempt to make AI-assisted work more explicit, bounded, reviewable, and auditable.

    Feedback is welcome.

    #ArtificialIntelligence #SoftwareDevelopment #OpenSource #GitHub #AIEngineering #AIGovernance #DeveloperTools #JFP

  6. Starting tomorrow, my book about JFP will be available for free on Amazon for 5 days.

    JFP — JARO Flash Protocol — is my attempt to describe a more controlled way of working with AI-assisted development.

    The main idea is simple:

    AI can generate.
    JFP controls.

    Instead of relying only on vague prompts, JFP focuses on clear specifications, explicit constraints, mapped outputs, validation before execution, human review when scope becomes unclear, and execution reports after the work is done.

    I have also started publishing the open-source companion repository on GitHub, with examples, templates, validator/CLI prototypes, case studies, and an early GitHub Actions integration.

    Book:
    amazon.co.uk/dp/B0GYS9GCRS

    Repository:
    github.com/etechvictoria-ui/et

    This is still early-stage work, but I believe the problem is real:

    AI is powerful, but uncontrolled AI work can easily become unclear, unsafe, or difficult to review.

    JFP is my attempt to make AI-assisted work more explicit, bounded, reviewable, and auditable.

    Feedback is welcome.

    #ArtificialIntelligence #SoftwareDevelopment #OpenSource #GitHub #AIEngineering #AIGovernance #DeveloperTools #JFP

  7. Starting tomorrow, my book about JFP will be available for free on Amazon for 5 days.

    JFP — JARO Flash Protocol — is my attempt to describe a more controlled way of working with AI-assisted development.

    The main idea is simple:

    AI can generate.
    JFP controls.

    Instead of relying only on vague prompts, JFP focuses on clear specifications, explicit constraints, mapped outputs, validation before execution, human review when scope becomes unclear, and execution reports after the work is done.

    I have also started publishing the open-source companion repository on GitHub, with examples, templates, validator/CLI prototypes, case studies, and an early GitHub Actions integration.

    Book:
    amazon.co.uk/dp/B0GYS9GCRS

    Repository:
    github.com/etechvictoria-ui/et

    This is still early-stage work, but I believe the problem is real:

    AI is powerful, but uncontrolled AI work can easily become unclear, unsafe, or difficult to review.

    JFP is my attempt to make AI-assisted work more explicit, bounded, reviewable, and auditable.

    Feedback is welcome.

    #ArtificialIntelligence #SoftwareDevelopment #OpenSource #GitHub #AIEngineering #AIGovernance #DeveloperTools #JFP

  8. Python Tip #117 (of 365):

    Consider sys.argv before argparse

    If you just need to accept a single argument to your CLI program, using sys.argv is simple:

    try:
    [path] = sys.arg[1:]
    except ValueError:
    print("Usage: my_program.py path", file=sys.stderr)

    You can even handle "--help", like this:

    if path == "--help":
    print("Usage: my_program.py path", file=sys.stderr)

    🧵 (1/2)

    #Python #DailyPythonTip

  9. Let's talk CLI/TUI and Developer Workflows!

    I’m looking to refresh my local toolkit and I’m curious: what are the absolute "must-have" CLI or TUI programs in your current rotation?

    Whether it's a specialized utility for a specific language, a terminal-based interface for a common service, or a workflow-changing alias, I want to hear about it. I’m especially interested in tools that prioritize keyboard-driven navigation and accessibility.

    My Current Favorites:

    To get the ball rolling, here are a few tools I’ve been leaning on lately:

    • uv — Fast, reliable Python package and project management.
    • fzf & ripgrep — The classic duo for fuzzy finding and searching.
    • tmux — For session management and persistent terminal workspaces.
    • jq / yq — Essential for wrangling JSON and YAML without leaving the prompt.

    What about you?

    1. What is one tool you've discovered recently that you can't live without?
    2. Are there any TUI-based clients for web services (like Mastodon, GitHub, or RSS) that you recommend?
    3. Do you have a favorite "hidden gem" script or small utility?

    Mentions & Groups

    @programming
    @linux @[email protected] @selfhosted

    Hashtags

    #CLI #TUI #Terminal #OpenSource #FOSS #Programming #DevTools #Linux #SysAdmin #Workflow #Python #Backend #ArchLinux #KeyboardDriven #Accessibility #SoftwareDevelopment #TechTalk

  10. BTW, this is how `ares-suitbl` CLI test runner looks and feels like:

    youtu.be/5BuovzG48NQ

    - Customizing reporting (from silent or compact to tree-based or full-blown junit).
    - Filtering and scheduling tests (using module name, test description or whatever).
    - Bringing your own reporters and schedulers (CLI oneliners, combinators or an arbitrary implementation from your module).

  11. And because a proper CLI tool needs to have a man page, I also made this little build.zig wrapper around scdoc.
    codeberg.org/spiffyk/scdoc.zig

    #zig #ziglang #scdoc #man

  12. And because a proper CLI tool needs to have a man page, I also made this little build.zig wrapper around scdoc.
    codeberg.org/spiffyk/scdoc.zig

    #zig #ziglang #scdoc #man

  13. And because a proper CLI tool needs to have a man page, I also made this little build.zig wrapper around scdoc.
    codeberg.org/spiffyk/scdoc.zig

    #zig #ziglang #scdoc #man

  14. And because a proper CLI tool needs to have a man page, I also made this little build.zig wrapper around scdoc.
    codeberg.org/spiffyk/scdoc.zig

    #zig #ziglang #scdoc #man

  15. And because a proper CLI tool needs to have a man page, I also made this little build.zig wrapper around scdoc.
    codeberg.org/spiffyk/scdoc.zig

    #zig #ziglang #scdoc #man

  16. The newest gh CLI has added telemetry:

    "As agentic adoption of GitHub CLI grows, our team needs visibility into how features are being used in practice."

    Opt out with any of these:

    export GH_TELEMETRY=false # any falsy value: 0, false, disabled

    export DO_NOT_TRACK=true

    gh config set telemetry disabled

    cli.github.com/telemetry
    github.com/cli/cli/releases/ta

    Edit: Here's a script to set the env vars for GitHub Actions in your orgs and user repos: github.com/hugovk/github-tools

    #GitHub #CLI #telemetry

  17. nmcli is a CLI tool that talks to NetworkManager—lets you create and manage connections, check status, and run basic network diagnostics right from the terminal

    Here are useful nmcli command examples 😎👇

    Find high-res pdf ebooks with all my Linux related infographics at study-notes.org/linux-ebook.ht

    #linux #kalilinux #sysadmin #opensource #devopstraining

  18. nmcli is a CLI tool that talks to NetworkManager—lets you create and manage connections, check status, and run basic network diagnostics right from the terminal

    Here are useful nmcli command examples 😎👇

    Find high-res pdf ebooks with all my Linux related infographics at study-notes.org/linux-ebook.ht

    #linux #kalilinux #sysadmin #opensource #devopstraining

  19. nmcli is a CLI tool that talks to NetworkManager—lets you create and manage connections, check status, and run basic network diagnostics right from the terminal

    Here are useful nmcli command examples 😎👇

    Find high-res pdf ebooks with all my Linux related infographics at study-notes.org/linux-ebook.ht

    #linux #kalilinux #sysadmin #opensource #devopstraining

  20. nmcli is a CLI tool that talks to NetworkManager—lets you create and manage connections, check status, and run basic network diagnostics right from the terminal

    Here are useful nmcli command examples 😎👇

    Find high-res pdf ebooks with all my Linux related infographics at study-notes.org/linux-ebook.ht

    #linux #kalilinux #sysadmin #opensource #devopstraining

  21. OK, if you are into CLI AI tools, how about geminicli.com/docs? #GeminiCLI #AI

  22. OK, if you are into CLI AI tools, how about geminicli.com/docs? #GeminiCLI #AI

  23. OK, if you are into CLI AI tools, how about geminicli.com/docs? #GeminiCLI #AI

  24. OK, if you are into CLI AI tools, how about geminicli.com/docs? #GeminiCLI #AI

  25. OK, if you are into CLI AI tools, how about geminicli.com/docs? #GeminiCLI #AI

  26. [Перевод] Как кодинг-агенты используют инструменты, память и контекст репозитория, чтобы писать код лучше

    Это перевод хорошей статьи про базу того, как устроены кодинг-ассистенты и что для них важно: что такое харнесс и харнесс-инжиниринг , в чем разница просто агентной обвязки и кодинговой, что такое компактизация и почему та же самая модель в консольке ощущается мощнее, чем просто в веб-чате. Сильного хардкора и больших откровений в ней нет, но это отличный материал для старта изучения архитектуры кодинг-ассистентов и лучшего понимания, как оно работает внутри.

    habr.com/ru/articles/1021168/

    #harness #харнесс #кодингхарнесс #кодинг #кодинг_ассистенты #aiassisted_development #harness_engineering #claude_code #codex #coding_cli