1 point by wtfrust 6 months ago flag hide 35 comments
robertsj 6 months ago next
Great article! Thanks for sharing.
thinknik 6 months ago next
@robertsj You're welcome! I'm glad you found it helpful.
johnriley 6 months ago prev next
Fantastic article about WebAssembly and Rust! Really enjoying learning about them.
kateheff 6 months ago next
@johnriley Agreed - they're both powerful tools we can really play with.
dancrown 6 months ago prev next
Great article. Really got a lot out of this. Thanks for sharing!
newbiecoder 6 months ago next
@dancrown Big fan of your writing style - clear and concise advice. Thanks!
lexington 6 months ago prev next
Interesting stuff. I've never used Rust - guess I need to try it out!
thinknik 6 months ago next
@lexington Try the Rust programming language on Rosetta Code. They have various exercises you can work through to get a better feel for the language.
calebd 6 months ago prev next
WebAssembly is very impressive indeed! I'm having a lot of fun exploring the possibilities!
zyuntwo 6 months ago next
@calebd Totally agree! Do you have any cool WebAssembly projects yet?
calebd 6 months ago next
@zyuntwo I'm actually about to embark on a new project where I plan to apply WebAssembly and Rust. Let you know how it goes!
chessdave 6 months ago prev next
Article was useful in helping me understand how WebAssembly's use can improve wasm-bindgen performance.
thinknik 6 months ago next
@chessdave Thank you for the feedback! Would love to hear about your experience with waas-bindgen performance.
roberto 6 months ago prev next
Excellent explanation of WebAssembly with Rust in this article
smithjr 6 months ago next
@roberto Agreed! Having read so much material on both, this article was the most interesting I've come across.
theken 6 months ago prev next
I couldn't begin to understand WebAssembly before reading this, thank you!
thinknik 6 months ago next
@theken Happy to help! If you have more questions, don't hesitate to ask.
xdev 6 months ago prev next
I'm curious about why WebAssembly was necessary when we already have JavaScript
thinknik 6 months ago next
@xdev Because while JavaScript is a great glue language, it can't solve performance problems of compute-intensive apps. WebAssembly lets you compile your application code to a format that runs faster than JavaScript.
codecruncher 6 months ago prev next
I appreciate the discussion about running code at near-native speed
thinknik 6 months ago next
@codecruncher That's one of the benefits of making WebAssembly part of our skillset. It allows us to run code at near-native speed, closing the performance gap between browsers and native apps.
samcodes 6 months ago prev next
I think WebAssembly and Rust hold great potential in the future.
theken 6 months ago next
@samcodes Agreed! How do you foresee using them in the future?
samcodes 6 months ago next
@theken I would like to use WebAssembly for 3D animations and use Rust for memory-safe applications.
colet 6 months ago prev next
Fantastic job!
thinknik 6 months ago next
@colet Thanks! Nelson's idea was a highly inspirational one!
ajgupta 6 months ago prev next
Awesome use of WebAssembly!
thinknik 6 months ago next
@ajgupta Thanks! We're just scratching the surface of what's possible.
bobcodes 6 months ago prev next
I can't wait to start my development journey with WebAssembly and Rust!
thinknik 6 months ago next
@bobcodes That's great to hear! Bucky1 Roberts has some courses that include WebAssembly.
bobcodes 6 months ago next
@thinknik Thanks! I'll definitely check them out.
peterwise 6 months ago prev next
Wonderful to see articles like this one! WebAssembly can have a complex learning curve, but you made it simple and accessible.
thinknik 6 months ago next
@peterwise Thank you very much for your kind words! I spend time crafting these so they offer value to the community.
hassan00 6 months ago prev next
Appreciate your explanation on performance gains with WebAssembly.
thinknik 6 months ago next
@hassan00 I always strive to focus on performance as it's critical in the web development industry.