cloudfoundry (The open platform-as-a-service project) Organization

Name
The open platform-as-a-service project
Email
Website/Blog
http://www.cloudfoundry.org
Member Since
Feb 16, 2011

Public Repositories (5)

  • vmc

    The command line client for Cloud Foundry - the open platform as a service project

    Last updated Wed May 18 11:52:17 -0700 2011

    legend
  • vcap

    Cloud Foundry - the open platform as a service project

    Last updated Wed May 18 11:48:43 -0700 2011

    legend
  • vcap-tests

    Cloud Foundry - the open platform as a service project

    Last updated Mon May 16 14:28:18 -0700 2011

    legend
  • vcap-services

    Cloud Foundry - the open platform as a service project

    Last updated Tue Apr 12 15:55:46 -0700 2011

    legend
  • vcap-java

    Cloud Foundry - the open platform as a service project

    Last updated Mon Apr 11 20:17:52 -0700 2011

    legend

Organization Members (6)

  • derekcollison (Derek Collison)

    3 Public Repositories, 34 followers

  • killian (Killian Murphy)

    1 Public Repositories, 4 followers

  • marklucovsky (mark lucovsky)

    0 Public Repositories, 11 followers

  • pbozeman (Patrick Bozeman)

    0 Public Repositories, 13 followers

  • ramnivas

    0 Public Repositories, 6 followers

  • skaar

    7 Public Repositories, 11 followers

Markdown Cheat Sheet

Format Text

Headers

# This is an <h1> tag
## This is a <h2> tag
###### This is a <h6> tag

Text styles

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__

*You **can** combine them*

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b

Miscellaneous

Images

![GitHub Logo](/images/logo.png)

Links

http://github.com - automatic!
[GitHub](http://github.com)

Escaping

\*Asterisks\* are cool
\_So are underscores\_

Code Examples in Markdown

Syntax highlighting with GFM

```javascript
function alert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

Or, indent your code 4 spaces

I am really excited to show you
this new code:

    def foo:
      if not bar:
        return true

Inline code for comments

I think you should use an
`<addr>` element here instead.