vole

joined 3 years ago
MODERATOR OF
[–] vole@lemmy.world 4 points 1 week ago (1 children)

I looked it up, this episode covered about 1.3 manga chapters. (too lazy to lookup the LN/WN, though that's what I was originally going to compare) The previous episodes averaged about 2.2 manga chapters per episode (I'm assuming there was no significant divergence in content), possibly even higher if we ignore the previous episode which also had a ton of recap.

Elymas seems to be unable to use his common sense or any knowledge that he gained from living in that world for his entire life, and he purely makes his choices based on his knowledge of the game

It seems that Elymas has a realization in nearly every episode that this world does not work quite like the game works.

[–] vole@lemmy.world 3 points 1 week ago (1 children)

I see. I suspect that the Ultra Series 1 model is being treated as a previous-generation product and won't get restocked, but I could be wrong. I think if you really want, you can make an Ultra Series 1 laptop from parts. They have the chassis and the two higher end Ultra Series 1 mainboards in stock. Though at the price you might prefer to just pre-order the 13 pro.

[–] vole@lemmy.world 8 points 2 weeks ago (5 children)

Maybe I don't understand, but I see it in stock and I was able to add it to my cart. Are you outside the US?

[–] vole@lemmy.world 1 points 3 weeks ago

Suddenly dumdum 😔

[–] vole@lemmy.world 5 points 1 month ago* (last edited 1 month ago)

The first thing is to do is to understand what you're looking at. Read this:

systemd-analyze blame¶

This command prints a list of all running units, ordered by the time they took to initialize. This information may be used to optimize boot-up times. Note that the output might be misleading as the initialization of one service might be slow simply because it waits for the initialization of another service to complete. Also note: systemd-analyze blame does not display results for services with Type=simple, because systemd considers such services to be started immediately, hence no measurement of the initialization delays can be done. Also note that this command only shows the time units took for starting up, it does not show how long unit jobs spent in the execution queue. In particular it shows the time units spent in "activating" state, which is not defined for units such as device units that transition directly from "inactive" to "active". This command hence gives an impression of the performance of program code, but cannot accurately reflect latency introduced by waiting for hardware and similar events.

For example: I have passphrase disk encryption (no TPM encryption), and the time I take to enter the passphrase is added to many entries in systemd-analyze blame. Here is the output of systemd-analyze blame if I wait 2 minutes to enter my disk encryption passphrase:

2min 12.640s sys-module-fuse.device
2min 12.618s sys-devices-platform-MSFT0101:00-tpm-tpm0.device
2min 12.618s dev-tpm0.device
2min 12.551s dev-ttyS0.device
2min 12.551s sys-devices-pnp0-00:00-00:00:0-00:00:0.0-tty-ttyS0.device
2min 12.550s dev-ttyS2.device
...

So, I guess my advice is that systemd-analyze blame is not always going to be a clear indicator that a particular service is holding your boot times back. The .device entries in particular probably just represent how long after boot that the device became active. And unfortunately the systemd-analyze tools do not always lead you to the underlying delay.

$ systemd-analyze critical-chain dev-tpm0.device
The time when unit became active or started is printed after the "@" character.
The time the unit took to start is printed after the "+" character.

dev-tpm0.device +2min 12.618s

$ systemd-analyze critical-chain dracut-initqueue.service
The time when unit became active or started is printed after the "@" character.
The time the unit took to start is printed after the "+" character.

dracut-initqueue.service +2min 11.123s
└─systemd-udev-trigger.service @770ms +158ms
  └─systemd-udevd-varlink.socket @760ms +65us
    └─system.slice
      └─-.slice

If you are trying to deal with an issue that is causing significant delays in your boot time, journalctl --boot can sometimes be helpful. For the example boot above where I waited 2 minutes before entering the disk encryption passphrase:

Jul 31 14:09:39 mycomputer kernel: Linux version 7.1.5-201.fc44.x86_64 (mockbuild@9b86e96a386140128351588d751166fd) (gcc (GCC) 16.1.1 20260515 (Red Hat 16.1.1-2), GNU ld versi>
... (a lot of log lines within a few seconds, but then I find a big jump) ...
Jul 31 14:09:44 mycomputer kernel: [drm] pre_validate_dsc:1667 MST_DSC dsc precompute is not needed
Jul 31 14:11:48 mycomputer systemd-cryptsetup[551]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/...
... (and then there are a lot of log lines in the following seconds after the above line) ...
[–] vole@lemmy.world 1 points 1 month ago* (last edited 1 month ago)

I use the streaming services' built in tracking to keep track of what episode I'm on. I use animeschedule.net for following weekly releases of airing shows. I use MAL to record when I start watching, stopped watching, rating, and tracking "plan to watch".

[–] vole@lemmy.world 2 points 1 month ago* (last edited 1 month ago)

Daemons is like a good rendition of a forgettable 2000's shounen battle anime. It might shine compared against Shaman King and Zatch Bell (I was so young when I watched these, I don't remember if they're actually good), but it's hard to think much of Daemons once you've seen battle shounen done well (Jojo, FMA, HxH). I was watching the series as it aired, and I dropped off after episode 12 (I think because there was a short break). I will continue to watch it, but it doesn't pop out as a show to watch even though episode 12 ended with a cliffhanger.

It could be a slow burn, but perhaps too slow. From a recent MAL thread on the manga:

Is the manga anywhere near completion?

No way. We’re still on setup arcs. We don’t even know who the main antagonists are yet.

[–] vole@lemmy.world 0 points 1 month ago (1 children)

With most Linux OS's you have a choice of what desktop environment to use. The desktop environment controls most of what I would call the OS experience. Most linux distros will have KDE or Gnome installed as the default desktop environment, though there are often some more minimal or power-user focused desktop environments offered. I've heard Cinnamon is another good choice.

Ctrl-C, Ctrl-X, Ctrl-V, Ctrl-F, F3, F11 generally behave the same on most Linux desktop environment and software as they do on Windows.

Alt-Tab, Alt-F4 are commonly supported

For the run menu, Alt-F2 opens a similar menu in KDE and Gnome. I can only go into the specifics with KDE, but I can also run commands with the regular Windows key start menu. Though when I personally run commands, I generally open a terminal (Ctrl-Alt-T) so I can get tab completion. On KDE, Win+E opens a file explorer. Almost all the keyboard shortcuts are customizable on KDE, but I prefer to swim with the current whenever possible.

For some distros, you can write a "Live" version to a flash drive to try it out before installing, but opening applications will be slower than running on an SSD.

[–] vole@lemmy.world 1 points 1 month ago

Make sure to catch the mid-ending-credits scene. Other than that this episode is about what one would expect, and it gives a descent indication on where this story is going.

[–] vole@lemmy.world 2 points 2 months ago

Ubuntu used to have an option for that and the screen shot from the site looks quite a bit like the old Ubuntu installer.

Oh, right you are. https://help.ubuntu.com/community/Wubi

It even has a wikipedia page! https://en.wikipedia.org/wiki/Wubi_(software)

[–] vole@lemmy.world 7 points 2 months ago (3 children)

From the documentation site you linked, Q4OS doesn't run inside Windows. The Q4OS installer runs inside Windows, and it stores the root filesystem for Q4OS as a file inside an existing Windows drive partition. I'm not personally aware of other Linux OS's that do either of these things, nor do I particularly desire a Linux OS that does either of these things. I can see it being useful if you want to keep your Windows installation fully intact. I imagine disk I/O performance takes a small hit.

 

What anime are you looking forward to watching in the Winter 2024 season?

Winter 2024 anime: https://myanimelist.net/anime/season/2024/winter

 

cross-posted from: https://lemmy.world/post/2395857

I just finished watching Skip and Loafer, which aired this most recent spring season. I'm here to tell you: you should watch it too!

It's a coming of age story about a girl moving from the countryside to Tokyo to go to a better high school. It's full of heart-warming moments as these kids become friends and try to figure out how they should interact with the world.

The characters, story, animation, and sound are all fantastic. The show brings a comforting warmth, with a little drama to keep things interesting. Don't let this show pass you by!

Links:

 

I just finished watching Skip and Loafer, which aired this most recent spring season. I'm here to tell you: you should watch it too!

It's a coming of age story about a girl moving from the countryside to Tokyo to go to a better high school. It's full of heart-warming moments as these kids become friends and try to figure out how they should interact with the world.

The characters, story, animation, and sound are all fantastic. The show brings a comforting warmth, with a little drama to keep things interesting. Don't let this show pass you by!

Links:

 

Streams:

Show information:

 

Streams:

Show information:

 

Streams:

Show information:

 

Streams:

Show Information:

 

Streams:

Show Information:

 

Streams:

Show Information:

 

Streams:

Show Information:

 

Streams:

Show Information:

 

Streams:

Show Information:

view more: next ›