Open Source Developer Lab Looking For Board Members
A reader writes: "I noticed that the Open Source Development Lab is looking for nominations and commentary on the Community Nominations to the Board. They've got some of the usual suspects on there, but will also take other suggestions. The organization was profiled by Nick Petreley a while back as well."
look at how much reply this article has, this goes to show how much slashdot community cares about opensource, if it was linux/ms specific or written by john katz, we would have 500 replies by now instead of 20+. sigh.
seg
I am new to programming, so no flames please. Can something like this be ported to Perl? (I am trying to learn it.)
I have been reading a lot lately about the importance of "strong typing" and I suspect that this program (if it can be written in Perl at all) is defintely an example where that would be needed.
So, I guess what I am really asking is: Is this kind of program only able to be written well in something like C++ or Java?
(Besides that I have a feeling that using an object-oriented language (like Visual C++) would reduce the amount of code you would have to write (due to increased code re-use.))
Are there any serious programmers out there that can answer this question?
Thanks in advance!
Larry Augustin - President, CEO & Director, VA Linux Systems
Great, a guy that's currently on the recieving end of a shareholder lawsuit due to not playing by the rules when his company IPO'd.
Tim O'Reilly - President, O'reilly Associates
Isn't this the guy Bruce Perens described as the "biggest parasite in the open source community"? Why yes, I believe it is. This was part of why Bruce resigned from OSI and returned to the Free Software movement.
Eric Raymond - Author, The Cathedral and the Bazaar
Didn't this guy threaten to kill Bruce Perens? Yes, I believe he did. Question for you ESR, why isn't Open Source a trademark anymore? Is it because you couldn't work and play well with others (namely Bruce)?
Randy Terbush - Co-founder, Director & Treasurer, Apache Foundation; Founder & CTO, Covalent
Actually an OK guy by all accounts I've heard.
Bob Young - Chairman, Red Hat Software
I think Mae Ling Mak said it best: There's a bug in redhat and his name is Bob. The way Bob reacted after discovering that one of his employess had been sexually harassing Ms. Mak online was disgraceful. There needs to be a zero tolerance policy against sexual harassment in the workplace. I hope the guy involved never works again.
Wow, talk about choosing the lesser of several evils.
--Shoeboy
I wouldn't trust companies claiming to advocate open source when their coffers are full of patents and trademarks. Thats not to say that all of them are, but the big ones are sure to be like IBM, Hewllett Packard etc. etc.,
Upon seeing the box was too small, Schrodinger's Elephant breathed a sigh of relief.
No need for strong typing. You can do something like this in most modern high-level languages, although how easy it will be depends on the language. It's actually easier in languages with weak, or at least dynamic, typing, since you don't have to declare all those "this is an array of strings" variables.
Here's that pseudo-code translated into a working Python program:
# Program creates a very generic site title
' ,'User','PHB','Engineer','Guru','Wizard')i lder','Shack','Hangout','Project','Foundation','As sociation')
# or project title - "Open Source Development Lab"
# a perennial favourite.
from random import choice
PreWordArray = ('GNU','g','k','Linux','OSS','Open Source','Free Software')
MainWordArray = ('Developer','Development','Programmer','Designer
PostWordArray = ('Lab','Site','Homepage','.com','.net','.org','Bu
ProjectName = choice(PreWordArray) + choice(MainWordArray) + choice(PostWordArray)
print ProjectName
Python has often been compared to executable pseudo-code. Now you can see why.<wink>
I'm really excited to see some things starting to come about with this OSDL. Luckily, we're based out of Camas (30 minutes from the OSDL), so my company and I plan to be spending a lot of time with the OSDL (not to mention one of our employees is already enrolled in the university). So far I'm interested in the "Corporate Sponsor" option they have for $10,000, but I'm still waiting to tour the place and see what's going into it. We have a lot of open source apps and configurations that we'd like to test on some of the proposed 'big iron'. For example, I want to test out the new database clustering code that was checked into the PostgreSQL CVS a few weeks back. Maybe get a new IBM big iron in there and run a few dozen 'virtual linux's, with postgresql doing read only clustering, and then do some benchmarking. That would help us make the case for dropping some of the Oracle cluster technology for the open source solution.
Daniel
Are there only a dozen porogrammers in the open source world? I get the feeling that even this might be an exagereation. whats the point of a community if 99% of people are leeching of the other 1%?
PreWordArray is array of strings
P HB,Engineer,Guru,Wizard)a ngout,Project,Foundation,Association)
MainWordArray is array of strings
PostWordArray is array of strings
PreWordArray = (GNU,g,k,Linux,OSS,Open Source,Free Software)
MainWordArray =(Developer,Development,Programmer,Designer,User,
PostWordArray = (Lab,Site,Homepage,.com,.net,.org,Builder,Shack,H
ProjectName is string
ProjectName = PreWordArray.getRandom + MainWordArray.getRandom + PostWordArray.getRandom
print ProjectName
--
"Don't declare a revolution unless you are prepared to be guillotined." - Anon.
Classical Liberalism: All your base are belong to you.