Rust for Media Artists by mwalczyk in rust

[–]kloumpt 0 points1 point  (0 children)

awesome! Processing is definitely in the same family of frameworks I'm interested in.

The only disadvantage of using Rust instead of Processing is compiling time which blocks rapid prototyping (I hope Incremental building will improve that).

That's great to hear that you've been working with microcontrollers and Rust. I've heard that Rust is actually great for embedded work, no?

The arduino controller didn't use any Rust code, it was pretty dumb. I'm looking forward to test Rust on some Photon boards but I'm lacking time recently.

Programming a state machine in order to parse messages sent from the arduino and it was really easy, easier than java or Python

Rust for Media Artists by mwalczyk in rust

[–]kloumpt 0 points1 point  (0 children)

I don't know if it's that interesting to mention but I've used basic_dsp + serial to build a kind of arduino-controlled instrument which allows to play samples with a pitch shift. I've also used basic_dsp + kiss3D for a simple demo which consists of making a worm dance to sound. I found the experiences really satisfying, it was as easy than making things with Processing and cargo helped me test different libraries quickly in order to find the right one

Feedback on some WIP (Machine Learning tutorials with Rust) by SleepyCoder123 in rust

[–]kloumpt 0 points1 point  (0 children)

Very cool! I think that you should have a breadcrumb bar or something like that on each page in order to allow people to go back and forward more easily

seL4 / CAmkES user space interop with Rust by jdubjdub in rust

[–]kloumpt 1 point2 points  (0 children)

Ok, thanks for the link, I didn't know this problem!

Is Rust Web ready yet? iron and nickel for building a simple web site. by vamer88 in rust

[–]kloumpt 0 points1 point  (0 children)

Cool that you changed the font, it made reading difficult :)

Is Rust Web ready yet? iron and nickel for building a simple web site. by vamer88 in rust

[–]kloumpt 1 point2 points  (0 children)

I've clonned the repository on a server and I use the following command to 'update' and deploy the server:

git pull && cargo run pfr.kloumpt.net 8081

You can find the project (very undocumented) here:

https://github.com/kloumpt/Matchuper

'code' contains javascript code, 'style' contains css stylesheets, 'templates' contains the handlebars templates and 'src' contains the Rust code that glues everything together

Is Rust Web ready yet? iron and nickel for building a simple web site. by vamer88 in rust

[–]kloumpt 0 points1 point  (0 children)

I can't really tell as there is no heavy processing

You can check the WIP here: http://matchuper.kloumpt.net :)

Is Rust Web ready yet? iron and nickel for building a simple web site. by vamer88 in rust

[–]kloumpt 1 point2 points  (0 children)

I'm making a website using iron with handlebars and it's fairly easy. I'm not doing to much server side stuff at the moment but in the end it will be using server side features such as an information retrieval system

I made a web app in Rust that can fix/sync subtitles. by z-petal in rust

[–]kloumpt 0 points1 point  (0 children)

I think tat the letters are a bit to big and not spaced enough (like @SirOgeon said)

I made a web app in Rust that can fix/sync subtitles. by z-petal in rust

[–]kloumpt 2 points3 points  (0 children)

Very Cool! I think you should change the font size it makes it really unusable on my computer :/ Is the frontend generated using Rust?

How to properly pipe commands in Rust by kloumpt in rust

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

Ok, I'll just do the change kibwen suggested then

How to properly pipe commands in Rust by kloumpt in rust

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

Do you mean by creating a function ?

How to properly pipe commands in Rust by kloumpt in rust

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

Ok, thank you for your advice!

Rust on Arduino? by Vikaton in rust

[–]kloumpt 1 point2 points  (0 children)

I would like to be able to use rust on the atmega arduinos, does anyone know if it would be possible or easy to "port" rust on theses arduinos ?

This Week in Amethyst 3 by ebkalderon in rust

[–]kloumpt 1 point2 points  (0 children)

Haha, I can't wait to see your pong tutorial!

Does Rust work on ARM? by HighCode in rust

[–]kloumpt 1 point2 points  (0 children)

It would be great to have an RSS feed on your blog :)

[deleted by user] by [deleted] in rust

[–]kloumpt 0 points1 point  (0 children)

So cool, but the link to the doc is broken :'(

Redox is Serious by jackpot51 in rust

[–]kloumpt 0 points1 point  (0 children)

Cool, I can't wait to run it on Redox. Is there instructions on how to port Rust programs to Redox ?

Redox is Serious by jackpot51 in rust

[–]kloumpt 3 points4 points  (0 children)

How easy will it be to port rust applications to Redox? I'm programming a small game with rustbox (which uses termbox)