Telorand

joined 1 year ago
[–] [email protected] 1 points 1 minute ago

I didn't say that. However, if delegation is too risky, do the work yourself.

[–] [email protected] 4 points 13 minutes ago (1 children)

Honey Buzzards are fucking awesome.

[–] [email protected] 1 points 39 minutes ago

Correct. By their very nature of certain religions being mutually exclusive, they can't all be correct, but they could all be wrong.

They aren't wrong because some are mutually exclusive. That's a non-sequitur. They are false or at least not true, because the evidence either falsifies the claims or doesn't prove them to be true.

[–] [email protected] 5 points 1 hour ago (1 children)

Neuralink test subject: Why do I smell burnt toast?

[–] [email protected] 3 points 1 hour ago (1 children)

Who would I jail? The C-officers. Your shit show, your responsibility. If you can't trust your employees, figure out why or do the work yourself.

[–] [email protected] 7 points 1 hour ago

This.There exists a pipeline from somewhere on the left to the alt right. It is dangerous to think otherwise.

[–] [email protected] 8 points 2 hours ago

Tape multiple together, and you have a rudimentary scoop.

[–] [email protected] 6 points 2 hours ago

ChatGPT says it's true, and robots can't lie!

[–] [email protected] 22 points 2 hours ago

Yes, there's teeth to the original appeal. Amicus briefs, however, have to be accepted by the judges before they will entertain any of the arguments and prescribed remedies.

You can file them, and that's generally meaningful, (ignoring how the GOP has bastardized the practice) since it goes on the public record, but the courts may not be open to reading them regardless.

[–] [email protected] 21 points 2 hours ago (1 children)

This is not my beautiful house...!

[–] [email protected] 4 points 2 hours ago
  • Petey Piranha
  • Mewtwo

No idea.

[–] [email protected] 11 points 2 hours ago (4 children)

This will never happen. Smell-o-Vision and its successors have been in development for decades, and they all have the same issue: where to store the numerous scent liquids. You can't just digitize scent and generate it on demand with some kind of solid state device. You can't just combine three liquids to make 1000 scents—the article's analogy of combining light to make colors is overly optimistic, bordering on delusional.

The other two related problems are convenience and cost. This is 1000% a novelty, and novelties quickly lose their appeal after you experience it the first time. Who is seriously going to be going out to buy replacement cartridges for a thing that is essentially a toy?

 

I've been thinking about getting a couple of Yubikeys for a partner and myself, but we share certain accounts. While I would love to have the Yubikey 5 that can store TOTP, that seems like it could be problematic for shared accounts.

Would using the cheaper Yubico Security Keys to unlock Bitwarden Premium vaults, that use a Shared Organization, be a better/more sane option than trying to sync up TOTP secrets every time a new shared account gets added? Any other critiques or suggestions?

 

cross-posted from: https://reddthat.com/post/24214265

So, a couple years ago, somebody published the 2017 free desktop client of SketchUp on the chocolatey repos, and I managed to snag it before it got taken down. I use it primarily to make woodworking plans.

I'm wrapping up my transition plan to Linux, but I'm not really up to date on SketchUp alternatives. The only ones I know of are Blender (afaik more for animation and 3D printing) and FreeCAD (CAD seems like overkill, since I'm just doing simple cuts and joinery).

Are there good Linux/FOSS alternatives to SketchUp that have similar features, or is the web client the only reasonable option?

 

So, a couple years ago, somebody published the 2017 free desktop client of SketchUp on the chocolatey repos, and I managed to snag it before it got taken down. I use it primarily to make woodworking plans.

I'm wrapping up my transition plan to Linux, but I'm not really up to date on SketchUp alternatives. The only ones I know of are Blender (afaik more for animation and 3D printing) and FreeCAD (CAD seems like overkill, since I'm just doing simple cuts and joinery).

Are there good Linux/FOSS alternatives to SketchUp that have similar features, or is the web client the only reasonable option?

 

This isn't a joke, though it almost seems like one. It uses Llama 3.1, and supposedly the conversation data stays on the device and gets forgotten over time (through what the founder calls a rolling "context window").

The implementation is interesting, and you can see the founder talking about earlier prototypes and project goals in interviews from several months ago.

iOS only, for now.

Edit: Apparently, you can build your own for around $50 that runs on ChatGPT instead of Llama. I'm sure you could also figure out how to switch it to the LLM of your choice.

 

I'm working through some necessary issues in VMs as I work towards dropping Windows, but it occurred to me that I should pick a distro my non-techy partner could use in the event that something catastrophic happens to me. I really like the declarative/immutable distros, but perhaps something more traditional with btrfs snapshots would be better suited to such a use case...?

It's no secret that NixOS has a steep learning curve, but do any of you share a NixOS PC with family/partners/etc.? If so, what has that experience been like? Could they take over admin if you were incapacitated?

 

cross-posted from: https://reddthat.com/post/21668140

I have a VPN daemon that needs to run before the client will work. Normally, this would have been set up automatically by its install script, but the system is immutable.

I've created the systemd service via sysyemctl edit --force --full daemon.service with the following parameters:

[Unit] 
Description=Blah
After=network-online.target

[Service]
User=root
Group=root
ExecStart=/usr/bin/env /path/to/daemon

[Install]
WantedBy=multi-user.target

I've verified that the daemon is actually executable, and it runs fine when I manually call it via sudo daemon. When I try to run it with sudo systemctl enable --now daemon.service, it exits with error code 126.

What am I missing?

Edit: Typo, and added the relevant user and group to the Service section. Still throwing a 126.

Solution: the system wanted /usr/bin/env in ExecStart to launch the binary. The .service file above has been edited to show the working solution.

 

I have a VPN daemon that needs to run before the client will work. Normally, this would have been set up automatically by its install script, but the system is immutable.

I've created the systemd service via sysyemctl edit --force --full daemon.service with the following parameters:

[Unit] 
Description=Blah
After=network-online.target

[Service]
User=root
Group=root
ExecStart=/usr/bin/env /path/to/daemon

[Install]
WantedBy=multi-user.target

I've verified that the daemon is actually executable, and it runs fine when I manually call it via sudo daemon. When I try to run it with sudo systemctl enable --now daemon.service, it exits with error code 126.

What am I missing?

Edit: typo

Edit 2: Added script modifications. Daemon appears to be some kind of pre-compiled binary.

Solution: ExecStart wanted /usr/bin/env to launch the binary. The service file above has been edited to reflect the correct solution. See this post for further discussion.

 

I'm working on my transition plan away from Windows and testing out various things in VMs as I do so, and one big hurdle is making sure the VPN client my work requires can connect. Bazzite is my target distro (primarily gaming, work less frequently), though other more traditionally structured ones like Pop!_OS and Garuda are possibilities.

I'm currently trying and failing to get the VPN client working in a distrobox (throws an error during connection saying PPP isn't installed or supported by the kernel). However, I can successfully get the VPN connected if I overlay the client and its dependencies via rpm-ostree install, but I read somewhere that Bazzite's philosophy is to use rpm-ostree as sparingly as possible for installing software to preserve as much containerization as possible.

Since I can get it working outside of a container, am I overthinking it? Should I just accept that this might be one of the "sparing" cases? Is Bazzite perhaps a poor fit for my use case? I've been trying to make sense of this guide, but I'm having trouble understanding how to apply it to my situation, since I'm not that familiar with Docker or Podman.

 

For example, I saw a post the other day detailing how to set up a Brother laser printer on Kinoite. That's not something I would have initially considered a potential problem to be solved. Another I ran into some years ago had to do with an Edimax WiFi dongle that used some weirdly specific Realtek 8812 radio, for which you had to set up the driver via dkms. A little prep and knowledge in advance would have saved days of searching online.

I've started a personal to-do list of things to research and make sure I have all my ducks in a row before I make the full-time switch on my main desktop, so besides the usual "back up your files" advice, I'm hoping y'all can point out some QoL things I and others may often miss!

64
Why openSUSE? (reddthat.com)
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 

First, let me be clear up front that I'm not promoting the idea that there should be one "universal" Linux distro. With all the various distros out there for consumers, there's lots of discussion about Arch, Debian, and Fedora (and their various descendant projects), but I rarely see much talk about openSUSE.

Why might somebody choose that one over the others? What features or vision distinguishes it from the others?

Edit: I love all the answers! Great stuff. Thanks to everyone!

 

Now that late spring/early summer is upon us, there's increasingly more headlines about less rain in various places (recent floods notwithstanding). I'm assuming that's because water is evaporating and not returning to those places, but where is it going?

Is it arriving, now, in these bursty flash floods? Is it staying longer in the atmosphere and moving to new locations? Is more of it just staying in the atmosphere period?

view more: next ›