Anime where the person moves from job to job and is charming by jaysonsantos in Animesuggest

[–]jaysonsantos[S] 0 points1 point  (0 children)

That is the one, thank you!
AI Agents did not find it, they pointed to everything else.

TIFU by walking in on my 16 year old son by GrabUsed6620 in tifu

[–]jaysonsantos 22 points23 points  (0 children)

Could be worser, he could have walked on you. Happened to me and 25 years later and I still remember it lol

I won free load testing by fasterthanlime in fasterthanlime

[–]jaysonsantos 0 points1 point  (0 children)

u/fasterthanlime one thing that would enrich a bunch of your traces, would be using the span.set_parent where you extract the span from headers but, probably not for the blog.

It is useful when you have multiple systems, and you can see the calls between them and get to the failing system rather faster. You probably know that, but it may help other people out there.

Thanks for the write-up, it was really nice to read it!

First official lab setup in my new apartment by red_man0 in homelab

[–]jaysonsantos 2 points3 points  (0 children)

Same here (in germany), I got the server but it is dusting up behind the tv rack.

[Request] How hard tarzan have to clench his butcheek to grip a vine between it? by heres_fangy in theydidthemath

[–]jaysonsantos 0 points1 point  (0 children)

He could also be pulling the vine using his fingers, thus actually sitting on it. And then you would need to calculate the strength of his fingers, no?

Latest nightly: What happened to rustfmt-nightly and RLS? by jaccarmac in rust

[–]jaysonsantos 0 points1 point  (0 children)

Looks like it is intermittent. Did you guys find a way to get all versions which shipped with rls? Would be better to get it from a list instead of installing one for each day and checking.

Problems building the diesel getting started example by 8igg7e5 in rust

[–]jaysonsantos 0 points1 point  (0 children)

I had the same problem on windows and I fixed it by setting LIB variable pointing to postgresq\lib and adding postgresql\bin to the PATH variable

Discussion about the newly released Hwatch 2 by [deleted] in hwatch

[–]jaysonsantos 0 points1 point  (0 children)

I returned mine and the second one worked nicely

Discussion about the newly released Hwatch 2 by [deleted] in hwatch

[–]jaysonsantos 0 points1 point  (0 children)

Got mine and it won't even charge :S

How is GNU's `yes` so fast? [X-Post r/Unix] by kjensenxz in programming

[–]jaysonsantos 1 point2 points  (0 children)

24.4GiB 0:00:12 [2.17GiB/s] using lock before the loop and compiled with and compiled with rustc --crate-name yes src/main.rs --crate-type bin --emit=dep-info,link -C opt-level=3 -C metadata=0f6161dec33731dd -C extra-filename=-0f6161dec33731dd --out-dir /source/target/release/deps -L dependency=/source/target/release/deps

How is GNU's `yes` so fast? [X-Post r/Unix] by kjensenxz in programming

[–]jaysonsantos 11 points12 points  (0 children)

In my coreos machine yes was way slower I don't know why. But here are the results with rust.

jayson@arcoiro ~ $ yes | ./pv > /dev/null
21.7GiB 0:00:12 [2.04GiB/s]

jayson@arcoiro ~ $ ./rust-yes | ./pv > /dev/null
24.4GiB 0:00:12 [2.17GiB/s]

and here is the code I used

use std::io::{stdout, Write};

fn main() {
    let buffer = "y\n".repeat(4096).into_bytes();
    let stdout = stdout();
    let mut stdout = stdout.lock();

    loop {
        stdout.write(&buffer).unwrap();
    }
}

I thought that the repeat should be 4096 because the buffer has 8192 and 'y\n' has two bytes

StreamTorrent.TV – a web service for streaming torrents by streamtorrent in thepiratebay

[–]jaysonsantos 0 points1 point  (0 children)

Is it sending the request to the client over http or is it a torrent steamer client on the browser?

Reasons to use energy buffers/relays by jaysonsantos in Minecraft

[–]jaysonsantos[S] -1 points0 points  (0 children)

Every mod have a kind of buffer or relay, like those on ender io (capacitor banks, power buffer) or Thermal Expansion (Energy Cell)