[-] [email protected] 14 points 3 weeks ago

I've tried to use it to ask for help on a couple of other open source projects and I thought that I was using it in the wrong way, that I was missing something. So...I was not! I don't understand how people could use it for support. Guys talking over each other, questions mixed and lost between other people's chats, terrible!

[-] [email protected] 12 points 1 month ago* (last edited 1 month ago)

Totally agree! 2FA on all the accounts that support it avoiding SMS. And different passwords (complex, auto generated by a password manager) for each single account. I may be paranoid, but I also use a different email alias (SimpleLogin) for every single account! 😆

[-] [email protected] 15 points 2 months ago

If you'd like to sell a couple of drivers and you're in Europe, contact me.

[-] [email protected] 19 points 2 months ago* (last edited 2 months ago)

A couple of words about the video wouldn't have been so bad.

Edit: By the way, very nice video! I'll have a look at the others too.

[-] [email protected] 16 points 3 months ago* (last edited 3 months ago)

Avoid hardware RAID (have a look at this). Use Linux MD or BTRFS or ZFS.

10
submitted 3 months ago by [email protected] to c/[email protected]

My home server is a Proxmox machine with some VM one of which is Open Media Vault from which a Windows PC plays videos to my TV. I want to get rid of the Windows PC and connect the TV directly to the server with an HDMI+USB RJ45 extender, but...how do I get a GUI from it? Is it even possible? I would need to connect to a Windows VM because for what I know Netflix only plays 4K videos with Edge. Thanks!

17
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]

Hi all! I've been looking for a selfhosted system that can monitor one or more email accounts and check if a certain email with a particular subject arrives every day (or every x hours) and alert me if it doesn't (or if the subject is different). I need this to check if backups from different PC have run or not. The best thing would be to integrate it with Uptime Kuma. Any idea? Thanks!

Edit: I'm switching all my backup software to Restic (Autorestic on Linux machines) so I can send a ping to Uptime Kuma when every single backup successfully ends.

10
submitted 3 months ago by [email protected] to c/[email protected]

I've just discovered OmniGPT that seems to be a chat where you can interact with different LLM (Claude, GPT-4, Llama, Gemini, etc.) and costs $16/month (it was $7/month until a week ago 🤦‍♂️). I've read on a Reddit post that it uses the APIs of all the provider that is a thing that can be done for free using a personal account (since the API limit seems to be high). Do you know something like OminGPT that can be self hosted that uses users API keys?

2
submitted 3 months ago by [email protected] to c/[email protected]

Hi all! What do you think is the best chatbot to use for suggestion/learning vvvv, TouchDesigner and similar software? I will be using it also to check/suggestion on JavaScript/Python scripts. One where I can upload a file and let it analyze it would be very nice.

7
submitted 4 months ago by [email protected] to c/[email protected]

I have some sensors like this one:


  - name: "Sala"
    unique_id: "temp_sala"
    state_topic: "zigbee2mqtt/temp_sala"
    value_template: "{{ value_json.temperature }}"
    unit_of_measurement: "°C"

Those sensors publish the battery status too, how can I add it? Thanks!

7
submitted 4 months ago by [email protected] to c/[email protected]

I have created this climate:

- name: "Riscaldamento"
  unique_id: "termostato"
  modes:
    - "off"
    - "heat"
    - "cool"
  mode_command_topic: "home/riscaldamento_raffrescamento/TEST/mode/set"
  mode_state_topic: "home/riscaldamento_raffrescamento/TEST/mode/state"
  temperature_command_topic: "home/riscaldamento_raffrescamento/TEST/temp/set"
  current_temperature_topic: "home/riscaldamento_raffrescamento/TEST/temp/state"
  power_command_topic: "home/riscaldamento_raffrescamento/TEST/pump/set"
  payload_on: 1 
  payload_off: 0
  min_temp: 17
  max_temp: 28
  temp_step: 0.1
  precision: 0.1

thinking that the power_command_topic would be sent whenever the temperature would go over/under the one set, but nothing ever get send to that topic. How can I turn on the pump when the temperature goes under the one set and turn it off when it goes over?

8
submitted 4 months ago by [email protected] to c/[email protected]

Hi all, I've been using Domoticz for years and I've finally decided to move to HA. In Domoticz I could have a timer (fixed date, every days, every x days, and so on) for every single entity, in HA how I can do that? Thanks!

5
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]

Hi all, I'm pretty new to HA and Frigate. When I installed the cameras (they are all vertical, 9:16), they were correct, I could see all the vertical images. Since about a week they are all shrinked in a 16:9 images/videos, even if they are 9:16

Here is my config

  host: 192.168.31.5

detectors: # <---- add detectors
  coral:
    type: edgetpu
    device: usb

#go2rtc:
#  streams:
#    camera_fronte_ingresso:
#      - rtsp://127.0.0.1:8554/cam/realmonitor?channel=1&subtype=2
#    camera_lato:
#    camera_portico:  
#  log:
#    exec: trace

objects:
  track:
    - person
    - car
    - cat
    - dog
    - truck

cameras:
  camera_fronte_ingresso:
    ffmpeg:   
      inputs:
        - path: rtsp://USER:[email protected]:554/cam/realmonitor?channel=1&subtype=2 #rtsp://127.0.0.1:8554/camera_fronte_ingresso  #rtsp://USER:[email protected]:554/cam/realmonitor?channel=1&subtype=1
          input_args: preset-rtsp-restream
          roles:
            - detect
        - path: rtsp://USER:[email protected]:554/live # <----- Add stream you want to record from
          roles:
            - record
      hwaccel_args: preset-vaapi
    detect:
      enabled: true # <---- disable detection until you have a working camera feed
      width: 1280 # <---- update for your camera's resolution
      height: 720 # <---- update for your camera's resolution
    record: # <----- Enable recording
      enabled: True
    snapshots: # <----- Enable snapshots
      enabled: True
  camera_fronte_garage:
    ffmpeg:   
      inputs:
        - path: rtsp://USER:[email protected]:554/cam/realmonitor?channel=1&subtype=1
          input_args: preset-rtsp-restream
          roles:
            - detect
        - path: rtsp://USER:[email protected]:554/live # <----- Add stream you want to record from
          roles:
            - record
      hwaccel_args: preset-vaapi
    detect:
      enabled: true # <---- disable detection until you have a working camera feed
      width: 1280 # <---- update for your camera's resolution
      height: 720 # <---- update for your camera's resolution
    record: # <----- Enable recording
      enabled: True
    snapshots: # <----- Enable snapshots
      enabled: True

What the heck is going on? Thanks!

39
submitted 5 months ago by [email protected] to c/[email protected]

I have a couple of home server, both with Proxmox as hypervisor, one VM with Ubuntu 22.04 that does just Docker containers, one with Open Media Vault, one with Home Assistant (HA OS) and a couple of Windows VM to do some tests. Since I wanted to move from OMV, right now I see 2 options:

  • stay with Proxmox and find another NAS OS
  • use Unraid as NAS and hypervisor

What other option would you suggest?

19
submitted 8 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]

I'm pretty new to HA. I've set it up and I keep editing the confirmation and everytime I restart to apply the changes, all the switches, sensors and even the thermostat lose their values. The most annoying is the thermostat (classic thermostat entity) because I have to turn it on selecting heat/cool and set the temperature. Is there a way to keep all these values across restarts?

Edit: I'm using HA OS on Proxmox. All the sensors and switches slowly goes back to "normal" as soon as they publish their state, apart from some entities that have values provided by HA itself and not by the devices (like the thermostat).

[-] [email protected] 17 points 9 months ago* (last edited 9 months ago)

I guess it's pretty normal: the ones that self host don't like walled gardens!

[-] [email protected] 21 points 10 months ago

Does anybody have suggestions for an online service that prints things like business cards, brochures, and pamphlets?

But...if it's a service, how can it be FOSS?

[-] [email protected] 13 points 11 months ago

I use it in Firefox within a container that I use just for WhatsApp, sot it's isolated.

-17
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]

Every time I try to access this community, ther's some kind of problem with the server. If you have a look at the status page, it's almost all orange/red. The problem aren't DDoS attack since the server is behind Cloudflare protection. Admin/mods, why don't you move this community to a different ~~server~~ instance? I'm not accusing anybody, I know that maintain a server can be a challenging sometimes, I just want to enjoy this community!

Please!

@Loki

[-] [email protected] 19 points 11 months ago

Why are you bored with Jellyfin?

-19
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]

This instance happens ti be down quite often. Why do the admin doesn't close the subscription and focus to keep the instance stable? It's not like there will be blocked outside Lemmy, there ar plenty of instances out there. From outside (and IMHO) it seems a power hungry needs (sorry,bI don't know if this does make sense in English). This is a question (that I hope will flow to a good conversation), NOT an attack.

[-] [email protected] 21 points 11 months ago

WTF?!!! Monopoly is always a bad thing, we must remember it!

[-] [email protected] 15 points 11 months ago* (last edited 11 months ago)

What about a small TL;DR?

[-] [email protected] 19 points 1 year ago

Ahahaha, top message!!!

view more: ‹ prev next ›

peregus

joined 1 year ago