Ruben Veidt
@RubenVeidt
Philippians 4:13 , 19 , building a gui framework and a image editor
i'm writing my own gui framework in c++ and rewriting my image editor using it, which is going good so far, i wanted to move from swiftui, qt, tauri, electron, react native, and flutter so i can use metal and directx gpu apis on macos and windows as much as possible,so i think…
Half yearly projects dump. Here are the top 10 projects I have built/building in 6 months of span. Not my best work and not perfect but still dumping them here, critics are welcome
1/ What is Gradient Descent (GD)? GD is an optimization algorithm. It’s used to find the best parameters (weights) for a model by reducing its prediction error, step by step. rather than jumping straight to a solution, it slowly walks toward the one that gives the least error.
ok so im starting rust from zero. i will try to document my takeways here for a few weeks! day 1 of learning rust (tbh had started yesterday) read about- >what rust is and why it exists (speed, safety, no GC) > installing rust, using cargo, writing your first "hello…
Fall in love? Nigga I can't even asleep My sleep paralysis demon keeps me awake so I can comprehend the manmade horror of cmake not able to find the libs in linux
who ever wrote doxygen, they deserve nobel prize , fucking writing docs is more complicated than writing the xml for the machine readable api definition , wtf is machine readable api definition, read my deez nuts
Started learning Scikit-learn a few days back. Honestly, it feels great to run the models and experiment with different parameters for the best results. Learning from - Ryan & Matt Data Science. Also, list of all that I have learned till now attached below.
tldr : rawdog vulkan and lose your mental health in the process You start with opengl, it feels peak. you set up a buffer with your vertex data, call glBufferData(), write a simple shader, and call glDrawArrays(), a triangle shows. the driver does almost everything for you, it…
postman-mcp is currently at #9 thanks to everyone who upvoted and commented. There are still 3 days left, so let’s aim for the top 5. If you haven’t yet, please upvote postman-mcp on peerlist.io. If you’ve already upvoted, repost and may your code always run on the…
We're #15 on @Peerlist. Can we make it to atleast top 10? Go and upvote asap!
The main account @AdityaMandal_ is suspended for a week So I'll be posting some stuff here till then (not really)👀
All types in Rust have a variance 🧵(1/n) What is variance? It tells what types are subtypes of other types and when a subtype can be used in place of a super type (vice versa) There are 3 kinds of variance in Rust 1) covariant 2) invariant 3) contravariant
Interior Mutability in Rust Types that let u mutate a value through shared reference These come in 2 categories: 1) Types that let u get a mutable reference through a shared reference 2) Types that let you replace a value given only a shared reference
dev log: > understood perceptron trick in logistic regression with both step function and sigmoid function > understood how maximum likelihood helps perceptron to get similar results as scikit-learn > understood cross-entropy will make a thread about this in detail tmr.
dev log: > completed Gradient Descent concept and math for 2D and n-D data > understood Batch Gradient Descent > will do 1 project on it and move to the next algorithm > Gradient Descent is completed.
sicp >>>> sicp javascript edition >>>>>>>>>>>>> sicp python edition we ball with sicp's scheme
c++ interop with other language even itself is either goated or nightmare there is no stable application binary interface (abi), the c++ standard explicitly does not have an abi like it does it for features, leaving it to compiler implementation, each compiler like msvc, gcc,…
c++26 is becoming more like research paper than a coding language, and after smart pointers we are getting the greatest addition that is compile time reflection we balling every nigga out there
Working on APIs and constantly switching between your AI assistant and Postman? There's a better way. I built Postman MCP, an open source bridge that lets you manage your entire Postman workspace through natural language. - create collections - add/edit requests - organize…
you start with c++, but learn raw new and delete is not that good, so you adopt raii, now std::unique_ptr and std::vector is your go to now then you use a profiler and test a performance critical loop and it shows it is slow not because of the algorithm, but memory access, your…
Came at 9th place on Quiz round of Superdevs But I performed terribly in the coding round @kirat_tw bhaiya please select me I won't disappoint 😭🙏🏻
for the most part, directx 11 is a very good api where it handles a lot for you, so you dont need to write too much boilerplate, especially with the directx tool kit, and direct2d is just peak for performance over quartz2d, even though quartz2d is fucking peak for quality, i…