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

The four common number checks we do are:

Uncategorized
4 4 23

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    8 Views
    Nearly a year ago, we lost @codefolio. A kindness in the community and a keeper of _why's flame.In the ✍️ guestbook, Noah wrote:> Why is gone but never forgotten.> Ruby and Shoes!> — Noah GibbsHe spent years preserving _why's work, rebuilding #Shoes and reminding us that programming could be joyful.Now, Noah is gone too.Even further. 🕯️But like _why, he's never forgotten.Rest well, Noah. 💜#whysfoxes #WPGTRPage115 #noahgibbs #SpaceShoes #WhysPoignantGuideToRuby #Ruby
  • wanna see something weird?

    Uncategorized ruby
    2
    0 Votes
    2 Posts
    11 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
    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
  • 0 Votes
    1 Posts
    7 Views
    so, #Day2 of #AdventOfCode with #rust and #ruby.Brute force, but in ruby it feels more natural for me to create a bunch of arrays, in rust it seemed easier to fiddle with array indexes. I wonder if I could use some "zero cost" slices?I'm pretty sure I could do both things the same way tho. Also my first rust tests! I'm not sure what the naming convention is supposed to be, the rust book doesn't make it clear imo.https://gist.github.com/riffraff/0aae02aeaa3af9e0320b8d944ab78e2d