𝕽𝖔𝖔𝖙𝖎𝖊𝖘𝖙
  • 1 Post
  • 28 Comments
Joined 1Y ago
cake
Cake day: Jun 20, 2023

help-circle
rss

While I’m as skeptical as you are, I don’t think people recognizing you is a good metric.

A better test would be if an AI trained on your younger face could accurately and reliably identify you with your adult face.

The way AI and human face recognition work are different from each other. An AI may be able to identify you based on markers that human recognition doesn’t account for


Do you have some kind of timelapse plugin enabled?


I came across this issue on my own discord server, the system kinda encourages you towards those higher security levels without really being especially clear about what it will do to the user experience.

One thing I would clear up though:

I think both sides in the OP are correct here.

Yes, the server admin sets the security level that triggers those requirements.

But it’s also true that the server/admins do not get your phone number, that private information is only kept within discord’s verification system. It is not sent to the server admins.


This is not news unless he actually took ownership of that Tahoe for $1 in the end.


Beeper Mini is no less private than using iMessage on an iPhone.

It doesn’t even require an AppleID let alone require your credentials for one.

The cloud service that Apple didn’t block is the one that requires you to give your Apple credentials to a cloud bridge.


I’m happy to pay to support them.

If you’d rather not pay the Beeper Cloud service is free and all of the matrix bridges it uses are open source.

The source code behind how Beeper Mini works is available as well but will require a client of some sort to be written since you can’t just use a matrix bridge and a matrix app.

The guy who started Beeper also created the Pebble Watch and they have always maintained open source alternatives for their bridges.

I’m just happy that a company with those ethics is the one to take up this fight against Apple, this could have been a $10/month app from a company who believes in closed source and pushing ads/tracking users’ data.

Beeper is a good company that actually cares about privacy and security and that should be commended.


No, with this new app messages are encrypted between you and Apple’s iMessage servers using iMessage encryption more or less the same way an iPhone does.

The push service simply notifies your device it has a message waiting, no message content passes through Beeper servers.



I totally get that people are tired of seeing Linux recommendations but…

Pointing out that there is an alternative without the same issues is hardly “forcing Linux as a religious zealot forces their way on other people”

That’s a bit hyperbolic imo


And conversely the Israeli government is known for its commitment to accuracy and preventing misinformation right?

I agree disinformation is an issue, but it’s an issue across the board on both sides of any issue


Nah, Apple doesn’t care.

These bridges like the ones found in Beeper/Matrix require a Mac server to perform the handshake with Apple’s.

As long as these servers require Apple hardware to function Apple is making money.

It’s roughly equivalent to running iMessage on your Mac at home and making an Android/PC app that remotely sends/receives messages to/from that iMessage app on your Mac.


Just thought it was worth clarifying since a lot of people treat RCS and Google Messages like the same thing when one is a Google product (Google Messages) and the other is an open standard (RCS)

Google Messages is built on RCS but if Apple wanted interoperability they would only need to support the open standard (RCS) not use any of Google’s code or require Google’s permission.



Try Beeper!

Links all those services into one client using Matrix for the backend.

Drop me a DM if you want a referral code (that goes for anyone interested!)


My understanding is that while the US and some others quickly moved to unlimited texting plans, many European countries continued to charge per text so apps like WhatsApp become the defacto replacement



I think maybe he changed the volume mapping at some point because most of this I found through the GitHub page and I don’t think I ever changed that part myself.

FWIW it works for me as-is but there may be some fuckery because I started out in a much earlier version.

Great call on setting up a system service to start it though, probably would get annoying really quick without that if you frequently reboot.


That’s definitely smarter than running as root with sudo like I do 😅



cross-posted from: https://lemmy.world/post/6872403 > ![Spoolman Logo](https://lemmy.world/pictrs/image/9164fe07-acb6-455f-9da5-2a60d262f5ee.png) > > **What if your Klipper printer could keep track of which spool is loaded and how much filament is remaining?** > > - Do you wish your printer could keep track of the filament remaining on each spool automatically for you? > - Do you want it to automatically switch to the correct spool when you load one? > - Do you wish your printer would warn you when you have PLA loaded and try to print an ABS gcode? > > Does that sound like something you need? Read on below: > > [Spoolman](https://github.com/Donkie/Spoolman) is the project for you! > > It was created by Donkie (not myself) and it has official support in moonraker. > Additionally the Fluidd, Mainsail and KlipperScreen UIs also integrate its functionality. Octoprint is not supported at the time of writing. > Even without a compatible UI spools can be selected using macros or calls to the moonraker API. > > Installation is fairly straight-forward, but some Klipper users may not be familiar with docker so it can seem rather intimidating. > > I've written out a short guide to help you get started: > > > > ## Setup > > I don't ***think*** the spoolman software is very resource-intensive, but I personally installed it on a separate system from my pi. > You will likely be fine to install it on the pi in most cases though. > > To begin, you need to install docker/docker-compose: > ```bash > sudo apt update > sudo apt -y install docker-compose > ``` > > Then create a directory for spoolman: > ```bash > mkdir ~/spoolman > cd ~/spoolman > ``` > Create a docker-compose config: > ```bash > nano ~/spoolman/docker-compose.yml > ``` > > **docker-compose.yml:** > ```docker > version: '3.3' > services: > spoolman: > image: ghcr.io/donkie/spoolman:latest > restart: unless-stopped > volumes: > - ./data:/home/ubuntu/.local/share/spoolman > ports: > - "7912:8000" > environment: > - TZ=America/New_York # Optional, defaults to UTC > ``` > You may want to change the timezone. A list is available [here](https://docs.diladele.com/docker/timezones.html) > Then run: > ```bash > sudo docker-compose up -d > ``` > > You should now be able to access the interface at http://ipaddress:7912 (replace `ipaddress` with your pi/host's ip address) > > Create your first Vendor, Filament, and then Spool in the UI there. > When I tried to configure moonraker in the next step it failed without an initial spool existing in the database, so I wouldn't skip this. > > ## Configuration > > Now we need to configure moonraker to use spoolman. > > Pop open your `moonraker.conf` file and add the following: > ```ini > # enables spool management > [spoolman] > server: http://ipaddress:7912 > # URL to the Spoolman instance. This parameter must be provided. > sync_rate: 5 > # The interval, in seconds, between sync requests with the > # Spoolman server. The default is 5. > ``` Once again, we need to replace `ipaddress` with the ip address of the host system. If it is the same as the pi (the one running moonraker) you can also simply use `localhost` instead > > Restart moonraker and reload Fluidd/mainsail/etc and you should now see a `spoolman` section on the dashboard. > You can also verify in your `moonraker.log` file, look for a line like this: > ```2023-08-08 10:53:43,664 [server.py:load_component()] - Component (spoolman) loaded``` > > Remember, even without using a compatible UI, Klipper/moonraker will still track filament use against the last spool selected. > > We can also add commands that allow us to select the spool regardless of the UI: > > **printer.cfg**: > ```ini > [gcode_macro SET_ACTIVE_SPOOL] > gcode: > {% if params.ID %} > {% set id = params.ID|int %} > {action_call_remote_method( > "spoolman_set_active_spool", > spool_id=id > )} > {% else %} > {action_respond_info("Parameter 'ID' is required")} > {% endif %} > > [gcode_macro CLEAR_ACTIVE_SPOOL] > gcode: > {action_call_remote_method( > "spoolman_set_active_spool", > spool_id=None > )} > ``` > > These commands can be used like ```SET_ACTIVE_SPOOL ID=5``` and ```CLEAR_ACTIVE_SPOOL``` to select (or clear) the spool. Spools are selected by spool-id, which you can see on the spoolman UI where you create new spools. These commands can even be used in your "Custom Filament Gcode" in the slicer to allow filament profiles to select spools automatically. > > Mainsail/Fluidd allow for integration with the klipper/crowsnest webcam to scan qrcodes from spools and automatically select the proper spool at the start of a print/etc. QRcodes can be printed from the spoolman web UI. > > If you are not using mainsail/fluidd or you want it to function without the UI, I wrote a small script that will scan qrcodes from klipper cameras and command spoolman to select the spool it identifies. > > This can be triggered from a macro which allows you to put it in your start gcode. > > The code and instructions are below: > > ## Scanning Spool QRcodes > > This functionality requires you to install the `zbar-tools` package for scanning codes and [the gcode_shell_command Klipper extension](https://github.com/dw-0/kiauh/blob/master/docs/gcode_shell_command.md) to allow klipper to trigger shell scripts. > > ```bash > # Install zbar-tools for reading qrcodes > sudo apt install zbar-tools > # Install gcode_shell_command to run scripts from klipper macros > cd /home/pi/klipper/klippy/extras/ > wget https://raw.githubusercontent.com/th33xitus/kiauh/master/resources/gcode_shell_command.py > ``` > > Then we add some config to our klipper config file: > > **printer.cfg** > ```ini > [gcode_shell_command qrcode_qrscanner] > ## NOTE: Change the path below if your klipper config is not in the default path ## > command: sh /home/pi/printer_data/config/qrcodespoolman.sh > verbose: True > timeout: 2. > > [gcode_macro QRCode_Scan] > gcode: > RUN_SHELL_COMMAND CMD=qrcode_qrscanner > ``` > > And create a shell script: > > **qrcodespoolman.sh** (place in your config folder next to printer.cfg) > ```shell > #!/bin/sh > > ########################################## WARNING: ############################################## > ### This script assumes you are using a crowsnest webcam on the same host and the first camera ### > ### Adjust the paths and addresses below as needed to work with your configuration ### > ################################################################################################## > > ## Capture a snapshot from the camera and store it in a jpg file > wget http://localhost/webcam/?action=snapshot -O /home/pi/printer_data/gcodes/qrcode.jpg > > ## Read any QRcodes from the image and strip just the spool-id from the data in the code > SPOOLID=$(zbarimg -S*.enable /home/pi/printer_data/gcodes/qrcode.jpg | sed 's/[^0-9]*\([0-9]\+\).*/\1/') > > ## Return the spool-id in the console (this is mostly for debugging purposes) > echo $SPOOLID > > ## Make an API call to spoolman selecting the spool that matches the spool-id > curl -X POST -H "Content-Type: application/json" -d "{\"spool_id\": \"$SPOOLID\"}" http://localhost:7125/server/spoolman/spool_id > ``` > > Please read through the comments in those snippets, particularly if your klipper config is not located in `/home/pi/printer_data/config` or your camera is not connected to the same machine. You may need to make adjustments to fit your machine. > > The paths and addresses used in the example should work for anyone using a pi with a single printer and the first/only camera configured in crowsnest. > > If all goes well you should now be able to trigger this action with the following command: > > ```QRCODE_SCAN``` > > You can place that in your start gcode to have it triggered at the start of every print. > > The command does the following: > > - Triggers the qrcode script, which does the rest: > - Asks moonraker for a snapshot from the webcam > - Locates and scans any qrcode in the image > - Strips out any data in the qrcode except for the spool id > - Tells moonraker to tell spoolman to select that spool id > > ## Updating Spoolman > > To update your spoolman instance, assuming you have installed in `~/spoolman`, you can use the following command: > ```bash > cd ~/spoolman;sudo docker-compose stop;sudo docker-compose pull;sudo docker-compose up -d > ``` > > NOTE: Avoid using `docker-compose down` as it will wipe out the storage volumes, likely taking your spool database with it. > > > > You also may want to consider using [watchtower](https://containrrr.dev/watchtower/) to automatically keep docker containers updated, but that is outside the scope of this guide. > > ## Bonus screenshots > > **Spoolman UI - Spools** > ![A screenshot of the UI from spoolman, show a list of spools configured in the database](https://lemmy.world/pictrs/image/f5006d14-87f7-4597-82d7-77fcf6e2a930.png) > > **Fluidd UI - Spool Widget** > ![A screenshot of a widget from the Fluidd dashboard showing the currently selected spool in an image and some stats about it as well as a button to change spools](https://lemmy.world/pictrs/image/e9552bfa-7fb3-4670-9e5b-f80643d38541.png) > > **Fluidd UI - Spool Selection Dialog** > > ![A screenshot of the spool selection dialog which shows a list of spools that can be selected from to choose the one used for filament tracking. Details of each spool are shown including an image with the color, the storage location, and the last used date-time](https://lemmy.world/pictrs/image/a3d2982e-57f5-46f0-98e6-c01f06d1dfb7.png) > > ## Conclusion > > I hope this little guide helps anyone interested in trying out spoolman, its a great tool that fulfills a function in Klipper that I've been looking for for a while, and it does so very well! > > I just want to reiterate, **this is not my project**. I am just a Klipper fan who wanted to get the word out on what I think is a really great project that a lot of Klipper users may like. > > That said, I hope my guide can help those users give it a try! > > And if you have any trouble, or just questions/concerns, leave a comment below and I will do my best to help!
fedilink

This is the problem with standardized testing, it just doesn’t challenge our AI students and forces trainers to focus on the exam questions rather than an understanding of the material


so that I don’t need to fellate myself on public forums

But you still do anyway, because you like the way it feels


I closed my family shared account and started pirating Netflix shows/movies instead.

We paid for the convenience. I will happily just pirate if that’s what they want 🤷


Even if it means humanities destruction 😛

Perhaps even especially


Any job listing that asks you to “cream social media posts” is a red flag




I hate the official Reddit app but I probably would have sucked it up and used it if they had handled this professionally.

Reddit can die the death its admins clearly so desperately want for it.

We will carry on without it


They’ll need the users if they hope to keep generating new content though.

Scraping the data becomes less relevant the older the data gets