Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TH
Posts
47
Comments
879
Joined
2 yr. ago
  • I just get alerts over telegram. They're just regular notifications, but you could probably set specific notification behavior and sounds for the app?

    Edit: Though that's not a selfhosted solution. Sometimes it's a decision between reliability and selfhosted. e.g., I went back to Tailscale from Headscale when I lost connectivity through Headscale and couldn't figure out how to get it back.

  • Printers @sh.itjust.works
    TheButtonJustSpins @infosec.pub

    Brother MFC-J1215W -- Automate certificate update?

    Is there a way to remotely replace the certificate? I can upload it through the web UI, but I'd like to have that process automated.

    Lemmy411 - Don't know where to find what you're looking for? @lemmy.ca
    TheButtonJustSpins @infosec.pub

    Tangara /c/?

    Is there a tangara community? Have many technical questions and I'm not sure where to ask.

    Linux Mint @lemmy.ml
    TheButtonJustSpins @infosec.pub

    Brother MFC-J1215W - Can't print duplex

    In LMDE, I installed the .deb so I have the driver. In Manjaro, I'm just using a generic driver. In both cases, I can't select duplex printing.

    If I log into the printer's control panel, 1-Sided Printing is Off.

    Any ideas would be greatly appreciated.

    raspberrypi @lemmy.ml
    TheButtonJustSpins @infosec.pub

    4b with multiple Zero over USB ethernet?

    I've got a Zero set up with usb0 as g_ether and a static IP address:

     undefined
        
    usb0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
            inet 10.14.0.15  netmask 255.255.255.0  broadcast 10.14.0.255
            ether 7e:24:7d:cc:68:7c  txqueuelen 1000  (Ethernet)
            RX packets 0  bytes 0 (0.0 B)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 0  bytes 0 (0.0 B)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
      

    I have the OTG port connected to one of the four USB ports on a 4b. I'm not sure what the next steps are to get the actual connectivity to function, though. I've seen posts saying that gadget mode is only supported on the USB-C port - does that only mean for using the 4b as a peripheral, or does that mean for any connectivity, even if it's the host?

    Wheel of Time - TV Show on Amazon Prime @lemmy.ml
    TheButtonJustSpins @infosec.pub

    RJ's Personal Library Auction

    Python @programming.dev
    TheButtonJustSpins @infosec.pub

    CircuitPython - Trying to set pin value

    New to CircuitPython, this feels like it should work according to the docs but it prints six Falses. Any ideas?

     undefined
        
    #!/usr/bin/env python
    import board
    import digitalio
    import time
    
    class body_controller:
    
      def __init__(self):
        SWDIO = board.D5
        self._reset_pin = digitalio.DigitalInOut(SWDIO)
        print(self._reset_pin.value)
        self._reset_pin.switch_to_output(True)
        print(self._reset_pin.value)
    
      def turn_on(self):
        print(self._reset_pin.value)
        self._reset_pin.value = False
        print(self._reset_pin.value)
        time.sleep(1)
        print(self._reset_pin.value)
        self._reset_pin.value = True
        print(self._reset_pin.value)
    
    body = body_controller()
    time.sleep(1)
    body.turn_on()
    time.sleep(1)
    
      
    Python @programming.dev
    TheButtonJustSpins @infosec.pub

    vlc.py -- setting the time in a song sets the song stuttering and it doesn't really recover

    This happens if I use set_time or set_position. Is this typical, or am I just not doing it right?

    This is on a Pi Zero 2 W, so not the most powerful, but should be able to handle this.

    These are the relevant bits of how I'm setting up the player:

     undefined
        
        self._vlc = vlc.Instance()
        self._player = self._vlc.media_player_new()
        self._list_player = self._vlc.media_list_player_new()
        self._list_player.set_media_player(self._player)
    
        playlist = self._vlc.media_list_new()
        for index in self._play_order:
          playlist.add_media(self._vlc.media_new_path(self._songs[index]))
    
        self._list_player.stop()
        self._list_player.set_media_list(playlist)
        self._list_player.play()
    
      

    And trying to seek is just this:

     undefined
        
        self._player.set_time(_s_to_ms(seconds))
    
      

    Any ideas would be greatly appreciated!

    Framework Laptop Community @lemmy.ml
    TheButtonJustSpins @infosec.pub

    Bent RAM Clip

    I've somehow managed to bend a RAM clip so it can't clip anymore because it's blocking itself. I haven't been able to bend it back. Any suggestions?

    Raspberry Pi @programming.dev
    TheButtonJustSpins @infosec.pub

    RPi 0W - How to stop long-running action

    cross-posted from: https://infosec.pub/post/12005873

    I have a Keybow MINI hooked up to a Raspberry Pi Zero W, and I'm using Python to respond to events. I have one button that kicks off playing a song on a passive buzzer, and I'm wondering if there's a way to have a button press stop the song before it completes.

    Python @programming.dev
    TheButtonJustSpins @infosec.pub

    RPi 0W - How to stop long-running action

    I have a Keybow MINI hooked up to a Raspberry Pi Zero W, and I'm using Python to respond to events. I have one button that kicks off playing a song on a passive buzzer, and I'm wondering if there's a way to have a button press stop the song before it completes.

    Linux @lemmy.ml
    TheButtonJustSpins @infosec.pub

    Keybow OS

    Does anyone know if it's possible to have events from the Keybow keyboard cause effects on the Pi Zero W running the keyboard instead of outputting to another machine? Or do I need to go with a different OS and figure out the handling of the keys myself?

    Lemmy411 - Don't know where to find what you're looking for? @lemmy.ca
    TheButtonJustSpins @infosec.pub

    Star Wars: Galaxy's Edge

    Is there a /c/ for discussing Black Spire Outpost stuff?

    Selfhosted @lemmy.world
    TheButtonJustSpins @infosec.pub

    Integrated Login?

    So, I have a bunch of services behind Authelia, utilizing LDAP hosted on my NAS. I log in once and it carries through my other services that are secured by Authelia, which is great.

    However, since my wife rarely visits these services - mostly when I send her links - she has to log in basically every time. I've contemplated putting our laptops on a network login backed by the same LDAP, though I haven't started researching how to do that yet. If I do, though, is there a way to have the laptop login integrate with Authelia or another solution to prevent login prompts?

    I know I could do it with Windows and AD, but we're both on Linux, so that complicates things a bit.

    Jellyfin: The Free Software Media System @lemmy.ml
    TheButtonJustSpins @infosec.pub

    Cycle movie extra?

    Is there a way to set a movie extra to repeat endlessly? There's a fireplace feature that can cycle on the DVD but I'm not sure how to make it do that in Jellyfin. I have it in there as an extra.

    homelab @lemmy.ml
    TheButtonJustSpins @infosec.pub

    Is this a good deal?

    It seems good based on the price of just the CPU. If it's good, what kind of server case would it need?

    homelab @lemmy.ml
    TheButtonJustSpins @infosec.pub

    Advice on building a small PC/server

    Hello! I am doing some if-I-die planning, and I want to create a machine that is separate from my current homelab that can a) host paperless-ngx and b) be used with keyboard/mouse/monitor if needed. I want it to replace my current paperless-ngx instance that's hosted in my lab.

    Ideally, I'd want two SSDs in RAID 1, possibly with a third drive for the OS? I'll be backing up to my NAS and from there to the cloud, but I want to separate this machine from the rest of my infrastructure and still be able to have reliable access to the documents on it.

    In theory, I could just sync the files to a USB drive and tell her to grab it if anything should happen to me, but finding the right files while stressed without the metadata stored in paperless wouldn't be the nicest thing to make her do.

    tl;dr: What should I buy to build a homelab-in-a-box that can be attached to my homelab normally but also function separately as a PC.

    Movies and TV Shows @lemmy.film
    TheButtonJustSpins @infosec.pub

    Another lost TV show question

    Edit: This is Being Erica. Thank you, @[email protected] and @[email protected]!

    So, I watched a TV show a while ago and have forgotten what it's called and can't find it. Anyone have any ideas on this one?

    • Woman is going through something rough and a person gives her a card and is like come talk to me
    • That person functions kind like a therapist but there's something mystical going on
    • There are doors that go to other places
    • Her therapist retires after a season or two
    • She starts helping others in the same way
    • There's a bartender that does the same thing at some point

    Maybe not much to go on, but I'm hoping someone recognizes it.

    NFL @lemmy.world
    TheButtonJustSpins @infosec.pub

    Proton Calendar?

    Is there a calendar that I can use with Proton Calendar? It looks like the official one is for Google, Outlook, and 365.

    (Preferably for the Bills.)

    Movies and TV Shows @lemmy.film
    TheButtonJustSpins @infosec.pub

    Trying to find a show I watched before

    Edit: It's Lovesick! Thank you, @[email protected]!

    Hi! I'm hoping someone can help me out. I'm trying to find a show I streamed a while ago. Here's what I remember:

    • It was a British show
    • Two guys were roommates; I think the apartment was messy
    • They had a woman friend
    • One of the roommates and the friend were in love but they kept having bad timing
    • I think the other friend was a manager at a company?
    • I think the woman had to move in with them at some point?
    • There was a guy named Jono (sp?) who kept saying, "I'm Jono"
    Lemmy411 - Don't know where to find what you're looking for? @lemmy.ca
    TheButtonJustSpins @infosec.pub

    Where can I post about a TV show I streamed a while ago and can't remember the name of?

    So that someone can help identify it