Live data from Hacker News

Ask HN: Where to find co-developers for side projects?

news.ycombinator.com

31–40 of 48 posts

Re: Ask HN: Where to find co-developers for side projects?

#31

"I'm doing it only for fun and to learn new things." Vs "I don't want to spend whole summer learning javascript and responsive design, because it would feel more like a chore to me" Huh?

I was going to raise this point. Is it about building a webpage or about what the webpage will do? If OP doesn't want to learn how to make a webpage, perhaps OP shouldn't make a webpage.

Re: Ask HN: Where to find co-developers for side projects?

#32

Earlier quoted context omitted.

Well, I'm looking to build a modern and robust opensource anonymous imageboard software (most people here probably know about 4chan), as all the existing usable alternatives are written in PHP and the code is 10 years old and barely maintained. Yes, maybe I will try to do the front end by myself and also provide rest api on the side, if anyone was interested.

One bit of advice, don't go for React/Angular/front-end unless you actually need to or you actually want to. Whatever web framework you're using (probably some variation of Spring if you're using Java) should have built in templating which should be more than sufficient to build an MVP/Proof of concept imageboard. I doubt 4chan is running any kind of SPA either. Then if your project is successful or you want to stick…

This, 100%. Fancy Javascript frameworks are super-complicated, and are easy to misuse. Unless you spend the time learning the principles, all you're doing is needlessly introducing abstractions.

Re: Ask HN: Where to find co-developers for side projects?

#34
I am trying to write a new programming language. Language design is new to me and would really love a co-developer. If anybody is interested the language is at https://github.com/prettydiff/simple and the design is still at the very beginning.

Basic design goals:

less is more, holy war elimination, strong/strict references, no syntax overloading, blocks by reference, single paradigm, sub-types by assignment/extension instead of by generics, lexical scope instead of classes/inheritance

Re: Ask HN: Where to find co-developers for side projects?

#35

It would be very nice to have a platform where people can propose/ask for FLOSS projects and subscribe to them as potential contributor / tester / user. It could allow searching by keyword/tag/topic and voting.

This is the only understandable reason I can see that people would upvote thE parent topic. Other than that, the OP has provided no value proposition to his potential partner.

Re: Ask HN: Where to find co-developers for side projects?

#36
post #31

"I'm doing it only for fun and to learn new things." Vs "I don't want to spend whole summer learning javascript and responsive design, because it would feel more like a chore to me" Huh?

I was going to raise this point. Is it about building a webpage or about what the webpage will do? If OP doesn't want to learn how to make a webpage, perhaps OP shouldn't make a webpage.

I want to learn how to get others to make me a webpage!

A forward thinking individual and upper management material for sure!

Re: Ask HN: Where to find co-developers for side projects?

#37
Actually it would be nice to have a competence exchange website where volunteers could register and find matches. But instead of dating, this could be for developing.

Because the limitation of the "just do it yourself on your own" approach is that when looking for specific solutions I often stubble on a dozen of half-backed, dubiously maintained, side projects. And I can't keep from wondering what great things theses solos developers could have done had they worked together form the start.

Also a good example come to my mind, you might want to ask OpenStreetMap.org developers how did they gather and start what is a "recent" and huge FOSS success story with a large community behind it.

Re: Ask HN: Where to find co-developers for side projects?

#38

"I'm doing it only for fun and to learn new things." Vs "I don't want to spend whole summer learning javascript and responsive design, because it would feel more like a chore to me" Huh?

There's a difference between doing something in your free time for a month or two of the summer for fun and learning, vs making it your full time job all summer long.

Re: Ask HN: Where to find co-developers for side projects?

#39
I just googled these:

http://pushboard.net

http://builditwith.me

http://cofounderslab.com

http://doerhub.com

http://founder2be.com

http://founderdating.com

http://foundrs.com

http://startupweekend.org

http://techcofounder.com

http://venturestorm.com

http://waxidea.com

Re: Ask HN: Where to find co-developers for side projects?

#40

This might not be the answer you're looking for, but if you don't already have someone in mind, then you should probably build you side project on your own. Also, basic html and css is all it takes to build a webpage. (Well, technically you don't even need the CSS...) JavaScript is definately not required. Responsive CSS is a bit nicer to have to make the website mobile-friendly, but this is all you really need: * {m…

Thats a genius idea for making sure none of the elements goes our of viewport width. I always had this issue that a div has standard border padding, and width:100% pushes its right to out of viewport. Can't wait to try this. Just few genuine questions, as I am learning, specifically in making static fixed header bars for few of my fun projects. Does the meta tag in ur comment needs closure(>), or is it something I mi…

> I always had this issue that a div has standard border padding, and width:100% pushes its right to out of viewport.

You likely want `box-sizing: border-box`: https://www.paulirish.com/2012/box-sizing-border-box-ftw/

Post reply on HN