-
Notifications
You must be signed in to change notification settings - Fork 0
Home
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
- Organization Overview
- Retrospective Schedule
- Security plan
- Blazing Cloud Libraries
- Contact info
- Invoice Process
- Harvest Time Tracking Process
- Blazing Cloud Staff Hours
##Professional Development
- Subscriptions (includes books)
- Tech Talk Schedule
##Training Classes
##Projects
- New Project Checklist
- Process: pushing to staging and production (heroku)
- Project Template
- Archived Projects
- Project Roles and Responsibilities
- Software Development Process
- Heroku checklist
- Setting up an iOS app
- iOS development links
- iOS- Add device to provisioning profile and build using TestFlight
- iOS App Submission Process
- Development Workflow
- Proposed point system - Pivotal Tracker
- Release Checklist
- Product Ship Sequence
##Current Project Information
The following should be links to the filled in Project Template for the specified projects.
- Doppler
- Mightyverse
- Smartfood
- Lilo
- Zebra
- Blazing Website
- Company blog site: blog.blazingcloud.net
- blog.blazingcloud.net---Setup-Dev-Env-(Mac-OS-X-Instructions)
- blog.blazingcloud.net---Deployment-Staging-&-Production
- Goldilocks
- Albright
- Ananse
- Blazing Cloud private libraries — How to share code that is not open source
##HR (Benefits, Travel/Expense Policies, etc,)
- Employee Onboarding Checklist
- Employee Health/Vision/Dental Insurance
- Employee Exit Procedures
- Vacation Request
- Holidays
##IT
- Computer Setup Instructions (Mac OS X 10.8)
- CI information: https://github.com/blazingcloud/JenkinsConfigurationBackup/wiki
- Installing APK file on Android device
- Blazing Cloud Device Library Check-out and Check-in - This is where you go to check-out and check-in devices that belong to Blazing Cloud. You need to use this when you need to check-out a device to test i.e. ipad/iphone/getting new MacBook etc. (this will take you to google docs- follow instructions when there)
##Operations
- Purchasing (old draft)
- Osmin's phone: 415.613.4995. Osmin is the building manager of 414 Mason.
##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