Any open sourced websites? [closed] - open-source

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have heard of desktop applications whose code has been open-sourced, but are there any websites whose code has been open-sourced? I don't think I have heard of any. If there are aren't any, are there any reasons why?
This will have the advantage of not having to wait for the web development team to include a new feature. Also, this would ensure that more eyes see the code, ensuring a lower bug count. Of course, hacking would be easy.

Pastebin: http://pastebin.com/
The wiki behind Wikipedia et al: http://www.mediawiki.org/wiki/MediaWiki
GrailsCrowd: http://grailscrowd.com/
Slashcode [slashdot engine]: http://www.slashcode.com/
The reason that not as many people do it is because it would be easy for someone to set up a complete clone of your website without making any useful changes. OK, that's strictly allowed with true 'open source' code, but it's not quite within the spirit of the thing (IMO) and if the site became even moderately popular there would be a lot of useless clones. The site would become essentially worthless.
Those are -websites- that are open source. There is a huge amount of web application software that is open source [some of it shitty]
WordPress
InkType
Joomla
osCommerce
ZenCart
Drupal

Check out reddit.com's source code here: http://code.reddit.com/. I do think there is a profit consideration when a site is built, for them to release their source code would allow copy-cat sites and dilute their market share.

PHP.net is open-source. Hell you can checkout a copy of their website if you want to.

Many answers have addressed the competitive aspect, but that really applies equally to all FOSS projects, web-based or not. The distinctive feature of web sites is that, by and large, the users of the software do not have access to the code in any form - source or binary - so the typical FOSS requirement that you make the source available to anyone who receives the binary becomes pretty much meaningless. I believe this to be the primary impediment to widespread use of FOSS licenses in conjunction with websites.
(There have been recent attempts to develop web-focused FOSS licenses which specifically address this issue, but none have really caught on yet.)

Isn't the code (slash) to slashdot open source?

Wikipedia/Mediawiki is open source on multiple levels. MediaWiki (the software which runs WikiPedia) is open source, and accepts contribumtions, and the content of WikiPedia is also open source and editable by everyone.
There's also LiveJournal (http://www.livejournal.com) which has been open source for years.

phpbb.org
django
joomla
dotnetnuke

SugarCRM
OSCommerce
DotNetNuke
Mambo
There's quite a bit of software that are open source.

All of the seaside-based systems on squeaksource.com

Related

Comprehensive List of Essential Software for General Developers on Mac and PC [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
This may seem like an odd request, but as a computer science student, I'm always running into apps that make doing a development task easier than the way I was doing it before. Unfortunately, I tend to discover these apps long after doing things the hard way for far too long. I'm only on mac, but I figured I'd include both Mac and PC for future reference (if I ever have both systems).
For me, a student of C++ programming, I'm currently religiously using just a few pieces of software on Mac:
XCODE - IDE
Atom - Text Editing, HTML, and a few other things
Cyberduck - SFTP into my school's Linux system.
Terminal - (Haven't tried iTerm2 yet or any other Terminal
alternative)
Go2Shell - quick folder navigation for Terminal
What other utilitarian apps do you guys find particularly helpful for you as developers? Feel free to mention any software you may use to help your workflow.
I hope this question isn't too broad of a topic for S.O. If so, please feel free to remove it.
Also I didn't know what tag to use for this topic, so if the mods need to move this thread to a more appropriate area, that would be great.
Well, your list does not look bad at all ;)
Most developers will have a basic set of tools such as:
An IDE (Integrated development environment,e.g. phpStorm, Aptana,etc..) - where you write your code.
Various Compilers (e.g. C\CPP compiler for a C\CPP developer, or a LESS compiler for a web developer, whatever you use in your daily work) - to compile your raw code\markup into an executable\usable format.
A Debugger - to debug your code.
A Local development stack (e.g. LAMP, used mainly by web developers) - to execute your code and see how it works, debug, etc..
A Dependency management tool - optional: if you have a big project with many dependencies.
A Version control system (such as Git, SVN, etc..) - to maintain your project as a proper code repository.
An FTP client (if you upload files to a server)
That is generally what you need to write software\applications, anything in addition to that is considered helpful but you don't really need it.
There are some fancy tools for lazy people, those tools can save you some time but the huge disadvantage is when you start to rely on those tools and then you stop understanding how things actually are constructed and work - which will make the maintaining of your software a nightmare.
The best thing is to know when to use "helper" tools, but not many of them, use them only if you have to, and do not get to the situation where you rely on them - because then if they have a bug or a mysterious flaw, you will be dead in the water until the next hotfix or patch comes out.
Good luck !

Looking for online space to collaborate but NOT open source [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have an applicaion, that can best be described 'loosly' as a scripting application, primarly designed for part time developers, engineers and sciences types with a VB.NET background (can theoretically do C#).
This has been a long three year hobby and I am about 95% complete. I am planning to make the applicaiton freely available for most (if not all) uses, but I do not want to open source it (at least right now).
I was looking for an online place to post and collaborate with some folks for feedback, to get some testing done and finalize the application (my wife wants me to be DONE with it). My searches online have revealed many spaces, but all seem to be open-source spaces that require release of the source code, or just aplace to post 'free' completed software. I am looking for the collaboration part.
Can anyone point me to a such a space that does not require providing the open source code (if it even exits)?
I think you can use most of the collaboration places without actually uploading any source to the repository.
I've seen a bunch of project on Google Code Hosting that have no source (usually its then on GitHub) and just use the Google Hosting for bug-tracking and collaboration.
I created a BitBucket account. Looks like it might work. Many of the sites require you to choose an open source license before you even create a space. BitBucket does not.

SourceForge-like site but not SourceForge [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
This may be off-topic, but I decided to ask it here anyway, because it's very related to programming.
I'm looking for a site which will host a free software project for free, offer SVN and Hg access, bug tracking &co, space for a blog...
Any tips?
Also, should this be community wiki?
Have a look at Kenai which is IMO very nice (especially if you like Jira) and offers Projects, User Profile, Code Hosting, Issue Tracking, Wiki, Forums, Email lists, Downloads, more....
Below a comparison with the "competition" (seems a bit inaccurate actually, Google Code does offer Hg):
alt text http://www.imagebanana.com/img/ikt4ytfr/screenshot_008.png
For more site and feature comparisons,
see the Wikipedia page Comparison of
open source software hosting
facilities.
Check it out.
google code?
Quotes from their website:
It provides a fast, reliable, and easy open source hosting service with the following features:
Instant project creation on any topic
Subversion and Mercurial code hosting with 2 gigabyte of storage space and download hosting support with 2 gigabytes of storage space
Integrated source code browsing and code review tools to make it easy to view code, review contributions, and maintain a high quality code base
An issue tracker and project wiki that are simple, yet flexible and powerful, and can adapt to any development process
Starring and update streams that make it easy to keep track of projects and developers that you care about
sounds exactly like your description.

What are the websites to look for open source projects to work on? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am currently working as a consultant but i found that i have not been doing coding for a very long time.
So i wonder if there are any other nice websites beside sourceforge.net which can allows me to do some coding.
Thanks
sourceforge.net - All sorts of open source software, from Linux to BSD to Windows.
codeplex.com - Mainly Microsoft technologies-focused. This is where you'll find more of the .NET open source stuff.
For general indexes to open source software, see freshmeat and Ohloh. The former is a classic index of open source software and the latter has statistics about the source code for each project, which might be handy if you want to judge how active a project is.
If you want to join easily, distributed revision control is nice. The big hosting sites for Mercurial (Bitbucket), Git (Github) and Bazaar (Launchpad) should give you plenty of projects to browse and, hopefully, contribute to :-)
OpenHatch (openhatch.org) is nifty (IMO) because:
The site provides a number of "bite size" bugs from Free Open Source Software (FOSS) projects.
There is a Map showing the registered users in your area, along with the langauges and projects they are involved in.
The site provides an email forwarding address with rotating "anti-spam salt" by which other contributors may reach out to contact you. (You may choose whether to use this, or provide an alternate means to contact you on the site.)
Also, there's Github and Google Code
Google Code.
IMO, much nicer than SourceForge.
How about Google Summer of Code?
If you're just looking for a small quick project, Clusterify.
Ohloh is an other good collection of open source projects.
It provide details, timeline and notes.
There's lots of under served open source sectors that you can give your extra time to.
You don't have to do what everyone else is doing, take for example, the loads of time wasting CMS projects out there, while there seems to be no proper OCR in Java, and Jira is a great issue tracking system, no doubt, but its not open source, Bugzilla sucks, don't say Mantis, and Eventum is written in PHP(I'm a Java fanatic)
The best source for open source projects is of course sourceforge.net, Google code, not so much.
We can not say that one website is better, it depends on the domain you work, so your best friend is well http://www.google.com with your keywords

Open Source login systems, what is good? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am starting a a new web development project and I am tired of coding login systems. This is the kind of thing that must have been done dozens of times before. I really want to use someone else's code, because it is easier than rolling my own, and it will likely be better. I prefer open source for all the usual reasons, but mostly I want the ability to change it if I don't like something and bugfixes are easier than designing a whole thing.
I just need a login system, something that manages the username/password stuff and user registration. I don't need a whole CMS.
I am already looking at openid.net, but What open source login systems have you worked with? What other login systems have you heard of?
OpenID works really well. Given the recent wave of adoptions, I think OpenID is the best bet. It is cross-platform and has libraries for all the major development platforms (php, python, perl, ruby, .net, java, c++). I have implemented it for DotNetNuke and found it was relatively painless.
OpenID is definitely the best solution and there are plennty of open source libraries for all kinds of languages out there. Hava look at openidenabled.com.
I don't know what technologies (language & platforms) you prefer or have as requirements, but we have implemented CAS at my workplace and it has worked pretty well.
CAS itself is implemented in Java, but as the frontpage says, it has client libraries and integrations to numerous other technologies and pltaforms.
I wound up going with mod_auth_openid. It is super simple and prevents unneeded complication at other levels. but the code is not perfect, and I may have to adjust it later.