mike_wooskey

joined 2 years ago

I've had great success, but I have a pretty beefy gpu: radeon pro w7900 (48GB vram).

Definitely not as fast or good as frontier models, but quite good! I'm currently using qwen3.8-27b, but have used qwe3.6-35b-a3b and other models (including using openrouter and opencode go, but you asked about self-hosting).

Also, FYI, I use opencode.

[–] mike_wooskey@lemmy.thewooskeys.com 1 points 1 day ago (1 children)

What definition of "vibe coded" are they using?

[–] mike_wooskey@lemmy.thewooskeys.com 3 points 5 days ago (2 children)

That's pretty darn cool! Thanks for sharing. Ik forward to cloning your repo someday.

[–] mike_wooskey@lemmy.thewooskeys.com 7 points 6 days ago (17 children)

I'm viewing this thread in Lemmy and am unable to find any mention of a link to the source code or a demo, and I can't see the attached media (genetic image icon - is it an animated gif or a video?).

Based on all the comments, I appear to be in the [significant] minority. Would you mind posting a link to your source or demo or image/video?

I'm very sorry it was your friend's time to go. 🙁

Now, you'll walk without your dog, but also, your dog will always be with you. 🐶🩵

[–] mike_wooskey@lemmy.thewooskeys.com 6 points 1 week ago (2 children)

I'm so sorry. From that picture I can tell that he and you were good friends to each other.

[–] mike_wooskey@lemmy.thewooskeys.com 2 points 1 week ago* (last edited 1 week ago) (2 children)

I've tested using nostr and it seems cool (I love decentralization), but I don't really know what it is. Your question made me curious about the differences between nostr and activitypub, so I asked my AI.

I thought the response was useful so I'll paste it here. If you don't like AI responses, stop reading this post here.

[Edit: moved AI responses into spoiler]

AI responseI asked: Explain the main differences and similarities between nostr and activitypub.

Qwen-3. 8 said: Both are open, JSON-based protocols for decentralized social media, but they take opposite ends of the design spectrum.

TL;DR: Nostr is a minimal client↔relay broadcast protocol where you are your keypair. ActivityPub is a heavy server↔server federation protocol where servers host accounts and talk to each other.

Main differences

Nostr ActivityPub
Architecture Client ↔ many relays (star topology). Relays are dumb stores/forwarders that never sync with each other Server ↔ server mesh. Servers discover each other (WebFinger) and exchange activities directly via HTTP
Identity secp256k1 keypair — your public key is your identity, hosted nowhere URL-based account (@you@instance.social) hosted and controlled by a server
Complexity Tiny: WebSocket + signed JSON "events" + Schnorr signatures. Trivially easy to implement Heavy: JSON-LD, Activity Streams 2.0 objects, HTTP signatures, inboxes/outboxes, WebFinger
Data model Flat events (kind + tags + content), semantics defined by NIPs Rich typed objects (Person, Note, Follow, Like, Collection, …)
Moderation Almost none built in — spam filtering is client-side or per-relay policy Per-instance moderation: reports, blocks, instance-level blocklists
Discovery No native user search (NIP-05 vanity mapping, directory relays) WebFinger, search endpoints, follow graphs
Media Not in core — external links or NIP-94 metadata Native images, video, polls, boosts
Censorship resistance High — anyone can run a relay; clients fetch from many so content is globally replicated Lower — each server is a full trust domain; your account and content live or die with it
Maturity New (2023), fast-moving, experimental (Presto, Amethyst, Snort, nostr.band) W3C standard (2018), large ecosystem (Mastodon, Pleroma/Akkoma, Misskey, PeerTube, Lemmy)

One nuance: Nostr isn't really "federation" at all — there's no server-to-server sync. It's a publish/subscribe model where your client aggregates multiple relays. ActivityPub is true server-to-server federation.

Similarities

  • Both are open specs for decentralized social media, both JSON-based, both self-hostable
  • Both are protocol-first: any client can read any node — any Nostr client works against any relay, any ActivityPub app can follow any ActivityPub account
  • Both support the core loop: follows, posts, replies, likes
  • Both use cryptographic signatures (Nostr: Schnorr per event; ActivityPub: HTTP signatures per request)
  • Both struggle with spam/abuse, just at different layers
  • Both expanded beyond microblogging: Nostr into chat, marketplaces, payments (LNURL); ActivityPub into forums (Lemmy) and video (PeerTube)

Rough heuristic: Nostr optimizes for simplicity, portability, and censorship resistance at the cost of moderation and discovery. ActivityPub optimizes for a mature, moderate-able social graph at the cost of complexity and server lock-in.

Not usually. I worked as a "Package Handler" (package sorter and loader) as well as an Operations Manager at a FedEx station. The only time drivers loaded their own trucks (or even helped, or were even in the building during the loading), was when too many package handlers were out sick, or maybe during the Xmas rush.

You still haven't. 😉

 

A cool calculator and unit conversion utility written in Clojure. Parses natural English phrases like "how many inches are in 3 feet?" and evaluates them using arbitrary-precision arithmetic on all platforms.

calc can be accessed from several runtimes:

  • In your CLI via Babashka, JVM Clojure, or Python (Basilisp).
  • On the Web at calc.rymcg.tech (100% client-side) or by downloading a copy of of the bundled website: calc.html.
  • As a Library in your Clojure/ClojureScript/Basilisp applications.

Local only, no LLM used for natural English phases.

 

cross-posted from: https://lemmy.thewooskeys.com/post/1269207

A friend of mine made a cool calculator and unit converter. It parses natural English phrases like "how many inches are in 3 feet?" and "300 miles / 65 mph in hours and minutes" and "download 10GB 1Gbps". You can access it from web (including PWA), CLI or as a library. It has a strong FOSS philosophy behind it.

 
 

The Purina for Professionals website's "cookie management" (to opt out of cookies) is heavily dark-patterned. Not only does the popup at the bottom of the page not have cookie management (it has a link that takes you to a page that has a link to take you to cookie management), but the wording is intentionally counter-intuitive to opt out: Manage Cookies UI The option is called "Do Not Sell or Share My Personal Information", which suggests that by selecting the option, you want them to not sell or share your information. But in parentheses it adds "slide left to opt out of sale/share", which suggests that disabling the option means for them to not sell or share your information.

 

Which of the 3 buttons does which of the 4 commands listed next to them?

 

I recently integrated self-hosted Ollama with Home Assistant and it's pretty cool.

I'd like to also be able to ask the Home Assistant Assist things like "What movies are playing in MyCity?" and have the model in Ollama search the web and summarize the results. I use Open-WebUI as a frontend for Ollama and it can do that, but I can't see how configure HA's Assist to do it.

Has anyone done this?

Another example would be to ask "what's the weather today?", and I realize that HA has a weather integration built in and thus I wouldn't need Ollama to search the web for results. Is there a web search integration for HA, so that any question (like "what movies are playing") could be passed to it?

My ultimate goal is to be able to ask questions about the world (i.e., search the web and summarize the results) and control Home Assistant devices. It doesn't have to be HA's Assist, but if I were to use Open-WebUI* for example, I'd have to come up with a way to link my audio-listening devices to it. It also doesn't have to be one "entity", but it should "feel like" one entity to the user (i.e., I don't want to have to speak to a different device or have a different wakeword to ask about the world than I do to control Home Assistant).

*Open-WebUI has integrations to control Home Assistant.

 

Of the 3 buttons in the red-outlined-box on this Brother printer control panel, which does what function? Grrr!

 

Can someone please paste the configuration yaml for an M5Stack Atom Echo that is currently working as a voice assistant satellite for Home Assistant using open wake word? (remember to redact your private data)

I installed a bunch of these Echos following these instructions back when they were first introduced. They have tiny little speakers which are essentially useless, but I routed the output sound to a media player in the same room. At that time the only option was to use open-wake-word - Nabu Casa even provided instructions and virtual-gpu resources to train your own wakeword, which I did.

The Echos worked great with my own custom wakeword for a long time!

Then sometime within the past year they stopped working. Their "wake word" entity is unavailable. I know Home Assistant came out with micro-wake-word, but I wasn't aware they ended (or broke) the open-wake-word functionality. I'd love to get my Echos working again - I'd prefer to use open-wake-word, but if the only way they're going to work now is with a pre-set wakeword, that's better than no voice assist at all!

Thanks for any help you can provide.

 

I want to install smart blinds on 4 windows, from small (2'x3') to kind of large (4'x5').

I need them blinds to be local-only and integrate into Home Assistant.

I'm looking at SmartWings, but blinds with a z-wave motor for one of my large windows would cost Just under $400. That seems a bit expensive to me (especially considerin that I got my current non-motorized, non-smart blinds for those windows for like $50 each - and they're good blinds!). Is that just what smart blinds are going to cost? Or did I land on an expense option?

Do you have a preferred make or model of local-only smart blinds?

 

Is anyone familiar with gum?

I have a simple:

while true; do
    CHOICE=$(gum choose "one" "two" "three")
    case "$CHOICE" in
        "one")
            <do something>
        "two")
            <do something>
        "three")
            <do something>
    esac
done

If the user hits ESC, gum displays "nothing selected" and exits.

Is there a way to disable the "nothing selected"? I tried redirecting 2>/dev/null but it suppresses the entire menu. I also tried adding $'\x1b' to the case, but it did nothing.

I also tried adding:

    if [ -z "$CHOICE" ]; then
        exit 0
    fi

directly after CHOICE=$(gum choose...).

No dice.

 

Within the past couple months, I saw someone's pet-project where they were cobbling together a self-hostable FOSS app/service to allow people to collaborate on travel planning. It included note taking, images, possibly some functionality around dates, and a map to drop pins and see a route (I'm not sure which backend but I would guess OSM).

Now I can't find it. :(

Does anyone use an app like this? Does anyone have any recommendations? My needs are loose - my only requirements are a FOSS license and to be self-hostable.

Thanks for ideas/suggestions.

 

Cross-posted from "finance management software suggestions" by @mike_wooskey@lemmy.thewooskeys.com in !foss@beehaw.org


I used to use Quicken long ago but have been using Moneydance for many years to manage my personal finances. But Moneydance is propietary software and I prefer FOSS now. What's your preferred finance management software?

Thing I need it to do:

  • manage different accounts (common types are banks, credit cards, loans, assets)
  • have basic reporting (e.g., categorized expenses per time period)
  • preferably uses tags
  • export or copy reports or data - could be excel or csv or something that can be pasted or imported into spreadsheets
  • self-hostable with a web app

I'm not a fan of software that's budget-focused. I don't mind it having some budgeting functionality, but I don't want opinionated software to force me to manage my money a certain way. I just want felxible software to help me manage my software how I want to manage it.

I'm wary of source-available/freemium/dual-licensed/open-core licenses. It can't hurt to suggest such apps if you like them and I'll take a look, but I think it's not likely that I'll buy into that philosophy.

So what software do you use and like?

view more: next ›