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

What's up with #RubyOnRails?

Uncategorized
2 2 13

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    11 Views
    🧠 Modular Garbage CollectorsFor the first time, CRuby can dynamically load alternative GC implementations (including MMTk-based ones) at runtime β€” opening the door to new performance strategies and future runtime flexibility.Deep dive here πŸ‘‡πŸ”— https://rubystacknews.com/2026/02/23/%f0%9f%a7%a0-pluggable-garbage-collectors-in-ruby-exploring-the-new-modular-gc-api/#ruby #rubylang #opensource #programming #performance #devOps
  • 0 Votes
    1 Posts
    14 Views
    Is there a way to make a #Mastodon post by sending an #email?That would be really cool.#tech #question #fediverse
  • 0 Votes
    1 Posts
    2 Views
    Guest?
    Good morning This account is still alive. This morning I was thinking about my privacy. Many say that fediverse is more private. But they do not say that when post are send to servers, we do not know how each servers react. For example this message publish 2025-12-09 will stay on different servers untilll .... I don't know. I will remove it from my server but some server keeps it 'for ever'. In 2028 maybe someone will see that message. But this account will not exists anymore.Now I delete only message from my server. In the future I will delete my own post remotely. I don't know yet how but I will learn. #fediverse #activitypub #question #thinking
  • Hi everyone,

    Uncategorized ruby
    1
    0 Votes
    1 Posts
    5 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