aebletrae

joined 2 years ago
[–] aebletrae@hexbear.net 0 points 2 years ago

It's an event that tells an oppressed group to know their place, and reminds everyone that any attempt to turn the tables on the ruling class will result in a showily horrific punishment. What could possibly be more British?

[–] aebletrae@hexbear.net 14 points 2 years ago (1 children)

Their physiology is barely diverged so their intellects are likely to remain similar. Espionage is frequently the theme of Romulan encounters, which would help keep them up to date. And if they procreate more frequently than every seven years, they might have a much larger population even with greater murderousness, with more people being advantageous for tech development.

[–] aebletrae@hexbear.net 1 points 2 years ago

Here's how you can do it while only ever dividing or multiplying by two.

Decimal to quaternary

This is a cycle of looking at remainders from dividing by two, with the first one an odd-even determinant, and the second a big-little determinant for each quaternary digit. You make numbers even before dividing by two, so there are never fractions to consider.

  1. Is the decimal number even? If yes, remember that you'll have an even quaternary digit (0 or 2). If the decimal number is odd, subtract one from the decimal number, and remember that you'll have an odd quaternary digit (1 or 3).
  2. Divide the decimal number (having subtracted 1 if odd) by two. This gives you an intermediate number.
  3. Is the intermediate number even? If yes, your quaternary digit is the lesser of the possibilities (0 or 1). If the intermediate number is odd, subtract one from the intermediate, and your quaternary digit is the greater of the possibilities (2 or 3). Write the quaternary digit down.
  4. Divide the intermediate number (having subtracted 1 if odd) by two. This gives you a new decimal number for the next round.
  5. Repeat from step 1 unless the new decimal number is less than 4, at which point it becomes the final (left-most) quaternary digit. New quaternary digits go the left of previous ones.
Example

Decimal number is 57~10~.

  1. 57 is odd so the quaternary digit will be odd (1 or 3). Subtracting 1 gives 56.
  2. 56 divided by 2 is 28 for the intermediate number.
  3. 28 is even so the quaternary digit is the lesser possibility for an odd digit, i.e., 1. Write down 1.
  4. 28 divided by 2 is 14 for the new decimal number.

Next round:—

  1. 14 is even, so the quaternary digit will be even (0 or 2).
  2. 14 divided by 2 is 7 for the intermediate number.
  3. 7 is odd, so the quaternary digit is the greater possibility for an even digit, i.e., 2. Write down 2 to the left of the previous quaternary digit. Subtract 1 from the odd intermediate number (7 - 1 = 6).
  4. 6 divided by 2 is 3 for the new decimal number.

Final digit:—

  1. 3 is less than 4, so write it down as the last quaternary digit, to the left of the previous one.

That process gives 57~10~ = 321~4~; that is, 3 sixteens, 2 fours and 1.

Quaternary to decimal

Here you only need to add a small number and then double twice with each digit.

  1. Start with 0 as your running total.
  2. Add the left-most quaternary digit, then ignore that digit for subsequent rounds.
  3. Multiply the new total by 4. You can multiply by 2 twice if you prefer.
  4. Repeat from step 2 using the next quaternary digit unless it is the last (right-most) digit.
  5. Add the final quaternary digit to the running total. This is your decimal number.
Example

Quaternary number is 321~4~.

  1. Running total starts at 0.
  2. Adding 3 makes 3.
  3. 3 times 4 is 12.

Next round:—

  1. Adding 2 to 12 makes 14.
  2. 14 times 2 twice is 28, then 56.

Final digit:—

  1. Adding the final digit (1) to the running total (56) gives 57 as the decimal number.

So 321~4~ = 57~10~.

[–] aebletrae@hexbear.net 5 points 2 years ago

It's a Klingon moon that's doing just fine.

[–] aebletrae@hexbear.net 5 points 2 years ago

I remember having to pause the video after that second bit. The piled-on criticisms, so matter-of-factly delivered, needed some recovery time. Your assessment is spot on.

[–] aebletrae@hexbear.net 16 points 2 years ago (3 children)

What I know mostly comes from the Folding Ideas video about him.

Most replayed part

Nostalgia Critic: I have become comfortably dumb.

Dan Olson: And, you know what, I’m not going to disagree. You said it, man. I don’t know if it works as self-deprecating humour because I don’t think it’s comedically true, I think it’s just true.

— "The Nostalgia Critic and The Wall", 34:28

[–] aebletrae@hexbear.net 14 points 2 years ago (1 children)

It's bad enough when student 'conservatives' play this "I am the master debater" game (with the most bad-faith approach, and without any understanding of real debate) but, when they're in their thirties, it's even more pathetic.

[–] aebletrae@hexbear.net 1 points 2 years ago

The output here lets us know that systemd is running the service file and starting the script just fine. The echoed GPU temperature is making it to the journal, but the gpuTemp variable isn't being updated (staying at 0) because of a problem executing nvidia-settings. Specifically, it wants a display: "The control display is undefined".

You could add a line to the service file:—

Environment = DISPLAY=:0

Although if echo DISPLAY in your terminal gives you a different value, use that. There's a possibility that that will just push one error further down the line, but it's something to try.

Alternatively/additionally, you could try changing the User= line to your own username to see if it picks up the environment your manual executions work with.

You aren't the only one to run into problems trying to automate nvidia-settings. You might end up needing to track down an Xauthority file or use the display manager's initialisation options.

[–] aebletrae@hexbear.net 10 points 2 years ago

If you had a book which had on its Contents page:

Chapter 1 . . . . . . . . . . page 1

and you crossed it out, then wrote:

Chapter 1 . . . . . . . . . . page 1

Chapter 2 . . . . . . . . . . page 50

someone looking for Chapter 1 is still going to find all the text in the right place (as long as it was less than 50 pages).

Changing the partitition table is like changing the Contents page; it doesn't mess with the rest of the data. And if the new table points to the same place it did before, the data can still be found.

That said, if the filesystem still thinks it's 1TB, you may end up with future problems unless you resize it to fit the reduced partition.

[–] aebletrae@hexbear.net 1 points 2 years ago

If it works when run manually, but fails via systemd, then you should post your service file.

[–] aebletrae@hexbear.net 3 points 2 years ago

Take a look at Engineering Mathematics by KA Stroud. It has a step-by-step approach with worked examples that might be useful to you. Even if you don't like the structure, it'll at least give you a comprehensive list of topics.

 

Schwing! :hentai-free:

 
 

…I'm going to call it the Bearlin Wall.

 

I don't know which one of you went to Belgium to start a transportation company, but it's a good bit.

1
submitted 2 years ago* (last edited 2 years ago) by aebletrae@hexbear.net to c/emoji@hexbear.net
view more: next ›