tal

joined 2 years ago
[–] tal@lemmy.today 3 points 3 hours ago* (last edited 3 hours ago)

The company operates 27 gas carriers, a significant portion of which are specialized Arc7-class icebreaking tankers. Such vessels are used for operations in the Arctic and to serve the Russian Yamal LNG project.

According to Financial Times estimates, since the beginning of 2025, Dynagas has transported over 10 million metric tons of Russian liquefied natural gas across 11 vessels, completing 144 voyages.

The Greek side claims that it is virtually impossible to redeploy Arc7-class specialized vessels to other routes. If sanctions are imposed, the company may be forced to sell them to buyers outside the West. The cost of a single such tanker is estimated at approximately $300 million.

If the gas infrastructure that they service gets hit the way the oil infrastructure has and the ships have nothing to transport, Dynagas might regret not having sold the ships off prior to that evaporation of demand.

Prior sanctions will have allowed a (relatively) ordered exit for European consumers, before Russia stopped exporting gasoline and diesel due to infrastructure damage, prioritizing what remained for itself.

If you own an expensive ship that can't be used on any other route, you may not want to be sitting on it if that route becomes non-viable.

[–] tal@lemmy.today 1 points 4 hours ago (1 children)

hits Google Shopping, which indexes pretty much anything you can buy on the Web

I assume that you're talking about this:

https://www.rei.com/product/127087/yeti-rambler-tumbler-with-magslider-lid-30-fl-oz

And not this, which has a wider base:

https://www.redironbrand.com/p/LGQWZ-HWNFX/yeti-rambler-30-oz-stackable-cup-w-magslider-lid-laser-engraved

[–] tal@lemmy.today 4 points 5 hours ago

Smartphone apps were competing with teachers for student attention. It was time to stop playing defense and go on the offense.

[–] tal@lemmy.today 1 points 5 hours ago

If you want to encourage political violence, I'm not very supportive of that.

[–] tal@lemmy.today 2 points 9 hours ago

Thanks. Looks like I'm subscribed to both, and just hit the first when searching. The latter does seem to be more active.

And I'm not trying to single out those people. Looking at that community list, I have probably seven or eight pocketknives myself (including two Spydercos), several flashlights (including a tri-18650-cell, Anduril-firmware flashlight), probably a dozen fountain pens (including one gold nib-equipped one), and a multitool that I carry with me. Those are, if I am to be honest, unnecessary toys


I would be at most very mildly inconvenienced if every one of those disappeared tomorrow. Just saying that before we get too enthusiastically involved in bagging on the middle-class white woman who spends $10/year on a not-really-necessary fad waterbottle...maybe everyone should consider their own unnecessary stuff. If they're truly more disciplined and ascetic, fair enough. But I think on the "toy" scale, the fad waterbottle probably isn't especially bad.

[–] tal@lemmy.today 7 points 11 hours ago* (last edited 11 hours ago) (2 children)

They're expensive because it's the last one you'll ever need

Every 3 years a new water bottle brand completely oneshots middle class white women like clockwork

There are lots of targeted products and demographics for which this sort of thing is true. My guess is that this is probably very far from the most costly example, though.

My water bottle


I got one as part of a kit for my bike


is determinedly untrendy and plastic, but it looks like these Owala things are $29. If I got one of those instead and did so every three years, that'd be $10/year. Is it necessary or financially optimal? No, probably not, but for perspective, a large pizza is about $30 where I am. The water bottle is probably a healthier unnecessary purchase than the pizza...and I get a pizza a lot more frequently than one every three years.

I mean, the !flashlight@lemmy.world or the !fountainpens@lemmy.world or the !knives@sopuli.xyz or the !EDC@sopuli.xyz people all have their own often-not-really-necessary items that they get and carry around


and most of those tend to be more guy things


that in all honesty are mostly for fun. You could buy a number of these Owala water bottles for what a nice Spyderco knife might run, and you don't need to pay what a Spyderco knife runs to get a sharp bit of metal to have with you.

[–] tal@lemmy.today 2 points 12 hours ago (1 children)

I don't know enough to do informed commentary as to the domestic political side or merits one way or another, but I do have to say that I think that United24 is probably a factor in Ukraine's war effort and that it is not fantastic from the standpoint of the war to have them not publishing. I mean, it's not a missile factory, no, but...

[–] tal@lemmy.today 13 points 21 hours ago

Rule #2.

Rule #3.

Rule #7.

Rule #8.

Like, he literally managed to violate half of the community rules in one post.

[–] tal@lemmy.today 14 points 22 hours ago* (last edited 21 hours ago)

My Linux distro already comes with a PDF merger. Let's get some PDF files to merge.

$ for i in $(seq 1 5); do echo $i >$i.txt; pandoc -o $i.pdf $i.txt; done

Now I've got five PDF files to merge.

$ pdfunite *.pdf merged.pdf

And done.

[–] tal@lemmy.today 7 points 1 day ago* (last edited 1 day ago)

WebM works with image-rs (as long as you don't exceed your home instance's upload size limits).

I can't guarantee that every client can view it properly


that's on the client's author


but it'll show up in the Lemmy Web UI.

$ wget https://gnuplotting.org/figs/bessel.gif
$ ffmpeg -i bessel.gif bessel.webm

Try downloading that and then uploading it in a comment to to your own instance; it should work unless pawb.social limits the size.

[–] tal@lemmy.today 9 points 1 day ago (1 children)

True, though they did get into the NASDAQ-100 early and the Russell indices early.

[–] tal@lemmy.today 2 points 1 day ago* (last edited 1 day ago) (2 children)

Well, a large audio buffer size for music is basically irrelevant and for VLC or MPV playing video, I think that they look at the buffer size to compensate for audio/video sync, and can have their buffer size increased (for mpv, it's --pipewire-buffer=<milliseconds>).

But that's not gonna fix it for everything, and you'd rather not have games breaking up either, I'd imagine.

Let's see...what can measure scheduling latency...

If you install the linux-perf package (well...that's what it's called in Debian...looks like it might be just perf in Bazzite) then you'll have the perf command.

If you run:

$ sudo perf sched record -- sleep 5

That'll sit there for 5 seconds and record all of the times a process was waiting to run and how long it took.

Then you can view that with:

$ sudo perf sched latency

You'll get something like:

 -------------------------------------------------------------------------------------------------------------------------------------------
  Task                  |   Runtime ms  |  Count   | Avg delay ms    | Max delay ms    | Max delay start           | Max delay end          |
 -------------------------------------------------------------------------------------------------------------------------------------------
  NetworkManager:1771   |      0.102 ms |        1 | avg:   0.038 ms | max:   0.038 ms | max start: 851647.533266 s | max end: 851647.533304 s
  systemd:1             |      0.167 ms |        1 | avg:   0.030 ms | max:   0.030 ms | max start: 851643.615504 s | max end: 851643.615534 s
  kworker/u129:1-:1923454 |      0.087 ms |        4 | avg:   0.030 ms | max:   0.035 ms | max start: 851647.788477 s | max end: 851647.788511 s
  TaskCon~ller #0:1921660 |      0.039 ms |        1 | avg:   0.027 ms | max:   0.027 ms | max start: 851644.615405 s | max end: 851644.615432 s
  wpa_supplicant:1773   |      0.052 ms |        1 | avg:   0.027 ms | max:   0.027 ms | max start: 851643.959252 s | max end: 851643.959278 s
  Netlink Monitor:1894113 |      0.082 ms |        2 | avg:   0.025 ms | max:   0.030 ms | max start: 851647.532516 s | max end: 851647.532546 s
  kworker/14:0-mm:1907945 |      0.015 ms |        1 | avg:   0.025 ms | max:   0.025 ms | max start: 851646.508509 s | max end: 851646.508534 s
  rtkit-daemon:(2)      |      0.060 ms |        2 | avg:   0.024 ms | max:   0.031 ms | max start: 851645.848483 s | max end: 851645.848514 s

That should give you a way to measure how long it's actually taking for a process to run once it wants to (the "Max delay ms" column). The buffer length is gonna need to cover that. Lemme go find something that'll give some idea of what kernel code is actually running...couple utilities that should do that. If it's some driver using a lot of time, might give a hint as to what kernel code is running.

looks

Ah, okay.

$ sudo perf record -ga

Until you kill it with Control-C, it'll sample and record what's running in perf.data. Then:

$ sudo perf report

And you can expand individual categories with "+".

I can't say "look at X, and that's it", but if something's running in the kernel, it should show up there. If it's, say, something with "nvidia" or similar in its name, that could be a hint that it's your video driver.

EDIT: Also, OP, I hate to bail on you, but I have to get some household chores done that I can't put off any longer, so I'm going to have to disappear for now...

 

cross-posted from: https://lemmus.org/post/23759881

Of course it is. Of course.

 

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

The layoffs at one of your studios most able to ship games is a bonkers, stupid decision; but pivoting Obsidian to making a new Fallout game is a good business decision if you don't care about what your creatives feel led to create.

 

I got inspired and decided to try out a few fountain pen inks the other day. I picked up Organics Studio's Nitrogen.

This is a popular saturated blue ink that has a lot of red sheen to it, looks almost like metallic foil when written on sufficiently ink-resistant paper.

I used it with a broad-nib TWSBI Eco. And in that, that, I agree. It does show a lot of sheen.

One really needs video to see the effect, since one needs to tilt it relative to a light source. A static image doesn't really convey the effect:

https://www.youtube.com/watch?v=NEsHNIn1c7w&t=1460s

But there were some big caveats.

It dries out very quickly on one's nib

My big surprise was how extremely quickly the ink dried on my nib, producing a delay until the ink is flowing and a hard start after just a short time out in the air without ink flowing. People do talk about this online, now that I've gone looking for it, but I wasn't aware of it when getting the ink, and I doubt I'd have gotten it if I'd known about this going into it. One can't just stop and think for very long without needing to start writing to keep the ink flowing. For me, this is frustrating, and really kills the appeal of the ink for me. None of my other inks do this.

One really needs ink-resistant paper to see sheen

Another thing that I hadn't anticipated


not having played around with inks with a lot of sheen prior to this


is that one really needs ink-resistant paper to see the sheen. On ordinary copy paper, it just looks like a blue ink. I knew that there would be a difference, but not that there would be no sheen. On an inexpensive composition notebook I've had sitting around for probably thirty years in my desk, it looks all right, if not quite as shiny as on Iroful paper.

This probably isn't a huge surprise to people who have used inks with sheen, and it's not going to be specific to this particular sheening ink. But I'd expected some sheen to still be visible on more absorbent paper, and it isn't.

It tends to smear and get on things

In the above video, Brian Goulet does mention this and how the ink is infamous for doing this


which I find puzzling, given how quickly it seems to dry out on the nib. So I was expecting to see this. But I still managed to get smearing and blue blotches on my hands multiple times, despite being careful. I haven't seen anything like this with the other inks I've used (though I don't have a huge collection, admittedly).

Other

It has a reputation for staining clear pens. I haven't tried cleaning it out after exhausting my current fill, so no first-hand experience with this, but I thought that I'd also mention this, in case someone runs across this post when considering the ink.

Summary

The ink is pretty, if one wants something with a lot of sheen. I don't dispute that. But it really is a pain in the neck to use.

I don't know of a good "Nitrogen alternative" that performs better, but I have to say that I wouldn't recommend it to anyone unless they are aware of what they are getting into.

 

Not sure what's going on, but for at least today and yesterday, I've seen a fairly high rate of server errors when attempting to load a number of different sorts of pages. I've seen this happen with attempting to view a post (including on communities that are not locally hosted), and attempting to view user pages.

As far as I can tell, if one keeps reloading, one eventually gets through, if you're hitting this. No idea as to cause


all I see is:

Error!

There was an error on the server. Try refreshing your browser. If that doesn't work, come back at a later time. If the problem persists, you can seek help in the Lemmy support community or Lemmy Matrix room.

Sorry I can't provide any additional information, but I can't think of much other information.

An example page:

https://lemmy.today/post/55800972

This successfully showed up on, I believe, my sixth reload. The seventh reload was an error again (so it's not a "it works once and then keeps working" problem for a given page). I've seen it on various networks on my end, so I'm pretty sure that I'm not a factor.

https://lestat.org/ doesn't show errors, so whatever it is, it's not tripping their error detector.

view more: next ›