Morphit

joined 1 year ago
[–] Morphit@feddit.uk 3 points 2 days ago
[–] Morphit@feddit.uk 11 points 3 days ago

Because the minor diameter of the barrel is 5.56 mm and the major diameter is 5.69 mm. If the bullet were smaller than that then the propellant would blow past it. They didn't make a 'murican millimetre like they did with the imperial system.

 

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 7 points 5 days ago (1 children)
               PSI
 0                             100
 ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
Dead                  Potentially survivable
               Vs
               Atm
 0                             100
 ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
Dead                           Dead
               Vs
               kPa
 0                             100
 ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
Dead                      Totally  Fine
[–] Morphit@feddit.uk 3 points 5 days ago (2 children)

I just learned about °Ré and °Rø and now my head hurts.

[–] Morphit@feddit.uk 5 points 1 week ago

When in doubt - C4!

[–] Morphit@feddit.uk 6 points 1 week ago

Plus it did land on the barge. Most of the debris should be there, though the remaining fuel would have mainly gone overboard. Probably the flight termination explosives also.

[–] Morphit@feddit.uk 5 points 2 weeks ago

Your mind makes it real.

[–] Morphit@feddit.uk 2 points 3 weeks ago

Why not an inflatable airlock? It worked* for Voskhod.

**I mean it didn't kill the crew...

[–] Morphit@feddit.uk 1 points 3 weeks ago

I don't think that's what 'market share' is trying to represent, but without any context - yeah. You can lump in android phones and set-top boxes and signage and industrial controllers while you're at it.

[–] Morphit@feddit.uk 18 points 3 weeks ago (1 children)

Is OP adding the Android share to Linux? That would certainly do it.

  • Android (all platforms): 45.19%

Only makes sense if you know their definition of 'Linux' though.

[–] Morphit@feddit.uk 3 points 3 weeks ago

I think what you want is in Firefox nightly right now: https://blog.nightly.mozilla.org/2024/08/07/firefox-sidebar-and-vertical-tabs-try-them-out-in-nightly-firefox-labs-131/

That expands and compacts based on the sidebar state and can be flipped to the right side of the window in the 'customise sidebar' settings.

 

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.

 

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.

 

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.

 
 

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.

view more: next ›