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

Just launched a new site to showcase my open source work.

Uncategorized
1 1 10

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • Just learned a bash trick.

    Uncategorized bash linux
    1
    0 Votes
    1 Posts
    3 Views
    Just learned a bash trick.~- means "the directory you were in before this one" So, if you want to copy a file from mercury and you are in jupiter:mercury$ lsufomercury$ cd jupiterjupter$ cp ~-/ufo .Kind of neat. Use with caution!🦇 #Bash #Linux
  • 0 Votes
    5 Posts
    10 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.
  • 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
  • Rules

    Uncategorized programming bash csh ksh fish opensource fork
    1
    1
    0 Votes
    1 Posts
    12 Views
    Rules* Never execute scripts from the internet* Never execute scripts as root if you do not know what they do#Programming #bash #sh #csh #ksh #fish #OpenSource #fork #bomb #forkbomb https://www.cyberciti.biz/faq/understanding-bash-fork-bomb/