[-] TheButtonJustSpins@infosec.pub 5 points 11 hours ago

Phone, yes: your battery can explode / light an intense fire. Watch, depends on the watch.

[-] TheButtonJustSpins@infosec.pub 11 points 4 days ago* (last edited 4 days ago)

If it's stuff you already own, the income would be based on the difference between what you paid for it and what you get for it. Likely, you're selling at a loss, so that's not income.

Notes: IANAL and have never been on unemployment.

[-] TheButtonJustSpins@infosec.pub 4 points 5 days ago* (last edited 5 days ago)

Take a look at Rhasspy.*

*Will take a lengthy setup. Maybe look at S.E.P.I.A.?

11
submitted 1 week ago* (last edited 1 week ago) by TheButtonJustSpins@infosec.pub 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? (infosec.pub)
submitted 3 weeks ago* (last edited 3 weeks ago) by TheButtonJustSpins@infosec.pub 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?

[-] TheButtonJustSpins@infosec.pub 64 points 1 month ago

Check out BitWarden. You can use a Collection to share passwords with each other. Free, though I think the TOTP functionality is in the Premium subscription ($10/yr).

[-] TheButtonJustSpins@infosec.pub 74 points 2 months ago

The trouble is, you're looking for internal consistency to their arguments. You need to look at the theme of the arguments: namely, they don't like the "black people exist in the USA" part.

8

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!

20
Bent RAM Clip (infosec.pub)

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?

[-] TheButtonJustSpins@infosec.pub 69 points 3 months ago

I've been remote for over a decade; not going to stop now.

[-] TheButtonJustSpins@infosec.pub 195 points 3 months ago* (last edited 3 months ago)

If you're not paying for a service, you're likely being monetized by watching ads or providing personal data to companies that don't necessarily have your best interests at heart.

This is a bit out of date. Nowadays, you pay for the service and are monetized by watching ads and providing personal data to companies that definitely don't have your best interests at heart.

5

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.

9

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.

10
Silly 16 question (infosec.pub)

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

9
Keybow OS (infosec.pub)

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?

12

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.

23

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.

[-] TheButtonJustSpins@infosec.pub 69 points 5 months ago
  1. Being able to follow Bluetooth beacons is far from new.
  2. The listening in is done by the phone apps, which isn't a Bluetooth issue.
10

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?

8

Anyone been able to set up a fingerprint reader in LMDE 6 with Cinnamon? I can use fprintd-enroll and fprintd-verify successfully, but it doesn't show up in pam-auth-update so I don't know how to add it to the login screen or the terminal.

[-] TheButtonJustSpins@infosec.pub 82 points 9 months ago

I couldn't say.

[-] TheButtonJustSpins@infosec.pub 77 points 10 months ago

50/50 on if it starts listing processes or launches a new game of Zelda.

[-] TheButtonJustSpins@infosec.pub 86 points 1 year ago

I bought myself a raspberry pi for my birthday a few years ago.

I now have thousands of dollars in hardware sitting in a server rack in my office. Whoops.

[-] TheButtonJustSpins@infosec.pub 112 points 1 year ago

A broken clock is right twice a day, but a running clock is probably never right.

view more: next ›

TheButtonJustSpins

joined 1 year ago