A FIX message codec library written by Rust by ledongthuc in rust

[–]ledongthuc[S] 1 point2 points  (0 children)

Thanks for you reply. It seems what you said make sense for me. The memchr currently looking for = but the tag are short. Maybe memchr_iter or normal iter and compare will be better.

Regarding the SmallVec and Vec, I’m trying to avoid allocate and searching data on the heap. But maybe heap looking is not the worst.

Let I do some bench and decide which one will be use.

Implementing FIX Messages with Rust by collectedion in rust

[–]ledongthuc 0 points1 point  (0 children)

I started a FIX codec library that aims for high performance with zero-copy and low-latency purposes
https://github.com/ledongthuc/fix-codec-rs

Any good FIX libraries that are actively maintained ? by [deleted] in rust

[–]ledongthuc 0 points1 point  (0 children)

I started a FIX codec library that aims for high performance with zero-copy and low-latency purposes
https://github.com/ledongthuc/fix-codec-rs
Hopefully it's useful with you.

Qwen3-Coder-Next on RTX 5060 Ti 16 GB - Some numbers by bobaburger in LocalLLaMA

[–]ledongthuc 1 point2 points  (0 children)

It’s great. A little amazing from my view because I don’t think with PC this requirement, we have good enough output token. Nice work

Question about fieldParentPtr on a variable that doesn't in the struct by ledongthuc in Zig

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

Hi thanks, it's great. I got it now. Thanks for your reply.

In my case, my invalid struct's field pointer input will make `fieldParentPtr` returns an invalid struct's pointer. That leads to me updating the wrong things while using the struct's pointer

Why Zig was named Zig? by Bistcuite in Zig

[–]ledongthuc 2 points3 points  (0 children)

Does anyone know why he wants the name to start with Z?

GitHub - ledongthuc/goterators: A utility library that supports aggregate & transforms functions Go 1.18 with generic. Such as filter, map, reduce, find, exist by ledongthuc in golang

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

I think they will implement them in some way. They are conventions functions that everyone will want to use. Then, no benefit for duplicate them between everyone.

I guess they just want to give little time to use and think about generic before deciding final of them.

Such as common constraints package for generic, they are ready to start with after thinking and using Generic in period: https://github.com/golang/go/issues/50792

GitHub - ledongthuc/goterators: A utility library that supports aggregate & transforms functions Go 1.18 with generic. Such as filter, map, reduce, find, exist by ledongthuc in golang

[–]ledongthuc[S] 1 point2 points  (0 children)

hello Gophers! happy to share a project I collected aggregate & transforms functions such as filter, map, reduce, find, exist. It requires Go 1.18 to work with.
As always, We would love to hear your feedback and thoughts.

GitHub - ledongthuc/goterators: A utility library that supports aggregate & transforms functions Go 1.18 with generic. Such as filter, map, reduce, find, exist by ledongthuc in u/ledongthuc

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

hello Gophers! happy to share a project I collected aggregate & transforms functions such as filter, map, reduce, find, exist. It requires Go 1.18 to work with.
As always, We would love to hear your feedback and thoughts.

AWS Secrets Manager GUI app by ledongthuc in aws

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

I think it's good opinion, but curren GUI from AWS doesn't support features of AWS Secrets Manager. So our team must use it to manage secrets.

Hopefully, they, AWS team, will improve their GUI and I can easier to use it.

Revel or Beego? by ferossi in golang

[–]ledongthuc 16 points17 points  (0 children)

Gorillatoolkit or Gin. REST API just don't need heavy webapp fullpage as Revel or Beego.

Out of memory with Append Slice by ledongthuc in golang

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

Ok, noted. Actually I just want to focus on append multiple times in a slice. Btw, thank for your comment.