Merge pull request #889 from wkirschbaum/master
Add Team Unboxed Schrodingers
This commit is contained in:
27
Samples/reddit.rb
Normal file
27
Samples/reddit.rb
Normal file
@@ -0,0 +1,27 @@
|
||||
# Reddit is the front page of the internet.
|
||||
# It is a collection of interest-based communities.
|
||||
#
|
||||
# This is a collection of simple examples using ruby
|
||||
# and the reddit-kit gem to make simple reddit requests.
|
||||
#
|
||||
# For more information please visit:
|
||||
#
|
||||
# https://www.reddit.com/dev/api
|
||||
# https://github.com/samsymons/RedditKit.rb
|
||||
|
||||
require 'redditkit'
|
||||
|
||||
RedditKit.sign_in '<YOUR USERNAME>', '<YOUR PASSWORD>'
|
||||
|
||||
front_page_links = RedditKit.front_page
|
||||
front_page_links.each do |link|
|
||||
puts "#{link.author} : #{link.title} - #{link.score} (#{link.num_comments} comments)"
|
||||
end
|
||||
|
||||
cool_user = RedditKit.user 'joot78'
|
||||
puts "#{cool_user.name} is a mod on r/spiders"
|
||||
|
||||
results = RedditKit.search 'koding hackathon'
|
||||
results.each do |result|
|
||||
puts "r/#{result.subreddit} : #{result.title} (#{result.num_comments} comments)"
|
||||
end
|
||||
19
Teams/Unboxed Schrodingers/about.md
Normal file
19
Teams/Unboxed Schrodingers/about.md
Normal file
@@ -0,0 +1,19 @@
|
||||
This is our page
|
||||
================
|
||||
|
||||
We are The three Unboxed Schrodingers. Three enthusiastic developers comprised of two South Africans and a Brit.
|
||||
|
||||
About our team
|
||||
===========================
|
||||
|
||||
| Wilhelm | Andrew | Pawel
|
||||
|--- |--- |---
|
||||
|  |  |  |
|
||||
|
||||
We are a group of agile software developers that love learning while taking on an interesting challenge.
|
||||
|
||||
About our skills and what you are going to do?
|
||||
=======
|
||||
Our team has strong opinions about web accessibility, using technology to make the world a better place, and using good coding standards to make that happen. This year we plan on tackling the world of epidemiology by hoping to convince people around the world that small contributions can make a massive difference.
|
||||
|
||||
Between the three of us, we have plenty of years of professional development experience. Our team has a member on the core Ruby on Rails team, does frequent contributions to other open source projects, and love experimenting with different languages and programming related technologies.
|
||||
24
Teams/Unboxed Schrodingers/team.json
Normal file
24
Teams/Unboxed Schrodingers/team.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"teamName": "Unboxed Schrodingers",
|
||||
"members": [
|
||||
{
|
||||
"name": "Wilhelm Kirschbaum",
|
||||
"twitter": "wkirschbaum",
|
||||
"koding": "wkirschbaum",
|
||||
"location": "Cape Town, ZA",
|
||||
"lead": true
|
||||
},
|
||||
{
|
||||
"name": "Andrew White",
|
||||
"twitter": "pixeltrix",
|
||||
"koding": "pixeltrix",
|
||||
"location": "London, UK"
|
||||
},
|
||||
{
|
||||
"name": "Pawel Janiak",
|
||||
"twitter": "cynicalgrinch",
|
||||
"koding": "pawel2105",
|
||||
"location": "Johannesburg, ZA"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user