mike_wooskey

joined 2 years ago

Congrats. And what a fantastic smile!

Socialism is the idea that the means of production are owned by everybody (by the society). It sounds like you're saying you can't afford to pay for something (in this kind-of-capitalist society) so you "like to think of it" as socialism, which you define as an exchange of goods and services rather than money, but you didn't describe exchanging anything - you just describe taking something without paying for it.

I disagree with your definition of socialism, and with the idea that socialism (as I defined it) is good.

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

not having money to pay for all the services I use so I like to think of it as a socialist type system

I don't understand this. Not being able to afford products/services doesn't mean that the sellers of those products/services are socialist. Maybe I don't understand what you mean by "system".

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 week ago (1 children)

What definition of "vibe coded" are they using?

[–] mike_wooskey@lemmy.thewooskeys.com 3 points 1 week 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 1 week 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 2 weeks ago (2 children)

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

 

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 ›