Skip to content

Instantly share code, notes, and snippets.

@kennethho
Forked from evanzillians/draft.txt
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save kennethho/9224821 to your computer and use it in GitHub Desktop.

Select an option

Save kennethho/9224821 to your computer and use it in GitHub Desktop.

Revisions

  1. kennethho revised this gist Feb 26, 2014. 1 changed file with 24 additions and 17 deletions.
    41 changes: 24 additions & 17 deletions draft.txt
    Original file line number Diff line number Diff line change
    @@ -8,22 +8,29 @@ thor
    │    │   └── hdr-1.h // names in thor::lib-1
    │   └── lib-2
    │   └── hdr-2.h // names in thor::lib-2
    ├── src
    ├── lib
    │   ├── lib-1
    │   │   ├── src
    │   │   │   └── src-1.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   ├── lib-2
    │   │   ├── src
    │   │   │   └── src-2.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   └── bin-3
    │   ├── src
    │   │   └── src-3.cpp
    │   └── test
    │   └── test.cpp
    │   │   └── src-1.cpp
    │   └── lib-2
    │      └── src
    │         └── src-2.cpp
    ├── tools // or drivers?
    │ ├── tsc
    │ │ └── main.cpp
    │ ├── tsc-compile
    │ │ └── main.cpp
    │ └── tsc-link
    │ └── main.cpp
    └── test
    └── complicated
    └── test.cpp
    ├── complicated
    │ └── test.cpp
    ├── lib-1
       │ └── test.cpp
    ├── lib-2
       │ └── test.cpp
    ├── tsc
       │ └── test.cpp
    ├── tsc-compile
       │ └── test.cpp
    └── tsc-link
       └── test.cpp
  2. kennethho revised this gist Feb 26, 2014. 1 changed file with 8 additions and 7 deletions.
    15 changes: 8 additions & 7 deletions draft.txt
    Original file line number Diff line number Diff line change
    @@ -3,22 +3,23 @@ thor
    │   ├── bar
    │   └── foo
    ├── include
    │   ├── dir-1
    │   │   └── hdr-1.h
    │   └── dir-2
    │   └── hdr-2.h
    │   └── thor
    │   ├── lib-1
    │    │   └── hdr-1.h // names in thor::lib-1
    │   └── lib-2
    │   └── hdr-2.h // names in thor::lib-2
    ├── src
    │   ├── target-1
    │   ├── lib-1
    │   │   ├── src
    │   │   │   └── src-1.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   ├── target-2
    │   ├── lib-2
    │   │   ├── src
    │   │   │   └── src-2.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   └── target-3
    │   └── bin-3
    │   ├── src
    │   │   └── src-3.cpp
    │   └── test
  3. @evanzillians evanzillians revised this gist Feb 26, 2014. 1 changed file with 25 additions and 22 deletions.
    47 changes: 25 additions & 22 deletions draft.txt
    Original file line number Diff line number Diff line change
    @@ -1,25 +1,28 @@
    thor
    ├── contrib
    ├── bar
    └── foo
       ├── bar
       └── foo
    ├── include
    │ ├── dir-1
    │ │ └── hdr-1.h
    │ └── dir-2
    │ └── hdr-2.h
    └── src
    ├── target-1
    │ ├── src
    │ │ └── src-1.cpp
    │ └── test
    │ └── test.cpp
    ├── target-2
    │ ├── src
    │ │ └── src-2.cpp
    │ └── test
    │ └── test.cpp
    └── target-3
    ├── src
    │ └── src-3.cpp
    └── test
    └── test.cpp
    │   ├── dir-1
    │   │   └── hdr-1.h
    │   └── dir-2
    │   └── hdr-2.h
    ├── src
    │   ├── target-1
    │   │   ├── src
    │   │   │   └── src-1.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   ├── target-2
    │   │   ├── src
    │   │   │   └── src-2.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   └── target-3
    │   ├── src
    │   │   └── src-3.cpp
    │   └── test
    │   └── test.cpp
    └── test
    └── complicated
    └── test.cpp
  4. @evanzillians evanzillians created this gist Feb 26, 2014.
    25 changes: 25 additions & 0 deletions draft.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    thor
    ├── contrib
    │ ├── bar
    │ └── foo
    ├── include
    │ ├── dir-1
    │ │ └── hdr-1.h
    │ └── dir-2
    │ └── hdr-2.h
    └── src
    ├── target-1
    │ ├── src
    │ │ └── src-1.cpp
    │ └── test
    │ └── test.cpp
    ├── target-2
    │ ├── src
    │ │ └── src-2.cpp
    │ └── test
    │ └── test.cpp
    └── target-3
    ├── src
    │ └── src-3.cpp
    └── test
    └── test.cpp