Comments on: An open source StackOverflow clone by a n00b web dev http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/ Stuff Ron Gross Finds Interesting Sun, 02 Aug 2015 11:03:35 +0000 hourly 1 https://wordpress.org/?v=4.5.3 By: vietgeek http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2948 Fri, 21 Jan 2011 14:29:02 +0000 http://v1.ripper234.com/?p=1232#comment-2948 http://vietgeek.somee.com, stackoverflow clone with asp.net mvc3

]]>
By: ripper234 http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2204 Wed, 19 May 2010 19:00:25 +0000 http://v1.ripper234.com/?p=1232#comment-2204 @Bruce – take a look at OSQA and Shapado, both of which are under active development. I strongly think that anyone that wishes to build a Q&A platform should join forces with one of them.

]]>
By: Bruce http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2203 Wed, 19 May 2010 14:31:38 +0000 http://v1.ripper234.com/?p=1232#comment-2203 Hello,
Nice article, I have tried to do exactly the same thing few months ago with a goal to build some kind of open source stack over flow, which support multiple languages ( since I want to build one for developers in my country). I got to the point of implementing comments, points and badges ( used mysql and hibernate for my data access as well), then the project start to gather dust until now. I always looks for some one to work with on the project, and will be happy to join in if you want more development on this.
THanks

]]>
By: Tuan http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2093 Wed, 10 Mar 2010 13:29:22 +0000 http://v1.ripper234.com/?p=1232#comment-2093 Hello,
Nice article, I have tried to do exactly the same thing few months ago with a goal to build some kind of open source stack over flow, which support multiple languages ( since I want to build one for developers in my country). I got to the point of implementing comments, points and badges ( used mysql and hibernate for my data access as well), then the project start to gather dust until now. I always looks for some one to work with on the project, and will be happy to join in if you want more development on this.
THanks

]]>
By: Shani Raba http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2071 Sat, 20 Feb 2010 07:33:06 +0000 http://v1.ripper234.com/?p=1232#comment-2071 wow, amazing.

]]>
By: ripper234 http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2066 Mon, 15 Feb 2010 19:14:56 +0000 http://v1.ripper234.com/?p=1232#comment-2066 @Ken – R# –> Property To Method, done – thanks for the comment.

]]>
By: Ken Egozi http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2065 Mon, 15 Feb 2010 11:25:07 +0000 http://v1.ripper234.com/?p=1232#comment-2065 @Ron: super-cool.
as for “code review”, looking at the UserAwareController, I’d have made protected User CurrentUser a method (GetCurrentUser()) as this is not a Property of the controller, and also to denote that we might go out of process to get it

@Tomer: Filters in MS MVC is also new to me. Good to see that they progress nicely

@Eli: Calling something else from what you like “the Borg” is … borg-ish. I believe in options, and the new MVC stack (along with the older MonoRail and newer FubuMVC) are very good options if you want to kee in C# land, as Py/DJango is great if you like the Python ecosystem
options and choices, that’s the thing.

]]>
By: ripper234 http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2064 Mon, 15 Feb 2010 07:32:38 +0000 http://v1.ripper234.com/?p=1232#comment-2064 @Tomer – I wasn’t aware of the existence of filters. I’ll have to try it out, it might be indeed an easier solution.

@Eli – I am quite comfortable with most of the .Net ecosystem, and part of the purpose of this exercise was to deepen my understanding of some parts of it that were in the dark until now. Learning other languages is good, but deeper knowledge of one’s “chosen tool of the trade” is essential.

]]>
By: Eli http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2061 Sun, 14 Feb 2010 17:13:09 +0000 http://v1.ripper234.com/?p=1232#comment-2061 Nice post, Ron, well done.

It’s a shame you didn’t use the opportunity to practice a decent language & web-app stack like Python/Django, instead of keeping with the Borg 🙂

]]>
By: Tomer Gabel http://v1.ripper234.com/p/open-source-stackoverflow-clone-by-a-n00b-webdev/comment-page-1/#comment-2060 Sun, 14 Feb 2010 06:59:35 +0000 http://v1.ripper234.com/?p=1232#comment-2060 First off, wicked cool – I never did get off my ass and learn web development, and it’s a definite hindrance.
Re UserAwareController, isn’t it easier to implement the user authentication logic as a filter which pre-handles authentication and places the user token in the request context?

]]>