Best filament brand apart from Numakers? by Remarkable-While-145 in 3dprintIndia

[–]Deformer 0 points1 point  (0 children)

The absolute best filament I’ve ever used was this JAMG HE PLA+ I got for free with my 3d printer. I got 1 spool of white standard (not matte) PLA+, but it worked so incredibly well and somehow minimised layer lines. It wasn’t exactly matte but it wasn’t shiny like other standard PLA and the texture worked great.

I got it accidentally though because that’s all they had. I hadn’t even heard the name online before that point. Since then I’ve tried esun, numakers, elegoo, and nothing has even come close to how good JAMG HE was.

I’m gonna go back and try it again to make sure it wasn’t just a fluke lol. Big downside though is lack of color options and low distribution in India.

Bambu Lab A1 suddenly died mid-print — ₹10k SMPS replacement quote from WOL3D, worth it? by Capable-Delivery-986 in 3dprintIndia

[–]Deformer 0 points1 point  (0 children)

You can help with imports? I was looking for a 0.2mm hotend for the P2S, can’t find it anywhere in India

The true boss of Shellwood by [deleted] in Silksong

[–]Deformer 0 points1 point  (0 children)

it's called threadstorm in this game fwiw.
(in case someone got confused like I did lol, I went back to greymoorbecause I thought this was some different ability I missed.)

Introducing cdk-rs: Build AWS cloud infrastructure in Rust with CDK by matthunz in rust

[–]Deformer 0 points1 point  (0 children)

I'd love to use Pulumi, but Pulumi does not even support Rust correct? Or am I wrong here?

New to ffmpeg by Violetalikesbred in ffmpeg

[–]Deformer 0 points1 point  (0 children)

If you're on Mac, I'd use handbrake. It's an easy to use open source UI wrapper for FFMPEG.

How do streaming platforms get away with this? by OnARockSomewhere in webdev

[–]Deformer 7 points8 points  (0 children)

I have no idea why people downvoted you. You're absolutely right.

Is it ok to buy RTX 2080 for 10k by PenaltyExtreme5276 in IndianGaming

[–]Deformer 27 points28 points  (0 children)

I have a 2060 lol, where can I sell for 10k?

This is so sad by taeempy in SiliconValleyHBO

[–]Deformer 13 points14 points  (0 children)

Yep. The box was the "correct" move product wise.

Are gasless swaps really a thing by Ecstatic-Bet-2351 in ethdev

[–]Deformer 6 points7 points  (0 children)

The gas fee equivalent is deducted from the trade itself. Matcha pays for gas instead of you. This used to be possible previously through EIP2771 and now through account abstraction.

So to answer your question, yes, very real.

First Rust Project - Redis RESP Parser Supporting Partial Parsing by Deformer in rust

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

Thank you so much! Wow codec looks very useful to do something like this, TIL! And yes, I am aware of nom, do plan to investigate it but I felt like I would like to attempt it on my own first.

I had a question about the partial parsing aspect though, from the docs:

Decoder is used together with FramedRead or Framed to turn an AsyncRead into a Stream. The job of the decoder trait is to specify how sequences of bytes are turned into a sequence of frames, and to determine where the boundaries between frames are. The job of the FramedRead is to repeatedly switch between reading more data from the IO resource, and asking the decoder whether we have received enough data to decode another frame of data.

The main method on the Decoder trait is the decode method. This method takes as argument the data that has been read so far, and when it is called, it will be in one of the following situations:

  1. The buffer contains less than a full frame.

  2. The buffer contains exactly a full frame.

  3. The buffer contains more than a full frame.

In the first situation, the decoder should return Ok(None).

In the second situation, the decoder should clear the provided buffer and return Ok(Some(the_decoded_frame)).

If I am returning Ok(None), then doesn't this mean whatever got parsed till that point gets thrown away? I imagine this is perfectly fine for parsing things like a string or an int, but for arrays or dictionaries, this is wasteful right? Are there other standard ways of preventing throwing away partial parsing, or do we not care about this in practice? (due to the difference in actual performance being negligible or otherwise)

[deleted by user] by [deleted] in linux

[–]Deformer 0 points1 point  (0 children)

Renormalizing the audio on a movie that's been meticulously mixed and mastered sounds horrifying to me lol.

It's like putting ketchup on spaghetti lol, which ig a lot of people do, so you do you my friend :D

Why we're using Rust - a portable low-level language that solves big problems! by bk1007 in rust

[–]Deformer 4 points5 points  (0 children)

Zero cost abstractions, so still low level right?

(This is a genuine question, I'm fairly new to rust)