Usage:
puts "What is your favourite colour?"
InteractivePrompt.call(%w(red green blue yellow purple orange))
Renders this:
My Presentation: http://rubykaigi.org/2017/presentations/jules2689.html
Presentation: http://rubykaigi.org/2017/presentations/0xColby.html
bundle add
command
bundle plugin
commandbundle
commands. For example we could add bundle bootsnap clear
for bootsnap cache resetting.[ | |
{ | |
"course_title": "Gamification", | |
"link": "https://www.coursera.org/courses/gamification", | |
"description": "Gamification is the application of game elements and digital game design techniques to non-game problems, such as business and social impact challenges. This course will teach you the mechanisms of gamification, why it has such tremendous potential, and how to use it effectively. For additional information on the concepts described in the course, you can purchase Professor Werbach's book For the Win: How Game Thinking Can Revolutionize Your Business in print or ebook format in several languages.", | |
"image": "https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://coursera.s3.amazonaws.com/topics/gamification/large-icon.png", | |
"price": "free", | |
"department": [ | |
"computer-science/design-and-product", | |
"business/marketing" |
# Original from http://snippets.dzone.com/posts/show/4468 by MichaelBoutros | |
# Forked from https://gist.github.com/ecleel/3dc89a753bac6a54bf8d170f63256f19 | |
# | |
# Optimized version which uses to_yaml for content creation and checks | |
# that models are ActiveRecord::Base models and not abstract class before trying to fetch | |
# them from database. | |
# | |
# Also supports nested resources and namespaces them correctly | |
# | |
# Tested in Rails 6.0.0 |
GitHub is the world's most popular place to host versioned code, but fails to surface meaningful data at an organization level.
GitHub organizes code into repositories, and further organizes it into owners.
This story may seem like a great way to capture information, but we're letting the majority of information fall through the cracks. Organizations, particularly Enterprises, don't organize their code like this. Repositories are used for a ton of reasons, all of which we fail to truly capture.
Dear DCS Undergrad Students,
Now that your courses have moved to an online format, we wanted to check in with you and let you know that we (the faculty and staff of the Department of Computer Science) are thinking of you, and hoping that you are finding ways to stay well while staying home, as Prime Minister Justin Trudeau encouraged us all to do.
We know that many of you have already left Toronto for home, or are planning to travel soon, and that some of you have made the decision to stay in Toronto even though your families are somewhere else. Regardless of where you are, we wish you well and hope you stay safe.
As we have all begun working from home, we recognize that this experience can be quite challenging and isolating for many of us, even if being at home is safer. We have been sharing tips with each other about how we plan to take care of ourselves in the coming weeks, and want to share some of our advice with you. Not all of these will feel right for everyone, but we hope you find some of them val
require "optparse" | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'octokit', '4.18.0' | |
gem 'cli-kit', '3.3.0' | |
end | |
args = { manager: nil, geekbot_schedule: "TODO", geekbot_token: "TODO", github_token: "TODO", repo: "TODO" } |