Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

#ruby drama continues: https://www.ruby-lang.org/en/news/2025/10/17/rubygems-repository-transition/

Uncategorized
1 1 10

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    1 Views
    πŸŽ‰ ratatui_ruby v1.0.0-beta.1 is out!Ruby bindings to Ratatui, the Rust TUI library. Native performance, Ruby expressiveness.Why 1.0? The API is stable. Projects like Sidekiq are building on it. Beta means we need real-world usage to find edge-case bugs.New website: https://www.ratatui-ruby.devgem install ratatui_ruby --preHelp shape the 1.0.0 final release: try it and report bugs!rubygems.org/gems/ratatui_ruby#ruby #rust #tui #cli #ratatui #programming #software #coding #ui
  • 0 Votes
    5 Posts
    7 Views
    @citizen428 If you need "support". I think I can do Ruby and Elixir. Python is a less well-trained skill. Go would be on my list to use for things.
  • wanna see something weird?

    Uncategorized ruby
    2
    0 Votes
    2 Posts
    2 Views
    btw, it's super cool that the wayback machine is able to play old flash files.
  • Hi everyone,

    Uncategorized ruby
    1
    0 Votes
    1 Posts
    4 Views
    Hi everyone,I'd like to share and announce the release of llm.rb v2.1.0.The source is available at https://github.com/llmrb/llm.rb > What is llm.rb?llm.rb is a zero-dependency Ruby toolkit for Large Language Models thatincludes OpenAI, Gemini, Anthropic, xAI (Grok), zAI, DeepSeek, Ollama,and LlamaCpp. The toolkit includes full support for chat, streaming,tool calling, audio, images, files, and structured outputs. > ExampleA simple chatbot that maintains a conversation and streams responses inreal-time:#!/usr/bin/env rubyrequire "llm"llm = LLM.openai(key: ENV["KEY"])bot = LLM::Bot.new(llm, stream: $stdout)loop do print "> " bot.chat(gets) print "\n"end#ruby