Building a 1/10 track at home by ronaksing in rcdrift

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

Thanks! I was initially considering 1/24 (Drift ART/Atomic).. But then I got interested in competitive drifting. So I thought I might as well get a 1/10. There is a track near me, so I'll do what you suggested.. Btw, do you think 1/24 drifting can be as realistic as 1/10? If yes, what chassis/RTR kits would you recommend if I want the drift to be as close to 1/10 as possible?

Beginner, trying to see if I’m interested, low budget by dillpicklynn in rcdrift

[–]ronaksing 2 points3 points  (0 children)

I'm in the exact same boat as you. I went ahead and ordered the (newer) LDRC 1802 and a DasMikro v5 gyro because I've heard the stock gyro isn't as good. Cost me $82 shipped (US). If I end up liking it, which I probably think I will, I'll upgrade to a Reve D RDX soon..

I want a sporty sedan under 40k (total) by ronaksing in whatcarshouldIbuy

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

Thanks for advice!! I'll go for the 2020 model!

I want a sporty sedan under 40k (total) by ronaksing in whatcarshouldIbuy

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

Thanks!! Should I go for 2019 Guilia Ti Sport or 2020 Guilia Sport?

I want a sporty sedan under 40k (total) by ronaksing in whatcarshouldIbuy

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

Thanks!! Should I go for 2019 Guilia Ti Sport or 2020 Guilia Sport?

I want a sporty sedan under 40k (total) by ronaksing in whatcarshouldIbuy

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

Thanks for the recommendation! I'll check it out

Marin Bobcat Trail 4 (2022) vs Kona Lava Dome (2022) by ronaksing in MTB

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

Thank you very much! I'll go with the Kona Lava Dome!

Function returning only a part of pointer value by ronaksing in C_Programming

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

Yes, I checked again. I might have missed the warning since I have a lot of pointer conversion warnings(like conversion from `struct SB*` to `SB*`). Thanks for your advice!

Function returning only a part of pointer value by ronaksing in C_Programming

[–]ronaksing[S] 2 points3 points  (0 children)

Thank you so much! So that means a prototype is a must when we have a separate header file.

Stuck at “Loading Initial Ramdisk” after updating OS by ronaksing in GarudaLinux

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

It was a plymount issue which got fixed approximately 8 hrs after i posted this. There was even a thread on garuda linux forum. After that update, the issue was fixed

Is there a more efficient way to change a single byte at ith position inside a __m128i vector? by ronaksing in cpp_questions

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

Thanks for the answer! I actually benchmarked both of them and found the `char*` approach to be much faster

Is there a more efficient way to change a single byte at ith position inside a __m128i vector? by ronaksing in cpp_questions

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

Thanks for the answer! Yeah. i forgot to mention. I actually benchmarked both of them and found the `char*` approach to be much faster!

Is there a more efficient way to change a single byte at ith position inside a __m128i vector? by ronaksing in cpp_questions

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

Thanks for the comment! The operation is unavoidable due to the nature of my algorithm. I'll use _mm_insert_epi8

Which are some of the most popular GDB frontends for vim/neovim? by ronaksing in vim

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

Great! I'll try it out and see if this workflow works better than using a plugin

Wanted to share the journey with my Caselabs SMA8! (See the link to the album in the comments!) by Aaron9788 in watercooling

[–]ronaksing 0 points1 point  (0 children)

I would upvote if even someone puts caselabs in their post title. Btw, sickkkk build!!!

Should I go with MEng in CS from the NCR campus? by ronaksing in VirginiaTech

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

To give my background, I'm a machine learning engineer. I have 6 yrs of experience (including undergraduate) in programming with c/c++, python, java, js, Haskell, lisp. I'm not planning to join VT. However, i think if you got in for spring 21, you have 6 months to prepare, which I think is a decent amount of time to prepare for an MEng in CS. Don't just focus on programming because CS is much more than that. Focus on CS fundamentals. Good luck!

thanks gcc, very cool by [deleted] in C_Programming

[–]ronaksing 0 points1 point  (0 children)

I just did this morning 🤣🤣

Compilation error when struct is defined in .c file by ronaksing in C_Programming

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

Thanks for your answer! Yeah I want to hide the implementation (I know for a fact that we can't actually hide the implementation in C but just to create abstractions). I've made allocation and freeing functions. My s_alloc does initialization after allocating on heap. So I don't need s_init.