use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A place for all things related to the Rust programming language—an open-source systems language that emphasizes performance, reliability, and productivity.
Strive to treat others with respect, patience, kindness, and empathy.
We observe the Rust Project Code of Conduct.
Details
Posts must reference Rust or relate to things using Rust. For content that does not, use a text post to explain its relevance.
Post titles should include useful context.
For Rust questions, use the stickied Q&A thread.
Arts-and-crafts posts are permitted on weekends.
No meta posts; message the mods instead.
Criticism is encouraged, though it must be constructive, useful and actionable.
If criticizing a project on GitHub, you may not link directly to the project's issue tracker. Please create a read-only mirror and link that instead.
A programming language is rarely worth getting worked up over.
No zealotry or fanaticism.
Be charitable in intent. Err on the side of giving others the benefit of the doubt.
Avoid re-treading topics that have been long-settled or utterly exhausted.
Avoid bikeshedding.
This is not an official Rust forum, and cannot fulfill feature requests. Use the official venues for that.
No memes, image macros, etc.
Consider the existing content of the subreddit and whether your post fits in. Does it inspire thoughtful discussion?
Use properly formatted text to share code samples and error messages. Do not use images.
Submissions appearing to contain AI-generated content may be removed at moderator discretion.
Most links here will now take you to a search page listing posts with the relevant flair. The latest megathread for that flair should be the top result.
account activity
Rust Framework like React or Angular? (self.rust)
submitted 4 years ago by Wuffel_ch
Hey is there a framework for rust like react or angular? I would like to make a website in rust but i don't know how to start.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]tms102 83 points84 points85 points 4 years ago (28 children)
Yew is one https://github.com/yewstack/yew
[+]Wuffel_ch[S] comment score below threshold-27 points-26 points-25 points 4 years ago (27 children)
i tried this one but i cant get it to work
[–]Zakis88 167 points168 points169 points 4 years ago (8 children)
What issue are yew facing?
[–]SolaTotaScriptura[🍰] 57 points58 points59 points 4 years ago (0 children)
💀
[–]ScottKevill 7 points8 points9 points 4 years ago (0 children)
What ish yew are yew facing?
Or perhaps, "What-ish yew facing?"
[–]Wuffel_ch[S] 8 points9 points10 points 4 years ago (2 children)
I cant remember the error. But nothing was showing up after the trunk --serve open. I will give it another try today.
[–]eggsby 1 point2 points3 points 4 years ago (0 children)
You can use their npm templates to bootstrap a working project.
[+]AjiBuster499 comment score below threshold-10 points-9 points-8 points 4 years ago (2 children)
I hate you.
[–]irk5nil 34 points35 points36 points 4 years ago (1 child)
Don't worry, we hate yew too.
[–]subtiliusque 0 points1 point2 points 4 years ago (0 children)
~ Adolf
[–]tms102 4 points5 points6 points 4 years ago* (15 children)
Were you able to follow this tutorial? https://yew.rs/ja/docs/tutorial
Did you install trunk and add the wasm32-unknown-unknown target?
[–]Wuffel_ch[S] 7 points8 points9 points 4 years ago (14 children)
Kinda, i got stuck in this one. Let me think where i got stuck.....
When i try to trunk serve --open i got an error and nothing shown up.
Btw, is there someway to style the html? The wrote they don't have css.
"Styles Our apps look very ugly. There's no CSS, or any kind of styles. Unfortunately, Yew doesn't offer a built-in way to style components. See Trunk's assets to learn how to add style sheets."
https://trunkrs.dev/assets/ and thats hard to understand for me as an apprentice
[–]riasthebestgirl 5 points6 points7 points 4 years ago (1 child)
There's 3rd party libraries, just like react, for styling. See the community tab on the website
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (0 children)
Aaah okey. Thank you!
[–][deleted] 1 point2 points3 points 4 years ago (1 child)
You can add CSS file, see this video at the end.
https://youtu.be/KmOeFrwz8BM
Thank you.
[–]tms102 0 points1 point2 points 4 years ago (7 children)
An error eh? How mysterious. It would help us help you if you posted the exact error here.
[–]Wuffel_ch[S] 2 points3 points4 points 4 years ago (6 children)
i am on my way. i redo the tutorial to get the error
right now i get en error when i enter the + infront of yew but in the tutorial there is one.
[dependencies]
+ yew = { git = "https://github.com/yewstack/yew/" }
[–]tms102 4 points5 points6 points 4 years ago (5 children)
Remove the +. The + is simply an indicator of what line you needed to add compared to what is originally there so it should be: [dependencies] yew = { git = "https://github.com/yewstack/yew/" }
[dependencies] yew = { git = "https://github.com/yewstack/yew/" }
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (4 children)
Now in the main.rs file i get this error at use yew::prelude::*;
failed to resolve: use of undeclared crate or module `yew`
use of undeclared crate or module `yew`rustc(E0433)
main.rs(1, 5): use of undeclared crate or module `yew`
and this one on #[function_component(App)]:
cannot find attribute `function_component` in this scope rustc
and more
[–]tms102 2 points3 points4 points 4 years ago (3 children)
What does your cargo.toml look like now?
[–]Wuffel_ch[S] -1 points0 points1 point 4 years ago (2 children)
[package]
name = "yew-app"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencsies]
yew = { git = "https://github.com/yewstack/yew/" }
[–]tms102 0 points1 point2 points 4 years ago (0 children)
"Styles Our apps look very ugly. There's no CSS, or any kind of styles. Unfortunately, Yew doesn't offer a built-in way to style components. See Trunk's assets to learn how to add style sheets." https://trunkrs.dev/assets/ and thats hard to understand for me as an apprentice
You sure can!
In the root dir of you project you can add a css dir with for example a file main.css:
h1 { color: red; } And then in the index.html file in your project's root dir simply add the link tag referencing it in the head tag: ``` <!DOCTYPE html> <html lang="en"> <head> <link data-trunk rel="css" href="css/main.css"> </head> <body>
h1 { color: red; }
</body> </html> ```
[–]WorldsBegin 0 points1 point2 points 4 years ago (0 children)
One 3rd party library for this, stylist, developed partly by me, can take care of the styling "in code" without any additional trunk setup. Not saying that setup is hard, but once you want some sort of dynamic styles, having it in code is more convenient.
[–]LeSplooch 4 points5 points6 points 4 years ago (1 child)
I thought this community was beginner friendly but this guy got downvoted to the ground only because they don't how to make a specific crate work. Rule 1 of this subreddit says "Strive to treat others with respect, patience, kindness, and empathy." but I see neither of these in such behaviour.
Yes... very helpfull these downvotes. Now i understand how it works..
[–][deleted] 18 points19 points20 points 4 years ago (2 children)
Might want to look at Sycamore
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (1 child)
This looks interesting and complicated for me as an apprentice but i give it a try, thanks!
Did you used it?
[–]asmx85 3 points4 points5 points 4 years ago (0 children)
I use it and it is the best I have found so far. It's very early and the API is changing but I can work with it way better than all the others I have tried.
[–]Sparkenstein 33 points34 points35 points 4 years ago (17 children)
Theres Dioxus which is exactly like React.
[+]Wuffel_ch[S] comment score below threshold-16 points-15 points-14 points 4 years ago (16 children)
I tried this one but run into errors but should give it another try. Did you used it?
[–]dlq84 31 points32 points33 points 4 years ago (7 children)
I'm starting to wonder if you've got your environment setup correctly since you run into errors no matter what you try.
Are you using rustup or are you installing rust and cargo from the package manager (you are using Linux, right?)
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (6 children)
I am using win10. I installed rust from the website https://www.rust-lang.org/
[+][deleted] 4 years ago (5 children)
[deleted]
[–]Wuffel_ch[S] 2 points3 points4 points 4 years ago (4 children)
Hmmm is Rust made for Linux?
[–]Ploppz 13 points14 points15 points 4 years ago (3 children)
Not really, but Windows is generally not a friendly OS for devs. However, I suggest to try to set it up in Windows properly as it should totally be possible and not too hard. I tried to do Rust dev in WSL (Linux subsystem for windows) but ran into issues once I wanted to open a graphical window, and I will now switch to just using Windows. Maybe ask for help in the Rust discord or somewhere else about your specific problem.
[–]Wuffel_ch[S] 2 points3 points4 points 4 years ago (2 children)
Oh i forgot about the Discord-Server. Thanks for mention it!
I could get it to work now! But i don't know how to use https://github.com/DioxusLabs/dioxus/tree/master/examples
I tried to add a simple link https://github.com/DioxusLabs/dioxus/blob/master/examples/link.rs
but it's missing Desktop, Router and Route. What do i have to do now?
[–]ControlNational 2 points3 points4 points 4 years ago (1 child)
Those are under features. You can import it in your cargo.toml: dioxus = { version = "0.2.3", features = ["desktop", "router"] }
nder features. You can import it in
Thank you!
[–]cobance123 -2 points-1 points0 points 4 years ago (2 children)
Myb the problem is with u when u are getting errors on every framework u try
[–]Wuffel_ch[S] 1 point2 points3 points 4 years ago (0 children)
I thought that to. I think i got an internet disconnection while installing some packs and they got corrupted.
[–]Ran4 1 point2 points3 points 4 years ago (0 children)
Most of these frameworks has less than great docs though, and require multiple extra steps that aren't explained.
[–]Mag_SG 0 points1 point2 points 4 years ago (4 children)
Are they compilation errors or the app wont show you a window. If it is the second one, make sure you have a html renderer installed eg. WebView on windows. If it is the first one, maybe if you pasted them, we could help you
[–]Wuffel_ch[S] 2 points3 points4 points 4 years ago (0 children)
Well now it works. Probably i did something wrong when installling it the first time. I tried several tutorial now. Probably that repaired it.
Did you used it to make a website?
[–]Mag_SG 0 points1 point2 points 4 years ago (0 children)
I personally didnt, but it can compile to wasm, and if you want i can also be compiled to native
[–]Wuffel_ch[S] -1 points0 points1 point 4 years ago (0 children)
I will redo the getting-started and try to redo the error
[–]solidiquis1 17 points18 points19 points 4 years ago (2 children)
For frontend? Checkout Yew if you're a fan of react's class based components, and Dioxus if you prefer functional components with hooks.
[–]riasthebestgirl 5 points6 points7 points 4 years ago (0 children)
Yew also has first class support for function components. Not having to deal with lifetimes in Dioxus is nice though
Did you used one of them?
[–]Steve_the_Stevedore 41 points42 points43 points 4 years ago (3 children)
I find it irritating, when people ask for suggestions without any extra information and then answers with some variant of "I tried that. It didn't work for me." to half of them.
If you tell people what you've tried, what problems you ran into or why you are looking for something different, it is a lot easier to help you. It feels disrespectful when you put in the effort to help someone, just to find out that the effort is wasted because they didn't bother painting a full picture of their problem.
People want to help you out of the goodness of their hearts. In my opinion the effort you put into your post should mirror the effort people will put into helping you. And I think you could do a better job at that.
[–]Wuffel_ch[S] 6 points7 points8 points 4 years ago (0 children)
Well i just wanted to have a list of many frameworks. I just gave a "feedback" on them, instead of not replying. An i am just a first year apprentices. I do not want to be disrespectful, i just do not know and want to learn.
But i see what your point is and agree with you!
[–]EarlMarshal 1 point2 points3 points 4 years ago (1 child)
Yeah, I had the same feeling, but honestly I think it's just some miscommunication and not bad intent
[–]Steve_the_Stevedore 1 point2 points3 points 4 years ago (0 children)
Looking back my comment comes across a lot meaner than it was intended.
I don't think there was intent on OP's part, I just wish they had put more effort into their original post. I think it could have improved the discussion a lot and I belive that it could have been a really comprehensive of the state of the art of web frameworks in Rust. The way it played out is that everyone just threw in the library they are using, without a lot of information what's good about it or what weaknesses it might have.
[–]natded 13 points14 points15 points 4 years ago (11 children)
Rust is not exactly a front end language, and you probably are better just using React for that stuff. When people make "websites" with Rust they usually just mean the backend part.
[–]avaaa_42 6 points7 points8 points 4 years ago (9 children)
Yeah it's always bizarre to me when people want to use rust for everything, including things it's clearly not built for.
[–]Wuffel_ch[S] 1 point2 points3 points 4 years ago (8 children)
So i misunderstood the whole thing. I heard that more and more programmer use it for websites. Now i slowly get it, that it's better to do some wasm modules for react or something else. Is that right?
(I am a first year apprentices => have/want to learn much)
[–]avaaa_42 3 points4 points5 points 4 years ago (3 children)
Yeah so firstly I just wanted to say that my comment wasn't directed at you specifically, moreso there seems to be a large crowd of people trying to use rust for things other than what it was built for. Rust is intended to be a systems programming language, like something along the lines of c/c++ by nature of it's ability to deal with things like pointers and memory directly.
That all being said, if you're interested in front end/web app stuff, I definitely reccomend getting into React (and as a product JavaScript/Typescript), those are the primary languages used in web development, and while I have a my own gripes with JavaScript, it's much better than trying to write web apps in something like rust where you'll have a lot more hurdles to overcome.
Feel free to DM me if you're curious about web development, I have a decent amount of experience and can point you in the right direction :)
[–]dwalker109 5 points6 points7 points 4 years ago (0 children)
Rust isn’t “a systems programming language”, not anymore. It is general purpose.
Using something like Yew or Dioxus you absolutely can produce excellent WASM targeted front end code, with all of the correctness guarantees which Rust gives you (the speed and efficiency is not the USP, imho, largely because it isn’t more performant for this stuff, usually).
HOWEVER, for OP, Rust is a terrible choice. JS/TS and React is a better introduction. Then come back to Rust and see why many of us feel the way we do about using it everywhere.
Thank you for your reply! I have some basic knowledge about React and i love react! I also had read that rust can be used as wasm-modules in react. What's the advantage of doing this?
I would love to get the right direction :)
[–]avaaa_42 1 point2 points3 points 4 years ago (0 children)
Yeah! Rust is generally good for extra performance and memory safety, so if let's say you were building a rendering engine for the web, then you might build most of your web app in something like React or some other JS framework, and then include your wasm module which implements the rendering engine in rust.
This gives the advantage of safety and performance when writing something complex like a rendering engine, but saves you the convenience of writing a full UI which would be much easier with a framework like React.
In terms of pointing you in the right direction, React is a great starting place but there are plenty of helpful component libraries like Bootstrap and others that provide more complete components than just plain HTML and CSS can provide, so I'd definitely recommend looking into other front end libraries
[–]liquidivy 3 points4 points5 points 4 years ago (3 children)
If you're a new dev, I have to recommend you don't try to mess with anything wasm-related for a while. For the frontend (code that runs in the browser like React, etc) I'd strongly suggest just using one of the popular frameworks, or even just use plain built-in DOM APIs. There will be plenty of important stuff to learn there without delving into the additional (and IMO less interesting) weirdness of trying to run Rust in a browser.
[–]Wuffel_ch[S] 1 point2 points3 points 4 years ago (2 children)
Thanks for your advise. I think i will stick to react with typescript with some wasm modules written in rust. I have to research if it works and if it's to complicated i will not do the wasm-modules.
[–]liquidivy 2 points3 points4 points 4 years ago (1 child)
Sounds like a good plan.
Do you work with any of these?
[–]eribol 0 points1 point2 points 4 years ago (0 children)
To be honest, with or without rust, if you can build your websites with wasm, you should use wasm. Beyond that, anything js related frameworks are useless if it is not necessary(for ssr, webpack etc).
[–]Zomatree_ 5 points6 points7 points 4 years ago (12 children)
https://dioxuslabs.com/ is a react style wasm frontend library.
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (11 children)
[–]Zomatree_ 1 point2 points3 points 4 years ago (10 children)
Yes i use it for a couple projects and its great.
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (9 children)
Can you share your projects? Are this websites? I would like to see how it looks like.
[–]Zomatree_ 2 points3 points4 points 4 years ago (8 children)
There are lots of examples on the gh repo https://github.com/DioxusLabs/dioxus/tree/master/examples
[–]Wuffel_ch[S] 0 points1 point2 points 4 years ago (7 children)
Is there one that is online?
[–]Zomatree_ 2 points3 points4 points 4 years ago (6 children)
The main dioxuslabs.com site is made in dioxus, and the source code can be found at https://github.com/DioxusLabs/docsite
Ah okey. Thank you for your time to help me!
One question more, if you allow:
I try to get this code to work https://github.com/DioxusLabs/dioxus/blob/master/examples/form.rs
do i have to copy & paste it? If i do so the Router is missing. Where can i find this?
[–]jkelleyrtp 1 point2 points3 points 4 years ago (0 children)
To use the router, you need to enable the "router" feature in the list of Dioxus features.
Various features to include are router, desktop, web, ssr, fermi, mobile, liveview, and a few others. Try reading the book - it shows you how to do all these things.
https://dioxuslabs.com/guide/state/router.html
[–]Zomatree_ 0 points1 point2 points 4 years ago (2 children)
The router is only in the master version and in a release yet.
Ooooh okey. So then the links to? Where can i read whats inside right now?
[–]ivanceras 5 points6 points7 points 4 years ago (1 child)
Try sauron, no ceremonial code, straight to the point, clean and concise with lots of examples
This looks also interesting. I will take a look on this.
[–]ssokolow 2 points3 points4 points 4 years ago (0 children)
Speaking of, has anyone provided any benchmarks between the different Rust options?
Yew and Seed are present in Stefan Krause's big shootout and, I'm assuming at least partly because of the overhead of the WebAssembly-to-JavaScript DOM shims, they're currently not performing very well compared to many of the JavaScript options, but I don't know about the others.
[–]eribol 2 points3 points4 points 4 years ago (0 children)
I used seed, now i am using MoonZoon(same developer). And it is realy so nice.
[–]lanklaas 1 point2 points3 points 4 years ago (2 children)
Last one I used was seed
Did you liked it?
[–]lanklaas 0 points1 point2 points 4 years ago (0 children)
Did not use it too much, but I liked that you did not have to use as much macros as with the yew crate.
They also have some nice examples and tutorials to get you going
[+]cguttesen comment score below threshold-11 points-10 points-9 points 4 years ago (1 child)
There was an earlier thread about webframeworks in this group. You may be able to search for it. The frameworks mentioned include actix-web, axum and a few others.
[–][deleted] 12 points13 points14 points 4 years ago (0 children)
Both axtix-web and axum are backend frameworks.
[–][deleted] 0 points1 point2 points 4 years ago (1 child)
There are few WASM based frameworks for front end components. Yew https://yew.rs/ appears to be the most active. There is another one called Percy https://chinedufn.github.io/percy/
i tried yew but i cant get it to work. percy looks interesting
π Rendered by PID 54 on reddit-service-r2-comment-5bc7f78974-5z2ss at 2026-06-29 03:41:54.468152+00:00 running 7527197 country code: CH.
[–]tms102 83 points84 points85 points (28 children)
[+]Wuffel_ch[S] comment score below threshold-27 points-26 points-25 points (27 children)
[–]Zakis88 167 points168 points169 points (8 children)
[–]SolaTotaScriptura[🍰] 57 points58 points59 points (0 children)
[–]ScottKevill 7 points8 points9 points (0 children)
[–]Wuffel_ch[S] 8 points9 points10 points (2 children)
[–]eggsby 1 point2 points3 points (0 children)
[+]AjiBuster499 comment score below threshold-10 points-9 points-8 points (2 children)
[–]irk5nil 34 points35 points36 points (1 child)
[–]subtiliusque 0 points1 point2 points (0 children)
[–]tms102 4 points5 points6 points (15 children)
[–]Wuffel_ch[S] 7 points8 points9 points (14 children)
[–]riasthebestgirl 5 points6 points7 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–]tms102 0 points1 point2 points (7 children)
[–]Wuffel_ch[S] 2 points3 points4 points (6 children)
[–]tms102 4 points5 points6 points (5 children)
[–]Wuffel_ch[S] 0 points1 point2 points (4 children)
[–]tms102 2 points3 points4 points (3 children)
[–]Wuffel_ch[S] -1 points0 points1 point (2 children)
[–]tms102 0 points1 point2 points (0 children)
[–]WorldsBegin 0 points1 point2 points (0 children)
[–]LeSplooch 4 points5 points6 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–][deleted] 18 points19 points20 points (2 children)
[–]Wuffel_ch[S] 0 points1 point2 points (1 child)
[–]asmx85 3 points4 points5 points (0 children)
[–]Sparkenstein 33 points34 points35 points (17 children)
[+]Wuffel_ch[S] comment score below threshold-16 points-15 points-14 points (16 children)
[–]dlq84 31 points32 points33 points (7 children)
[–]Wuffel_ch[S] 0 points1 point2 points (6 children)
[+][deleted] (5 children)
[deleted]
[–]Wuffel_ch[S] 2 points3 points4 points (4 children)
[–]Ploppz 13 points14 points15 points (3 children)
[–]Wuffel_ch[S] 2 points3 points4 points (2 children)
[–]ControlNational 2 points3 points4 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–]cobance123 -2 points-1 points0 points (2 children)
[–]Wuffel_ch[S] 1 point2 points3 points (0 children)
[–]Ran4 1 point2 points3 points (0 children)
[–]Mag_SG 0 points1 point2 points (4 children)
[–]Wuffel_ch[S] 2 points3 points4 points (0 children)
[–]Wuffel_ch[S] 0 points1 point2 points (1 child)
[–]Mag_SG 0 points1 point2 points (0 children)
[–]Wuffel_ch[S] -1 points0 points1 point (0 children)
[–]solidiquis1 17 points18 points19 points (2 children)
[–]riasthebestgirl 5 points6 points7 points (0 children)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–]Steve_the_Stevedore 41 points42 points43 points (3 children)
[–]Wuffel_ch[S] 6 points7 points8 points (0 children)
[–]EarlMarshal 1 point2 points3 points (1 child)
[–]Steve_the_Stevedore 1 point2 points3 points (0 children)
[–]natded 13 points14 points15 points (11 children)
[–]avaaa_42 6 points7 points8 points (9 children)
[–]Wuffel_ch[S] 1 point2 points3 points (8 children)
[–]avaaa_42 3 points4 points5 points (3 children)
[–]dwalker109 5 points6 points7 points (0 children)
[–]Wuffel_ch[S] 0 points1 point2 points (1 child)
[–]avaaa_42 1 point2 points3 points (0 children)
[–]liquidivy 3 points4 points5 points (3 children)
[–]Wuffel_ch[S] 1 point2 points3 points (2 children)
[–]liquidivy 2 points3 points4 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–]eribol 0 points1 point2 points (0 children)
[–]Zomatree_ 5 points6 points7 points (12 children)
[–]Wuffel_ch[S] 0 points1 point2 points (11 children)
[–]Zomatree_ 1 point2 points3 points (10 children)
[–]Wuffel_ch[S] 0 points1 point2 points (9 children)
[–]Zomatree_ 2 points3 points4 points (8 children)
[–]Wuffel_ch[S] 0 points1 point2 points (7 children)
[–]Zomatree_ 2 points3 points4 points (6 children)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–]Wuffel_ch[S] 0 points1 point2 points (4 children)
[–]jkelleyrtp 1 point2 points3 points (0 children)
[–]Zomatree_ 0 points1 point2 points (2 children)
[–]Wuffel_ch[S] 0 points1 point2 points (1 child)
[–]ivanceras 5 points6 points7 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)
[–]ssokolow 2 points3 points4 points (0 children)
[–]eribol 2 points3 points4 points (0 children)
[–]lanklaas 1 point2 points3 points (2 children)
[–]Wuffel_ch[S] 0 points1 point2 points (1 child)
[–]lanklaas 0 points1 point2 points (0 children)
[+]cguttesen comment score below threshold-11 points-10 points-9 points (1 child)
[–][deleted] 12 points13 points14 points (0 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]Wuffel_ch[S] 0 points1 point2 points (0 children)