[-] Nimrod@lemm.ee 3 points 1 day ago
[-] Nimrod@lemm.ee 3 points 1 day ago

I always get both beans in my burrito bowl. Why settle for only one bean bowl?

[-] Nimrod@lemm.ee 2 points 6 days ago

Legit everything I make from Nora cooks has been good.

https://www.noracooks.com/

[-] Nimrod@lemm.ee 15 points 1 week ago

You forgot v) collaborates internationally for work, requiring them to be awake early to maximize overlapping hours in their workday.

But even I know not to do noisy shit outside until at least 10. Those few quiet hours in the morning where it seems I’m the only person alive are to drink coffee and cherish.

10
submitted 2 weeks ago* (last edited 2 weeks ago) by Nimrod@lemm.ee to c/homeassistant@lemmy.world

I have a Shelly dimmer 2 behind one of the switches in my kitchen running Tasmota. There are two switch inputs on the Dimmer module, so I have it behind a 2 gang wall box with two physical switches. Each switch is connected to one of the switch inputs of the Shelly.

I've set the switches to be independent of each other, so I can potentially use the different switches for different triggers. Switch one is configured as a push button switch and dims my kitchen lights. Switch two does nothing. I desire to have switch2 trigger my dining room lights, so after some digging I discovered that I can use MQTT to make Home Assistant do stuff! Perfect.

But not perfect. I set up an automation to listen for this devices' MQTT topic "tele/lights_kitchen/SENSOR" and when the switch is flipped either up or down, my mosquitto broker hears that topic, and it just toggles my lights! I thought I had it all figured out. But what I didn't notice at first, is that the Shelly Dimmer pings out an MQTT status every so often, even if no switches are flipped. So my dining room lights have been going on and off all afternoon!

There is some data in the payload of the MQTT that I think should be able to fix my issue, but I'm having trouble conceptualizing how.

The payload contains a key:value pair {"Switch2":"ON"} or "OFF". So I'm hoping I can use a change in that value as a toggle. Because it's operating as a 3 way switch, I don't care if the actual value is ON or OFF, I just want to know if it's changed. Do I need some sort of helper that keeps track? This seems like something MQTT would be good at, but I can't find a good example to steal the right config from. I thought maybe I could use two triggers, one for each state, but that makes a huge complicated set of logic that needs to be added, and I really feel like there should be a more elegant way to handle this.

Any assistance?

21
submitted 2 months ago by Nimrod@lemm.ee to c/linux@lemmy.ml

So, I have my desktop configured with two drives, one has a regular windows install on it that I need to play games with my brother. That works fine.
My second drive originally had Debian on it. But I wanted to also install EndeavorOS. At this point in time, all 3 work, but the selection process to access each system is painfully different.

To access Windows, I just boot from cold, and hit enter or wait for the timer to run out on Windows booting. But when I hit esc to cancel booting Windows, it brings me to Debian's GRUB selector. But I think when I installed EOS I used the default settings, and I believe it doesn't use GRUB by default (systemd). So the GRUB menu I get only has Debian or Windows. If I hit 'esc' again I am brought to the grub> command line. Here the only thing I know how to do is type "exit" and it closes this grub> cmd line and opens another, very similar one. I type 'exit' again and I am finally met with EndeavorOS's boot selector (I believe this is systemd?)

Now I know from my first dual boot with windows/Debian that I am pretty much stuck having windows boot loader run first, so my perfect scenario of having a single selector off boot is a pipe dream, but I'd love to remove a few of the GRUB cmd steps in getting to EOS (chances are I will only need the Debian system for very specific tasks. odds are I will end up removing it) I'm guessing if I would have told the EOS installer to use GRUB it would have potentially added EOS to the GRUB selection screen? Is it possible to rectify this without wiping and reinstalling with different boot loader options?

[-] Nimrod@lemm.ee 16 points 2 months ago

I thought it meant ‘once every other carb’…?

[-] Nimrod@lemm.ee 16 points 2 months ago* (last edited 2 months ago)

“Wood” = “would”

These posts are allergic to punctuation. So there also should be a “.” or something after the “would”.

[-] Nimrod@lemm.ee 60 points 2 months ago

Not true. VFTs prefer nutrient poor soil. In fact, the main reason owners of these plants fail to keep them alive is not watering them with pure enough water. You’re supposed to use water with a TDS below 100ppm. Rain water or RO water preferred.

The reason these plants can survive in such low nutrient soils is because they evolved a different mechanism for obtaining nutrients.

[-] Nimrod@lemm.ee 23 points 2 months ago

I think the fact that there are ~40% of bills that both rich and middle class Americans oppose is pretty solid proof that congress doesn’t give a shit about what American citizens want them to pass… or am i misinterpreting this?

[-] Nimrod@lemm.ee 24 points 2 months ago

Quick correction: McD’s fries are vegan everywhere except the US. They use some sort of milk and “natural beef flavoring” in the breading here for some dumb ass reason. In Europe they’re vegan though.

[-] Nimrod@lemm.ee 20 points 3 months ago

Thank you for the sources. Some comments:

  1. I don’t think a narrowing of the income inequality between races is the same as a generalized reduction in income inequality across a whole nation. Yes it probably contributes, but it doesn’t tell the story.
  2. your article on GINI tells the exact opposite story that you’re saying here. The headline says it all: pre-tax income inequality has fallen slightly (1.2% or so) but after people pay taxes, the income inequality actually ROSE!! Easily demonstrating the regressive nature of the tax structure. The article mentions some expiring tax breaks for low income households.
[-] Nimrod@lemm.ee 46 points 4 months ago* (last edited 4 months ago)

Potato tubers are not actually roots. They are modified stems. So the surest way to force more potatoes is to “hill” them. In the commercial fields this is done with a huge tractor raking soil from in between planting rows and piling it up on the plants. You essentially bury the plants stem as it grows taller. Then the buds on the stem will push out stolons (horizontal underground stems.) these will terminate in tubers, aka: potatoes!

Source: did potato disease research for my PhD.

Additional edit: loose/sandy soil is critical. Too dense of soil and your tubers can’t expand well.

[-] Nimrod@lemm.ee 18 points 4 months ago

I get the cheese argument, but the dairy-free ice cream these days is wild. Oatly, and a few others have some incredible offerings.

7
submitted 8 months ago by Nimrod@lemm.ee to c/homeassistant@lemmy.world

I have a Shelly Dimmer2 flashed with Tasmota. It has two 'switch' inputs. I have the shelly installed behind a two-gang switch box with the two inputs connected to two different switches. But currently, if I flip either switch, the same light is flipped (the one connected to the output of the Shelly Dimmer)

I thought I could disconnect one of the switch inputs, and use it to send an MQTT message to a different light in my HA config. Effectively using one Shelly device to convert two 'dumb' switches into smart ones.

I have dug through the docs at Tasmota, and I can't seem to find what I'm looking for. Am I using the wrong keywords?

15
submitted 8 months ago* (last edited 8 months ago) by Nimrod@lemm.ee to c/firefox@lemmy.ml

I recently installed Debian 12 using Xfce on my SUPER old chromebook to extend its life. Everything has been really nice so far. But I use the chromebook for browsing 90% of the time, so I like to have everything as easily operated as possible, and I am used to being able to navigate forward and back in the browser using two finger swipe gestures.
After some googling, I saw that the support for this just got added in Wayland environments. That implies that it already existed in X11 environments? After a while, I found that if you hold 'alt' you can use the swipe gestures. It defeats the purpose of gestures if you have to use both hands, so I was hoping there was a way to get this functionality back.

(Mozilla Firefox version = 115.6.0esr)

12
submitted 8 months ago* (last edited 8 months ago) by Nimrod@lemm.ee to c/linux@lemmy.ml

Background: I'm not "new" to linux, but this is my first year daily driving it. I have been running Mint on my main PC for a little over a year, and I love it.

My super old chromebook (Acer c720) has reached end of life. It is no longer supported by Google, and will not receive updates. I've toyed with dual-booting it to Linux in the past with Bodhi, but eventually it broke, and I ended up reverting to ChromeOS. That was years ago, and my patience/knowledge has grown, and I'm committed to switching.

So the other day I went ahead and pulled the trigger. I removed the write-protect screw from the Chromebook's motherboard, and installed Debian 12. I really just chose Debian because I already had a flash drive with the ISO on it for a different project (rooting my Dreame vacuum). It also runs GNOME by default, and I had never used that, so I thought it would be worth a try.
Turns out, I didn't mind GNOME, and I really loved the three-finger swipe to switch workspaces. BUT... The function keys on the chromebook that are used for changing the screen's brightness don't work. So I dove down the rabbit hole of trying to get those to work. Found 'xbacklight' and gave it a go. didn't work, and I struggled with it for a few hours until I discovered that xbacklight doesn't work with Wayland... So I attempted to disable wayland, and also made some other changes that lead to my Chromebook not completing its boot up... whoops. Every challenge is an opportunity, so I figured - why not explore some other distros, and see if I can't find one that fits my needs a bit better?

Now the request: The hardware of this machine is OLD, so I am hoping to put something super light on it, but still be able to have a few features:

  1. Trackpad gestures (swapping workspaces, navigating firefox).
  2. Window snapping (left and right panes at least)
  3. I don't care too much about how it looks, but I need to be able to map the function keys to volume and brightness.

I have been lurking on Lemmy for long enough to have watched all the memes/conversations about different desktop managers (GNOME/Xfce/etc) but I never really understood what the deal was, but now I am coming face to face with that decision, and I'd love some "professional" input!

Edit: the only "real" activities I will use this for is web browsing, terminal stuffs for my servers/other machines/homeassistant, and some note taking. So default programs can be SUPER minimum.

40
submitted 9 months ago by Nimrod@lemm.ee to c/linux@lemmy.ml

I want to get my partner a replacement for an aging chromebook. I was thinking it would be easiest to just grab another super budget chromebook and call it a day. But the more I read about google and chrome, the less I want to do with them.

So my goal is to snag a cheap ($300ish?) laptop that I can slap Linux on (probably mint, but I’m open to suggestions).

The main caveat is the size- needs to be small. Current chromebook is 11.5” I think. I’d like to keep it under 13”. The main use (95% will be web browsing/streaming/email/bullshit) but I’d like it to have enough juice to play Minecraft on my local server.

I’ve looked around a bit, but my god there is a lot of options. I’d love it if there was just a recommendation that was proven to work. I’m busy enough tinkering with all the other tech, and I’d like to just set this one up and forget it.

8
submitted 10 months ago by Nimrod@lemm.ee to c/homeassistant@lemmy.world

Currently I’ve got 12 can lights in my living room, entry, and kitchen. Three different sections, all controlled by an inovelli red switch.

All of the existing can lights are just LED chips with an E27 adapter. They are all locked in a specific color temp (4000k is my fav).

After using the adaptive lighting integration, I am convinced I want my whole house to have the ability to change brightness and color temp. I’d like to do this as cheaply as possible.

One option is smart bulbs. That’s 12 bulbs, plus the dumb can light bulb cover things. What is the cheapest bulb for this? This solution doesn’t take advantage of the very fancy inovelli switch either.

Any way to leverage the nice switches, and have “dumb lights” that can be controlled via the switch? I know this sounds impossible, because there is no data going to the bulbs that would allow changing the color temp, but I just can’t stand the idea of buying 12 smart bulbs.

3

I’ve finally configured my garden and landscaping on drip irrigation, but I’m using some dumb valves hooked up to my house hose spigot.

I would absolutely love a smart valve that I can have better control of the schedule, or respond to sensors.

After some looking around, it seems like “Rachio” is the only integration I can find for something like this. It’s a bit pricy ($99 per valve), and it looks like it needs a wifi hub to work. Has anyone used this integration successfully?

Is there any other options? There seem to be lots of “Bluetooth” controllers available in the big box stores, but I’m guessing they will need an app or something?

view more: next ›

Nimrod

joined 1 year ago