Skip to content
noisegirl edited this page Mar 15, 2013 · 91 revisions

Welcome to the Blazing Cloud wiki!

This is the general Blazing Cloud wiki which includes, but is not limited to, notes on the company web site. See bottom of this page for more info on GitHub wikis.

Can't find what you're looking for or have great intel and don't know where to put it? Let's Talk!

##General Information

##Professional Development

##Training Classes

##Projects

##Current Project Information

The following should be links to the filled in Project Template for the specified projects.

Development resources

Engineering Guidelines

##HR (Benefits, Travel/Expense Policies, etc,)

##IT

##Operations

##More info on using GitHub wikis 2011-06-03: Imported pages from http://blazingcloud-wiki.heroku.com here.

Wikis are git repos. You can clone by adding a .wiki extension. For example, to clone this wiki, you can: git clone [email protected]:blazingcloud/blazingcloud.net.wiki. You have a choice of formats. If you want to use the same format as the old Redmine wiki, then choose Textile. If you clone the repo, you can see the format by looking at the extension (this Wiki currently uses only Markdown (.md) and Textile (.textile)). Wiki software is available on GitHub (of course :-) ): https://github.com/github/gollum. The default format is Markdown, specifically GitHub Flavored Markdown (http://github.github.com/github-flavored-markdown/). Some of this possibly applies to other formats like Textile. Blog post about Git-backed wikis: https://github.com/blog/699-making-github-more-open-git-backed-wikis When writing code, you can get syntax highlighting by use triple backticks followed by language name. For example, if you type:

['one', 'two', 'red', 'blue'].each do | adjective |
  puts "#{adjective} fish"
end
you will get:

```ruby
['one', 'two', 'red', 'blue'].each do | adjective |
puts "#{adjective} fish"
end
Clone this wiki locally