Skip to content

Instantly share code, notes, and snippets.

@rwnfoo
rwnfoo / 1-orgs-archetype.md
Last active March 15, 2023 18:50
Orgs and Teams Best Practices
View 1-orgs-archetype.md

Organization archetypes

The intention of this document is to provide some guidance and suggestions to customers who are wondering how they should structure organizations and teams in their GitHub Enterprise environment. The idea isn't to give hard and fast rules on which approach is better than the other, but to give examples of when one approach might be preferable to another depending on the use case.

1. A single organization with direct organization membership for repository access (not teams)

          ________________
          |     Org      |
          |    ______    |
          |   |      |\  |

| | Repo | \ |

@willurd
willurd / web-servers.md
Last active March 28, 2023 01:29
Big list of http static server one-liners
View web-servers.md

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000