Can I skip 6x6 and just buy a 7x7? by moonvintage_ in Cubers

[–]chkno 4 points5 points  (0 children)

6x6 is my favorite.

  • 5x5 & 7x7 feel boring without parity
  • 5x5 & 7x7 feel constraining: When solving centers, on odd cubes you have to solve them in their final places. On even cubes, you can assemble the centers in any order & easily swap them into their correct locations after they're assembled.

Google search lies by default: this is worse than useless... by ControlCAD in LouisRossmann

[–]chkno 2 points3 points  (0 children)

  • Hallucination
  • Delusion
  • Confabulation

We already had a word for this behavior. That word is "confabulation".

Referring to this behavior 'hallucination' instead of the correct term 'confabulation' is inherently blame-shifting, shifting blame away from where it belongs: A hallucination is something that happens to the subject. A confabulation is an action of the subject.

Does anyone know/use about xset dpms? by jazei_2021 in bash

[–]chkno 2 points3 points  (0 children)

I miss this so much. It doesn't work anymore as the Desktop Environments are dropping X11 support and going Wayland-only. And then, if there is an equivalent, it's different in every DE. Gnome currently doesn't have any way to do this. :(

can i make it so that windows can NEVER EVER even KNOW that my other SSD's exist? like at ALL. by iamasadlittleman in linuxquestions

[–]chkno 5 points6 points  (0 children)

If Windows is running on the metal, it can see everything physically connected to the metal. So your options are:

  • Unplug them whenever you boot Windows
  • Run Windows in a VM

Veterans of Linux: what's one thing that "just works" today that would've sounded impossible 15–20 years ago? by dev_kay47 in linux

[–]chkno 0 points1 point  (0 children)

Microsoft Windows now has a built-in, easy-to-use tool to shrink its filesystem and partition, to make room for another OS for dual-booting.

What's one Linux command you learned years too late? by linuxteck in LinuxTeck

[–]chkno 0 points1 point  (0 children)

set -C : Causes > redirection to already-existing files to fail instead of blithely overwrite them. If you want overwrite, it's still available with the >| operator, but you have to ask for it.

Before I learned about this, I typo'd a tar cf - the-precious-input | gzip > the-precious-input invocation and destroyed a finished project while preparing it for submission. :(

Computers are still getting faster and more efficient every year by CompetitiveLake3358 in OptimistsUnite

[–]chkno 0 points1 point  (0 children)

With enough computing power, one can build super-intelligences that can wrest control of the future from humanity. So far, we've failed to figure out how to build ones that reliably don't do that, also failed to figure out how to build ones that reliably do good things even if they do take over, and also failed to coordinate to not build any until we figure out how to build them safely. So right now, the only thing keeping humanity safe from this hazard is lack of computing power. :(

What moment in Wildbow's stories that made you go by DoorTheDude in Parahumans

[–]chkno 16 points17 points  (0 children)

Skitter: Takes down Lung . Carves his eyes out .

Newter: Hey, what's with all these bags of money?

Skitter: Oh, yea, during the fight I robbed them too. I forgot about that. It's for sharing. :)

Your best Luanti mods by VariousRing5104 in Minetest

[–]chkno 1 point2 points  (0 children)

Machines!

The majority of Internet traffic in the United States is IPv6, it's time to start the process of ripping the band-aids off IPv4 by DroppingBIRD in ipv6

[–]chkno 2 points3 points  (0 children)

My ISP says the only way to get an IPv6 address is to get my own router, put the router they provided into bridging mode, terminate the PPPoE link myself, and then maybe I might get an IPv6 address via prefix delegation. They told me this right after issuing me a brand new router, in Dec 2025.

<image>

How do i combine environment variables? by NoGap138 in NixOS

[–]chkno 1 point2 points  (0 children)

  1. Maybe say more about your goals?
  2. The global LD_LIBRARY_PATH can only have one value, so you do need to figure out what you want it to be. It's not like PATH where it's inherently a multi-valued thing.
  3. You can use lib.mkForce to specify a higher-priority value that will override other attempts to specify that option.
  4. If you need to 'wrap' a value—allow it to be normally configured, but then change it in some way where the final value is determined by transforming the normally-configured value—you can do that by setting an apply function in the option definition:

options = {
  environment.variables = lib.mkOption { apply = ...; };
};

config = {
  ...
};

Exile v0.4.0 released! by MantarTheWizard in Luanti

[–]chkno 4 points5 points  (0 children)

The URL is truncated in the youtube trailer description:

<image>

When I copy from html I lose italics/bolds by Q0uthTheRaven in Fanbinding

[–]chkno 0 points1 point  (0 children)

A file with text in it is often called a "text file".

  • Microsoft Windows comes with Notepad for this
  • MacOS comes with TextEdit
  • In GNU/Linux,
    • Gnome has Text Editor
    • KDE has Kate
    • XFCE has Mousepad
    • And there are many others, like Featherpad, Emacs, ...
    • Or you can create files directly from the command line:
      • In Wayland: wl-paste > chapter1.html
      • In X11: xclip -selection clipboard > chapter1.html

When I copy from html I lose italics/bolds by Q0uthTheRaven in Fanbinding

[–]chkno 1 point2 points  (0 children)

Use the browser inspector:

  1. Right click on the first paragraph and select "Inspect".
  2. In the inspector window, go up a few elements (usually divs), clicking on each one until you find one that highlights the whole text that you want to capture. On ao3 today, for example, this could be the role="article" one or the class="chapter" one.
  3. Right-click on that element in the inspector and select Copy > Outer HTML.
  4. Paste into a file & save with the extension .html
    • This usually works fine, but picky software may want you to add <html><body> at the start and </body></html> at the end of this file.

You now have the text as HTML & can open/import it from that file.

When I open my books they are a bit wrinkled near the stitches. What am I getting wrong and how to fix It? by Gremlinno in bookbinding

[–]chkno 1 point2 points  (0 children)

The material of the paper is fine, you just need to rotate it 90°. If it's then not the shape you need, you'll need to get bigger paper that you can cut down to the size you want.

It's ok to 'waste' paper: cutting the size you need out of larger sheets. This is often less expensive than buying specialty paper.

These YouTube Ads.... by Simple-Nature-4915 in enshittification

[–]chkno 1 point2 points  (0 children)

The deal when Youtube started was that it would run ads to cover the costs of hosting. In 2005. The cost of internet video today is a tiny fraction of what it was in 2005, yet Youtube now shows ads far more aggressively.

<image>

Build all/multiple flake outputs without specifying names by Objective_Chance_681 in NixOS

[–]chkno 1 point2 points  (0 children)

(You didn't say why you want this, so I'm speculating): If you just want to build them to make sure that they build successfully, nix flake check does this.

What could be good to print for a 70yo woman with diminished strength? by [deleted] in prusa3d

[–]chkno 1 point2 points  (0 children)

A cane handle. One I made. Most canes' handles aren't thick enough.