wget http://code.google.com/soc/2008/soc.gz
tar xvzf soc.gz
cd soc
./configure && make && make install
#!/usr/bin/ruby
class SummerofCode
attr_accessor :words
def initialize(words = "Happy")
@words = words
end
def wellcome
if @words.nil?
puts "..."
elsif @words.respond_to?("each")
@words.each do |word|
puts " #{word}"
end
else
puts " #{@words}"
end
end
end
if __FILE__ == $0
soc = SummerofCode.new
soc.wellcome
soc.words = "Thanks OSVDB"
soc.wellcome
soc.words = ["Wellcome", "Google", "Summer of Code","2008"]
soc.wellcome
end
ruby soc.rb
Happy
Thanks OSVDB
Wellcome
Google
Summer of Code
2008
...
...
rails patch_management_portal
These last two months were really exciting:
Researching, reading, writing, talking with mentors, reviewing and reviewing my applications, hanging out in the Gsoc IRC channel, nervous, anxious, refreshing the Gsoc page every minute and finally waiting for the final word. ¡Great experience! But, this just starts.
THANKS TO GOOGLE, OSVDB, and folks from the open source community who encouraged, adviced and guided me to participate in this Summer of Code.
I am going to work and code hard to make the best Open Source “Patch Management Software” and give it free (Like in Freedom) to the Information Security World and of course to the Open Source Vulnerability Database.
I dedicate all this effort to my wonderful country Peru and to the women who trust 100% at me: My four wifes: Maria, Nadia, Maritza and Celeste.
WE CAN DO IT
Patch Management Portal at Google










Congratulations, this three months are going to be a great experience for you. Don’t forget that you need to work hard AND enjoy doing it, otherwise it would be like any other job
[...] the rest here: Wellcome Google Summer of Code « Imaginemos un mundo libre [...]