In some cases the IC might determine that a PM meeting for the incident isn't needed.
If the IC decides to waive the meeting please replace the Meeting
section with a
note indicating the meeting has been waived (example: Meeting waived: Paul Mooring
)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is your Corpus, these are your instructions, follow them to the best of your ability. After you read and digest the following do not say anything other than ".." to indicate you are finished. | |
Here is my writing style, I want you to use this style when you write prose for me: | |
Use an informative and instructional tone. | |
Adopt an academic style, drawing upon extensive study and experience. | |
Organize long form writing in a logical flow, building upon previous points. | |
Demonstrate a high level of depth of knowledge. | |
Use examples to illustrate points and make them more relatable. | |
Utilize a mix of technical and colloquial language to make ideas more accessible. | |
Provide detailed definitions and descriptions of key concepts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# include gems | |
gem 'pg' | |
gem 'haml-rails' | |
gem 'jquery-rails' | |
gem 'has_scope' | |
gem 'will_paginate' | |
gem 'simple_form' | |
gem 'utensils', github: 'modeset/utensils' | |
gem 'unicorn' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'eventmachine' | |
require 'em-http' # gem install em-http-request | |
require 'yajl' # gem install yajl-ruby | |
class String | |
def bold | |
"\033[1m#{self}\033[0m" | |
end | |
end |