TheButtonJustSpins

joined 2 years ago
[–] TheButtonJustSpins 4 points 2 months ago (1 children)

Reolink are quite easy to set up and work with, and they work great without internet connectivity.

Don't get Wyze or Blink.

[–] TheButtonJustSpins 9 points 2 months ago* (last edited 2 months ago) (2 children)
  • doesn't want to unintentionally plagiarize
  • uses the plagiarism machine
[–] TheButtonJustSpins 1 points 2 months ago
[–] TheButtonJustSpins 1 points 2 months ago (2 children)

"too long; didn't watch"
Was looking for a summary; watching an 18-minute video to get a two sentence summary seems overkill.

[–] TheButtonJustSpins 1 points 2 months ago

Is that on all models? I have an A1 Mini

[–] TheButtonJustSpins 1 points 2 months ago (6 children)
[–] TheButtonJustSpins 3 points 3 months ago

On top of this, medications like Sertraline help with OCD. (You'll probably want both until you're steady, not just therapy or meds.)

[–] TheButtonJustSpins 2 points 3 months ago

If you're looking for paid files, I'd recommend the Patreon of a designer you trust to make good designs.

[–] TheButtonJustSpins 1 points 3 months ago

Apps that need to send emails or receive emails.

[–] TheButtonJustSpins 1 points 3 months ago

Love the lifetime deal. 10GB across any number of accounts. That's what I've got.

[–] TheButtonJustSpins 2 points 3 months ago

I only use it for automations (both send and receive); I'm on Proton for regular mail. They've got a few different web interfaces, so I think you can get spouse approval. Not sure on local storage (outside of POP/IMAP).

[–] TheButtonJustSpins 6 points 3 months ago (6 children)

I can highly recommend MXroute. Just works. Great for integrations.

12
submitted 2 years ago* (last edited 2 years ago) by TheButtonJustSpins to c/python@programming.dev
 

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

#!/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)
10
Turn off tips? (self.protonmail)
submitted 2 years ago* (last edited 2 years ago) by TheButtonJustSpins to c/protonmail@lemmy.ml
 

Is there any way to turn off the random tips like "make a receipts folder!" in the Linux desktop app?

 

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:

    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:

    self._player.set_time(_s_to_ms(seconds))

Any ideas would be greatly appreciated!

 

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?

 

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.

 

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.

 

Do anyone else's wrist hairs get caught in the little gap between the frame and the trackpad/spacers?

10
Keybow OS (self.linux)
 

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?

 

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

Anyone have a list of changes that they've made to increase battery life? I've got about three hours (with 80% limit in BIOS, which I might get rid of), so I'm sure there's a lot that can be changed.

 

Anyone have a list of changes that they've made to increase battery life? I've got about three hours (with 80% limit in BIOS, which I might get rid of), so I'm sure there's a lot that can be changed.

 

I just hibernated my laptop and then brought it back up, and it went straight into LMDE without asking me for a password on a lock screen. That seems.. like weird behavior. Is there something I can set to fix that?

view more: ‹ prev next ›