[-] Morphit@feddit.uk 1 points 1 day ago

If it doesn't have reticulated splines; I'm out.

[-] Morphit@feddit.uk 43 points 3 days ago

Have you tried sfc /scannow?

11
submitted 3 weeks ago by Morphit@feddit.uk to c/lemmyconnect@lemmy.ca

I'm upset that a meme I tried to remake with Unicode box drawing characters lines up terribly in apps: https://lemmy.ca/post/28490027 Shouldn't code blocks render in monospace?

On Lemmy's web frontend it's perfect:

On Connect it looks like this:

On Jerboa it's basically the same:

Eternity does use monospace but the box drawing characters seem to be too wide.

All I can find about it here is one post from a year ago: https://lemmy.ca/post/1492857

[-] Morphit@feddit.uk 21 points 2 months ago

I should have made this a top-level comment:

TL;DR: he wasn't banned, he quit:

Source (Instagram)

On Saturday, I was perplexed by photos online of Trump boarding his plane en route to a bitcoin conference. There was no bandage on his right ear. I re-posted one of the photos on Twitter and wrote, “look closely at his ear that was ‘hit’ by a bullet from a AR-15 assault rifle.”⁣
⁣ “Fake news,” someone responded. “It’s the wrong ear,” said another, which of course was not true. “This is an old photo,” which I felt the need to reply to. I re-posted a screenshot of New York Times photographer Doug Mills’ Twitter post of the same situation of Trump boarding his plane, which included the date and time of his photo. Doug is one of Trump’s favorite photographers and Trump has publicly called him “my genius photographer.” So I thought the maga world would at least believe Doug Mills.⁣
⁣ They didn’t. The comments turned ugly. Mostly about me, but also some that disparaged Doug Mills. ⁣ ⁣ Since 2017, I’ve been accustomed to having vile and hateful comments thrown at me. But I had now exposed someone else, Doug Mills, to be the recipient of hateful messages on MY Twitter account. Not cool.⁣
⁣ On top of that, I’ve been at a cabin with no Internet and sporadic cell coverage for the past week, which made it difficult to post anything in the first place but also a challenge to push back against the hate.⁣
⁣ So I de-activated my Twitter account. It was a gut decision, made only by me. I am still not sure if this is a temporary or a permanent action.⁣
⁣ I was unaware that some on Twitter were a⁣ responding that Elon Musk had deleted my account. How would I know? I wasn’t able to access Twitter. I did receive a few DMs here on Instagram about this, but didn’t think much about it. ⁣ ⁣ Until…late last night, I received a text message from a New York Times reporter asking me to comment about my supposedly “being kicked off X for posting a photo of Trump’s ear.” And then this morning, I received a text message from a childhood friend who asked, in jest, “Is there a Free Pete Souza donation site?”⁣
⁣ It was time to respond. I have so much more I want to say about the state of social media, but for now I want to make it clear that I was not kicked off Twitter. I kicked myself off.⁣

[-] Morphit@feddit.uk 21 points 3 months ago

It'd be easier to train clamp scientists to static fire than to train rocket scientists to clamp.

[-] Morphit@feddit.uk 77 points 3 months ago

How will they filter it out? If they just don't mirror anything with 'forbidden' terms, we can poison repos to prevent them being mirrored. If they try to tamper with the repo histories then they'll end up breaking a load of stuff that relies on consistent git hashes.

[-] Morphit@feddit.uk 29 points 4 months ago

Fulfills the AI quota 👍

2

cross-posted from: https://feddit.uk/post/12276336

Sorry for the crap photos - I just wanted to share these extra keys I added to my Lily58.

I noticed there was a gap in the matrix so I tacked a spare hot-swap socket to the pads on the back of the PCB. That worked with minimal modification to my QMK set-up. I couldn't really use it dangling off some wires so I set out to make an extension that would slot in and be retained by one of the standoffs. I don't have a laser cutter or 3D printer so I just hacked these out of a sheet of ABS plastic following a printed template and glued them up. They're nice and solid and line up really well, despite being rather rough around some of the edges.

I'm finding the 1.5U keys a bit confusing at the moment, swapping them out for 1U keys makes it a bit easier to home my thumbs. These are certainly much easier to access than the outermost keys on the lower row or the keys below the display. I'm thinking they need to be called Lily Pads.

70

cross-posted from: https://feddit.uk/post/12276336

Sorry for the crap photos - I just wanted to share these extra keys I added to my Lily58.

I noticed there was a gap in the matrix so I tacked a spare hot-swap socket to the pads on the back of the PCB. That worked with minimal modification to my QMK set-up. I couldn't really use it dangling off some wires so I set out to make an extension that would slot in and be retained by one of the standoffs. I don't have a laser cutter or 3D printer so I just hacked these out of a sheet of ABS plastic following a printed template and glued them up. They're nice and solid and line up really well, despite being rather rough around some of the edges.

I'm finding the 1.5U keys a bit confusing at the moment, swapping them out for 1U keys makes it a bit easier to home my thumbs. These are certainly much easier to access than the outermost keys on the lower row or the keys below the display. I'm thinking they need to be called Lily Pads.

41

Sorry for the crap photos - I just wanted to share these extra keys I added to my Lily58.

I noticed there was a gap in the matrix so I tacked a spare hot-swap socket to the pads on the back of the PCB. That worked with minimal modification to my QMK set-up. I couldn't really use it dangling off some wires so I set out to make an extension that would slot in and be retained by one of the standoffs. I don't have a laser cutter or 3D printer so I just hacked these out of a sheet of ABS plastic following a printed template and glued them up. They're nice and solid and line up really well, despite being rather rough around some of the edges.

I'm finding the 1.5U keys a bit confusing at the moment, swapping them out for 1U keys makes it a bit easier to home my thumbs. These are certainly much easier to access than the outermost keys on the lower row or the keys below the display. I'm thinking they need to be called Lily Pads.

37
6
submitted 6 months ago by Morphit@feddit.uk to c/nix@programming.dev

Hi All,
I'm still very new to Nix but trying to daily-drive NixOS.

What I'm currently stuck on is injecting Python packages into a Jupyterlab service. What I have at the moment in the home-manager.home portion of my system flake is the following:

  systemd.user.services.jupyter = let
    jupyter = pkgs.jupyter-all.override {
      python3 = pkgs.python311.withPackages (python-pkgs: with python-pkgs; [
        numpy
        matplotlib
      ]);
    };
  in {
    Service = {
      Type = "simple";
      WorkingDirectory = "${home.homeDirectory}/notebooks";
      ExecStart = "${jupyter}/bin/jupyter-lab --no-browser";
    };
  };

This fires up a JupyterLab process that I can connect to and which runs fine, but numpy etc. can't be imported. From a devshell, I see that the python.withPackages mechanism seems to rely on $PYTHONPATH to pass in a python3-3.11.8-env package that contains a lib/python3.11/site-packages. I'm guessing that the systemd service just needs to have an Environment key, but where do I get the python3-3.11.8-env path from?

The Jupiter executable is in a /nix/store/#-python3-3.11.8-env/bin location, but the site-packages only include the modules for Jupyter so I assume there's another python3-3.11.8-env in the nix-store that does have the python packages I'm trying to get. Trying things like jupyter.env gives errors like *** Python 'env' attributes are intended for interactive nix-shell sessions, not for building! *** but I'm just taking a stab in the dark here.

I'd appreciate any pointers on this. I see there are helpers like JupyEnv, but these seem focused on setting up ephemeral devshells, not running a service for long-term notes and seem like overkill for what I want.

15
submitted 6 months ago* (last edited 6 months ago) by Morphit@feddit.uk to c/spaceflight@sh.itjust.works

RFA uploaded a short overview video of their ARGO vehicle:
Youtube link
Piped alternative

Explore Argo, our flexible & reliable cargo capsule with an end-to-end service for only €150M/launch for 4,000kg up-and-down mass & 15.5m³ pressurized cargo volume.

Developed with Space Cargo Unlimited Atmos Space Cargo, Argo is our commitment to rebuilding independent European space cargo capabilities.

Find out more about Argo here: https://www.rfa.space/argo/

[-] Morphit@feddit.uk 66 points 6 months ago

Don't hurt me
Brush tools.

11
submitted 8 months ago by Morphit@feddit.uk to c/lemmyconnect@lemmy.ca

I seem to have gotten a saved account that can't be switched to and therefore can't be removed.

My instance had some server side issues and on PC I had to delete my cookies to get the desktop site to work. Connect wouldn't work and I had to add the account again. At some point the account name has changed to my email address @feddit.uk, which looks weird since it has two @ symbols. The newly added account works fine, but there's this stuck second version of it.

When I try to switch to the broken version I get an error pop up that just says "Error: unable to switch to 'me@email.domain@feddit.uk'" and it seems to retain the currently selected account.

Since I can't switch to that account, I can't sign out to have Connect forget it. So I don't see a way to get rid of it.

Has anyone else run into the same problem? Any suggestions?

[-] Morphit@feddit.uk 27 points 9 months ago

Revolutionary

I see what they did there.

[-] Morphit@feddit.uk 24 points 1 year ago

Ah, you're travelling in to London'); DROP TABLE Airports;-- today? And how is the weather in North Korea?

[-] Morphit@feddit.uk 42 points 1 year ago

In fact, forget the Internet.

view more: next ›

Morphit

joined 1 year ago