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/)ST
Posts
56
Comments
597
Joined
2 yr. ago
  • I had one of them almost a decade ago, before Google bought them. The one that I had really just counted steps and tracked heart rates and that was about it. It could also tell time. It was one of the fancy ones at the time.

    Assuming you're not allergic to the watch band like I was, it did fine. Battery lasted about a week. Accuracy was close enough that I didn't notice a major issue.

    I remember that the Fitbit app was annoying as all get out, though that has almost certainly changed.

    Overall I remember liking it, I think I wore it for about 3 months before my wrist started to get torn up by it.

    As to what they are like currently, post Google buyout, no clue.

  • MusicBrainz is an open source database of music. ListenBrainz is an open source service that captures your listening habits, if you've configured your music player (or Spotify) to use the service. It's similar in nature to last.fm's scrobbling.

    ListenBrainz has a feature where once a week it will build a pair of playlists for you. One is stuff it is pretty sure you will like (based off of what tracks you have favorited) and the other is more... experimental. Stuff it's not so sure you'll like but is similar to things you have listened to and liked in the past.

  • That would be a local or state law. Not a nationwide law. It would depend on where you are. Some areas don't care, while other areas are militant about it.

    Where I am is somewhere in between. Don't stand out and your generally fine.

    Because it’s hard for me to imagine that anyone would say something when someone simply enjoys a nice cold beer during the hot summer in a park or something.

    Yea, that's not really a thing where I'm at. Your own yard, sure, Campground, maybe. But almost nobody is staying outside let alone drinking any type of alcohol in the park when it's over 90 F (+32.2 C) outside with over 90% humidity. More likely in the spring or late fall though. Just don't stand out.

    For comparison: https://weatherspark.com/countries/US/AL and https://weatherspark.com/countries/DE

  • Professionals use Adobe software because it is what they know and because it is the standard. But there is no reason you need to use Photoshop unless you are working with a company that requires Photoshop.

    Photoshop is just an advanced image editor made by Adobe. On Windows, Mac and Linux, GIMP is probably the most well known alternative to Photoshop. It can do roughly 99% of the things that Photoshop can do, and, more than likely, far more than you are ever likely to need. Even as a professional image editor or artist.

    I'm sure that there are several options for iOS, but I don't know them by name.

  • If I remember correctly, this one of the use cases why bitcoin was created in the first place. It's not anonymous but it does solve the control problem.

    The only other way I know if is cash via sneakernet. Also not completely anonymous, and it could get you labeled a drug dealer or distributor. Especially in the US.

    As for how to get into bitcoin, you can mine it, but more feasibly, just start doing commerce in it. If you have a podcast or you stream, accept lightning boosts. Or you could sell off your old things for bitcoin. If you have some other business start accepting bitcoin as a form of payment.

    If you need to convert a national currency to bitcoin there is a peer to peer network that accepts cash, as well as several online exchanges (ID usually required, at least in the US.

    As a warning, once you step off the garden path you lose it's protections, so buyer beware. The "Big Money" have a vested interest in minimizing how badly you can get screwed in their system. Such protections don't exist it the alternative currency sphere regardless of which crypto currency you choose.

  • Recently, most of the music I've found has been something the Youtube algorithm has decided I need to listen to. Most recently it's been the Andrew Sisters and before that it was SailNorth.

    Other than that, ListenBrainz does a pretty good job of suggesting new music to listen to.

  • Can’t say that happens frequently enough for me to have a set thing to do.

    The list of things that need to get done never seems to get shorter. So I’m usually working though my todo list. Recreation time has to be scheduled sadly.

  • Where I am, the sheriffs are elected and the police chiefs are (generally) appointed. Honestly, both get up to the same level of mischief. The problem isn't how they get to the position, but rather accountability. There isn't much. It's a mismatch between the amount of power they hold and the responsibility to which they are held.

  • I'm no expert in the field, but under the right conditions, possibly. But that would also be incredibly unlikely. The oceans are so full of life that something would feed on the remains, and even if not it would be more likely to decompose than be preserved. Bacteria is everywhere, including in the ocean, and bacteria is a significant component in decomposition.

    I believe the brine solution we use for preserving food is a much higher salt concentration than sea water.

  • installing and managing programs on Linux is a NIGHTMARE

    I feel you, but it's a damned sight better than it used to be. If you're ever in a headspace for some masochism, try installing something from source. It can either be smooth sailing or one of the most torturous experiences ever. Just do yourself a favor and do it in a VM or on a throw away system. Software installed that way is often HARD to remove cleanly.

    I just wish there was an all in one program manager.

    There is. At least for flatpaks and apt repositories, though I would imagine that it would work just fine with rpm repositories or whatever Redhat based distros are using nowadays. YUM I think? Never been big on team Redhat.

    In KDE the program is called Discover. Gnome, i think, is Software Center, though that may just be for Ubuntu derivatives. Been a while. I'll be honest, I don't use them much. Early versions (20ish years ago) were dog slow, and as a result CTL + ALT + t followed by sudo apt get and flatpak install are burned into my fingers.

    I don’t know what linux’s equivilant of “C/Windows/Program Filesx86/”

    Exactly where things get installed depends on your distro as well as who built the actual package that was installed. Linux has a couple of standard directories that things are usually installed at. If you actually need to find the 7zip binary, try in /bin, /usr/bin, or /usr/local/bin but wherever it is, it should already be in your path. Here's a decent explanation of *nix's directory structure: https://linuxhandbook.com/linux-directory-structure/ .

    It's generally applicable to Unix, Linux, WSL, and MacOS. Feel free to open a terminal and go have a poke around. If you stick to the commands cd, less and sudo less you won't be able to break anything, but will be able look at what's there. cd is the same as in Windows. less let's you read a file a page at a time, without editing it. sudo just let's you read the files that are owned by the root user, or another user.

    You can usually read more about these commands using the man <program> command. If your distro hasn't included man pages, it works in every web search engine I've tried over the years as well. Usually it's the first result.

    <command> --help will generally give you a brief crash course on how to use a command. Very helpful, but also usually very terse.

    I want to install 7zip. I go online, find the terminal command, I install it…and terminal tells me it’s already installed on the latest version.
    It’s not in my start menu.

    According to its man page you would call it on the terminal using 7z. So to extract an archive, the command should be something like 7z e /path/to/archive. As a heads up, there is a warning not to use 7zip to create backups on linux.

    I seem to recall that there were also applications called zip and unzip that do much the same thing but were limited to just .zip files. May already be in your distro. And found a nice refresher on them here: https://www.geeksforgeeks.org/linux-unix/zip-command-in-linux-with-examples/

    If you were looking to create zip files to share, there should be a gui application included in your distro that should be able to create and extract zip files. For me its Ark, but for Gnome it might be called Archive Manager or some such. If your application menu is sorted by application type, try looking in the System or Utilities sections.

    Proof reading this has given me a horrid thought. "Oh God! I'm a GREY BEARD!"

  • Pretty much, yea. I was updating my music player and for whatever reason, I dragged the link for the x86_64 app image to the desktop and got a dialog that basically said "Yea, I can put that there. Are you sure?"

    Tried uploading a short screen recording but it wouldn't go. After doing it again though, it may be a KDE thing.

  • Today I Learned @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    TIL that I can drag a download link to my KDE desktop and it will automatically save the file to that location.

    Not sure why I tried to do that. I knew when I did it that it wouldn't work and I was kicking my self for being stupid when the prompt showed up asking me to confirm that I wanted to download to that location. My jaw hit the metaphorical floor!

    Now I'm wondering what other neat tricks I've missed over the years!

    To be clear this is in Firefox on NixOS with the KDE6 desktop environment. No clue if it works on other browsers, DEs, or OSs.

  • I've bounced between a bunch of different ones. Each time I switched and moved the directory over the formatting and linking tended to break. In the end, I settled on just a raw hierarchical directory structure using raw markdown (using a basic text editor) for typed notes and whatever other relevant media (pictures, pdfs, whatever), and GoodNotes for handwritten notebooks with PDF backups saved to directory on my Nextcloud.

    I don't know, maybe my needs are odd but I've just never found a single application that could handle all of my note-taking and documentation needs. Everything is close, but frustratingly annoying in one missing feature or another. And all of them seemed damned slow compared to just opening up a file browser or a terminaland doing what I needed.

    As for file syncing, Logseq was pretty easy to handle syncing for. I just put the logseq notes directory on my Nextcloud and Bob's you're uncle. Access on my desktop, laptop and mobile devices. Don't have to use Nextcloud though, just something that would allow you to sync the directory between devices. Syncthing would probably work. Just don't bounce between devices too fast. Causes conflicts you have to correct manually.

  • I just had to have our meter replaced while we were replacing the water line to our house. The tech who installed it said that the meter cost $5K to replace. Was very glad I didn't have to pay for the new meter on top of the main water line.

  • Ask Lemmy @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    Let's play "What-If". How would you deal with this situation if it were real?

    cross-posted from: https://lemmy.sdf.org/post/36954801

    So I just woke up from what might be one of the weirder nightmares I've ever had. It didn't happen, but it did introduce a scenario for which I am not sure what the right thing to do in that moment is. I thought I'd toss it to y'all for ideas on how to best deescalate the scenario in my dream as I have often found myself in dejavu situations.

    I was walking into an indoor mall of some sort when a woman stops me and tells me that I owe money for something. I disagree, turn around and begin to leave when I see the woman exiting the mall ahead of me and a male security officer (not police) begins to follow me. As I step off the curb and onto the parking area blacktop, the security guy reaches over and pinches my arm. In shock and surprise, I about face and shout "What the fuck was that for?" He replies something about a cop that was lost as I woke up with a spiked heart rate.

    As far as dream interpretation, I'm pretty s

    Asklemmy @lemmy.ml
    StrawberryPigtails @lemmy.sdf.org

    Let's play "What-If". How would you deal with this situation if it were real?

    So I just woke up from what might be one of the weirder nightmares I've ever had. It didn't happen, but it did introduce a scenario for which I am not sure what the right thing to do in that moment is. I thought I'd toss it to y'all for ideas on how to best deescalate the scenario in my dream as I have often found myself in dejavu situations.

    I was walking into an indoor mall of some sort when a woman stops me and tells me that I owe money for something. I disagree, turn around and begin to leave when I see the woman exiting the mall ahead of me and a male security officer (not police) begins to follow me. As I step off the curb and onto the parking area blacktop, the security guy reaches over and pinches my arm. In shock and surprise, I about face and shout "What the fuck was that for?" He replies something about a cop that was lost as I woke up with a spiked heart rate.

    As far as dream interpretation, I'm pretty sure that it's just the result of stress from everything that is hap

    News @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    Edit: Changed link to a non amp version of same story from same news organization.

    Linux @programming.dev
    StrawberryPigtails @lemmy.sdf.org

    In the comments section of a recent post I found out that Windows PowerShell had been ported to Linux. Had no clue it was a thing.

    Went looking and found this old article attempting to explain why they did it. Not remotely interested in giving up Bash for PowerShell, but I thought it was interesting enough to share. The article seems to be from 2016.

    I have never been more tempted to check the NSFW box, but I'll leave it open for now unless a mod complains. :-D

    Technology @lemmy.zip
    StrawberryPigtails @lemmy.sdf.org

    I found an interesting USB-C alternative to barrel jack wall warts. Thought I'd share...

    I found an interesting barrel plug cable. Thought I'd share in case anyone else is looking for a 5.5mm barrel power plug. No clue if it's any good.

    Looks like it's available in 5v 5A to 28v 5A and the cable will only supply the rated voltage or 5v if the power supply can't supply the required voltage.

    It does have a datasheet, which unfortunately is written in a language I can't read. Doesn't look like it comes with a power supply.

    I see two issues with it. First, I don't have a boat load of spare USB-C PD power supplies so this solution winds up costing me more. Second, while the voltage is printed on the cable, it's printed grey on black so it probably going to be hard to read and once that wears off your back to playing "what's this cable".

    This cable includes an EMARK chip

    This cable is 1.2 meters long

    Tip is 5.5mm outer diameter, 2.5mm inner diameter with center positive voltage, but it's springy so it works just fine for 2.1mm as well.

    Politics @beehaw.org
    StrawberryPigtails @lemmy.sdf.org
    Politics @beehaw.org
    StrawberryPigtails @lemmy.sdf.org
    Not The Onion @lemmy.world
    StrawberryPigtails @lemmy.sdf.org
    Politics @beehaw.org
    StrawberryPigtails @lemmy.sdf.org
    Technology @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    cross-posted from: https://slrpnk.net/post/20187958

    A prominent computer scientist who has spent 20 years publishing academic papers on cryptography, privacy, and cybersecurity has gone incommunicado, had his professor profile, email account, and phone number removed by his employer Indiana University, and had his homes raided by the FBI. No one knows why.

    Xiaofeng Wang has a long list of prestigious titles. He was the associate dean for research at Indiana University's Luddy School of Informatics, Computing and Engineering, a fellow at the Institute of Electrical and Electronics Engineers and the American Association for the Advancement of Science, and a tenured professor at Indiana University at Bloomington. According to his employer, he has served as principal investigator on research projects totaling nearly $23 million over his 21 years there.

    He has also co-authored scores of academic papers on a diverse range of research fields, includi

    World News @beehaw.org
    StrawberryPigtails @lemmy.sdf.org

    EU urges citizens to stockpile 72 hours’ worth of supplies amid war risk

    News @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    cross-posted from: https://lemmy.sdf.org/post/30720427

    One bit (out of context) from the article that made me chuckle:

    Rubio told Sikorski: “No one has made any threats about cutting Ukraine off from Starlink. And say thank you because without Starlink, Ukraine would have lost this war long ago and Russians would be on the border with Poland right now.”

    In fact, Russians are already on the border with Poland because the Russian region of Kaliningrad lies on Poland’s northern border.

    World News @beehaw.org
    StrawberryPigtails @lemmy.sdf.org

    One bit (out of context) from the article that made me chuckle:

    Rubio told Sikorski: “No one has made any threats about cutting Ukraine off from Starlink. And say thank you because without Starlink, Ukraine would have lost this war long ago and Russians would be on the border with Poland right now.”

    In fact, Russians are already on the border with Poland because the Russian region of Kaliningrad lies on Poland’s northern border.

    Global News @lemmy.zip
    StrawberryPigtails @lemmy.sdf.org
    Selfhosted @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    Is it possible to mount a ZFS drive in OpenMediaVault?

    Original Post:

    I recently had a Proxmox node I was using as a NAS fail catastrophically. Not surprising as it was repurposed 12 year old desktop. I was able to salvage my data drive, but the boot drive was toast. Looks like the sata controller went out and fried the SSD I was using as the boot drive. This system was running TurnKey FileServer as a LXC with the media storage on a subvol on a ZFS storage pool.

    My new system is based on OpenMediaVault and I'm am happy with it, but I'm hitting my head against a brick wall trying to get it to mount the ZFS drive from the old system. I tried installing ZFS using the instructions here as OMV is based on Debian but haven't had any luck so far.

    Solved:

    1. Download and install OMV Extras
    2. OMV's web admin panel, go to System -> Plugins and install the Kernel Plugin
    3. Go to System -> Kernel and click the blue icon that says Proxmox (looks like a box with a down arrow as of Jan
    Buy it for Life @slrpnk.net
    StrawberryPigtails @lemmy.sdf.org
    astaluk.com 2 Month Review of the Ryobi USB Lithium Compact Speaker (FVA51)

    I’ve been looking for a good Bluetooth speaker for a while now. My old one, a 1st gen Anker SoundCore that I bought in late in 2018 decided to quit working on me 2020 when the battery failed. I decided that I didn’t want another one that would only last me a year or two before it failed. The ones th...

    I've been looking for a good Bluetooth speaker for a while now. My old one, a 1st gen Anker SoundCore that I bought in late in 2018 decided to quit working on me 2020 when the battery failed. I decided that I didn't want another one that would only last me a year or two before it failed. The ones that have actually decent sound just cost too much for me to be able to justify that. That one requirement turned out to be a big problem as almost nobody makes a decent Bluetooth speaker with a replaceable battery. Except, the power tool makers.

    About 15 years ago (give or take) I had owned a Ryobi Bluetooth radio. The sound was crap and it wasn't exactly what you would call compact but it was loud and it took a good 5 years of actual, honest to god, abuse until it finally died. It fell into a pan of used motor oil. I cried. Not so much over the radio but rather over the 4ah 18v battery that had been powering it. Those things were damned expensive at the time.

    So when I noticed that Ryobi h

    News @lemmy.world
    StrawberryPigtails @lemmy.sdf.org

    The Rage and Glee That Followed a C.E.O.’s Killing Should Ring All Alarms

    Not The Onion @lemmy.world
    StrawberryPigtails @lemmy.sdf.org
    News @lemmy.world
    StrawberryPigtails @lemmy.sdf.org