swc-boot-camp.git
10 years agoMerge branch 'namespaced' of git://tremily.us/swc-version-control-git into assembled
W. Trevor King [Fri, 29 Nov 2013 23:43:20 +0000 (15:43 -0800)]
Merge branch 'namespaced' of git://tremily.us/swc-version-control-git into assembled

* 'namespaced' of git://tremily.us/swc-version-control-git:
  cheat-sheet.md: Fix 'Incorperate' -> 'Incorporate' typo

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Fri, 29 Nov 2013 23:41:05 +0000 (15:41 -0800)]
Merge branch 'master' into namespaced

* master:
  cheat-sheet.md: Fix 'Incorperate' -> 'Incorporate' typo

10 years agocheat-sheet.md: Fix 'Incorperate' -> 'Incorporate' typo
W. Trevor King [Fri, 29 Nov 2013 23:40:28 +0000 (15:40 -0800)]
cheat-sheet.md: Fix 'Incorperate' -> 'Incorporate' typo

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-setup-windows-installer into assembled
W. Trevor King [Wed, 13 Nov 2013 17:17:36 +0000 (09:17 -0800)]
Merge branch 'namespaced' of git://tremily.us/swc-setup-windows-installer into assembled

* 'namespaced' of git://tremily.us/swc-setup-windows-installer:
  swc-windows-installer.py: Use regular expressions to POSIX-ify paths
  swc-windows-installer.py: Only create the python-scripts dir if it doesn't exist
  swc-windows-installer.py: Split out zip_install into its own function

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Wed, 13 Nov 2013 17:13:21 +0000 (09:13 -0800)]
Merge branch 'master' into namespaced

* master:
  swc-windows-installer.py: Use regular expressions to POSIX-ify paths
  swc-windows-installer.py: Only create the python-scripts dir if it doesn't exist
  swc-windows-installer.py: Split out zip_install into its own function

10 years agoswc-windows-installer.py: Use regular expressions to POSIX-ify paths
W. Trevor King [Wed, 13 Nov 2013 16:12:58 +0000 (08:12 -0800)]
swc-windows-installer.py: Use regular expressions to POSIX-ify paths

On a Windows 7 SP1 box with Python 2.7.3:

  >>> import os.path
  >>> os.path.expanduser('~')
  'c:/Users/JohnDoe'

That wasn't matching the previous POSIX-ification patterns, which
assumed the drive prefix would be uppercase (C:).  Now we use a
regular expression to match both cases.

10 years agoswc-windows-installer.py: Only create the python-scripts dir if it doesn't exist
W. Trevor King [Tue, 12 Nov 2013 18:05:08 +0000 (10:05 -0800)]
swc-windows-installer.py: Only create the python-scripts dir if it doesn't exist

os.makedirs, unlike 'mkdir -p', errors if the target directory already
exists [1,2].

[1]: http://docs.python.org/2/library/os.html#os.makedirs
     "Raises an error exception if the leaf directory already exists
     or cannot be created"
[2]: http://docs.python.org/3/library/os.html#os.makedirs
     "If exist_ok is False (the default), an OSError is raised if the
     target directory already exists."

10 years agoswc-windows-installer.py: Split out zip_install into its own function
W. Trevor King [Tue, 12 Nov 2013 18:02:23 +0000 (10:02 -0800)]
swc-windows-installer.py: Split out zip_install into its own function

This makes it easy to install other packages besides nano.  I've also
added SHA1 checks to avoid installing packages that don't match the
expected hash.  This lets us trust ZipFile.extractall instead of
extracting from a hard-coded list of approved files.

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-version-control-git into assembled
W. Trevor King [Thu, 7 Nov 2013 18:16:47 +0000 (10:16 -0800)]
Merge branch 'namespaced' of git://tremily.us/swc-version-control-git into assembled

# By Matt Davis
* 'namespaced' of git://tremily.us/swc-version-control-git:
  git -> Git where appropriate

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 7 Nov 2013 18:13:43 +0000 (10:13 -0800)]
Merge branch 'master' into namespaced

* master:
  git -> Git where appropriate

10 years agogit -> Git where appropriate
Matt Davis [Thu, 7 Nov 2013 17:25:46 +0000 (09:25 -0800)]
git -> Git where appropriate

W. Trevor King: The conflicts with the original f3bc1dd [1] were
trivial, involving the YAML front matter introduced by 208c61f (Add
header material and author to git and GitHub lesson, 2013-11-06).  I
haven't included 208c61f in this history because:

* This Markdown source is not necessarily destined for Jekyll.
* The author information is clear from the Git history, and explicit
  author listings in text itself are hard to keep up to date.

[1]: https://github.com/swcarpentry/bc/pull/133

Conflicts:
instructor.md

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-version-control-git into assembled
W. Trevor King [Thu, 31 Oct 2013 22:55:12 +0000 (15:55 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-version-control-git into assembled

* 'namespaced' of git://tremily.us/swc-version-control-git:
  README.md: Update link to SWC contributing page

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 31 Oct 2013 22:54:16 +0000 (15:54 -0700)]
Merge branch 'master' into namespaced

* master:
  README.md: Update link to SWC contributing page

10 years agoREADME.md: Update link to SWC contributing page
W. Trevor King [Thu, 31 Oct 2013 22:50:57 +0000 (15:50 -0700)]
README.md: Update link to SWC contributing page

Catch up with the swcarpentry/website -> swcarpentry/site transition,
specifically 86ba191 (Replaced contributing.html page with contrib/
directory containing separate pages for different ways to contribute,
2013-08-22).

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-setup-windows-installer into assembled
W. Trevor King [Thu, 31 Oct 2013 16:04:19 +0000 (09:04 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-setup-windows-installer into assembled

* 'namespaced' of git://tremily.us/swc-setup-windows-installer:
  swc-windows-installer.py: Restore nose entry point

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-modular-shell-genotype into assembled
W. Trevor King [Thu, 31 Oct 2013 16:03:26 +0000 (09:03 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-modular-shell-genotype into assembled

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-modular-shell-dictionary into assembled
W. Trevor King [Thu, 31 Oct 2013 16:02:55 +0000 (09:02 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-modular-shell-dictionary into assembled

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-modular-shell-hearing into assembled
W. Trevor King [Thu, 31 Oct 2013 16:01:30 +0000 (09:01 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-modular-shell-hearing into assembled

Avoid problems due to the shared history of swc-modular-shell,
swc-modular-shell-hello, and swc-modular-shell-hearing by restoring
the subject-level files and hello script removed in
swc-modular-shell-hearing:

  $ git checkout HEAD -- modular/shell/{README.md,cheat-sheet.md,instructor.md,exercises/hello/hello}

before commiting the merge.

Conflicts:
modular/shell/cheat-sheet.md
modular/shell/exercises/hello/hello

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 31 Oct 2013 15:46:21 +0000 (08:46 -0700)]
Merge branch 'master' into namespaced

I added modular/shell/exercises/hearing/ namespacing and squashed that
into the merge.

* master: (90 commits)
  Changing 'git clone' URL in shell README to the read-only git:// URL.
  Fix shell header
  Added some words about the history command and bang-history # direct access.
  Fix old typo on file size.
  Clean up ambiguity between file and filename.
  There is no executable in the boot-camps directory - need to cd to shell dir first.
  remove some spaces getting in the way of bold
  Seem to have the tables figured out - they need a header - annoying
  Can we get some documentation on tables
  A few more changes to be consistent and clear.
  Some formatting and flow changes:
  Update shell/Readme.md
  Update shell/Readme.md
  Update shell/Readme.md
  shell/Readme.md: Fix 'swsc' -> 'swc' typo
  shell/Readme.md: Use USERNAME and YYYY-MM-PLACE in git clone instructions
  fixed links
  shell/Readme.md: use explicit URL (with https://)
  Conversion of all rst to corresponding markdown files
  removed references to 2013-01-chicago (those became YYYY-MM-PLACE) and thehackerwithin (those became USERNAME).
  ...

10 years agomodular/shell: Start reorganizing the shell material
W. Trevor King [Thu, 24 Oct 2013 16:36:33 +0000 (09:36 -0700)]
modular/shell: Start reorganizing the shell material

Mostly split the examples out into their own directories with READMEs,
but there was a lot of editing to partially convert the long-form
notes into a condensed instructor.md targeted at instructors.  I've
gotten to the pipes section and run out of steam.  Erik may be taking
over the rest of the rewrite...

W. Trevor King: I dropped everything from the original 7ba5e9d except
for the modular/shell/exercises/hearing/README.md addition.  I also
merged in the history of the shell notes from
git://tremily.us/swc-modular-shell master so you can follow the
development of the README content.

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 31 Oct 2013 15:38:47 +0000 (08:38 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
de-namespacing from the master branch.  After this merge, future
merges from the master branch will pick up any content changes.

  $ git merge --log --no-ff --strategy ours master

* master:
  generate_data.py: Remove nesting shellExample/

10 years agogenerate_data.py: Add nesting modular/shell/exercises/hearing/
W. Trevor King [Thu, 31 Oct 2013 15:37:25 +0000 (08:37 -0700)]
generate_data.py: Add nesting modular/shell/exercises/hearing/

This gives the submodule-averse the nesting they'd usually get by
merging the master branch in a submodule at
modular/shell/exercises/hello.

10 years agogenerate_data.py: Remove nesting shellExample/
W. Trevor King [Thu, 31 Oct 2013 15:19:21 +0000 (08:19 -0700)]
generate_data.py: Remove nesting shellExample/

There's no need to hard-code target directories in this repository.
Anyone consuming this material can use submodules and pick their own
target directory.

10 years agoAdded Da for Shell example
Richard T. Guy [Mon, 30 Jan 2012 18:23:00 +0000 (13:23 -0500)]
Added Da for Shell example

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 31 Oct 2013 02:50:38 +0000 (19:50 -0700)]
Merge branch 'master' into namespaced

* master:
  swc-windows-installer.py: Restore nose entry point

10 years agoswc-windows-installer.py: Restore nose entry point
W. Trevor King [Thu, 31 Oct 2013 02:47:25 +0000 (19:47 -0700)]
swc-windows-installer.py: Restore nose entry point

This restores the nose entry point which was removed in 94caead
(swc-windows-installer.py: Remove IPython and nose entry points,
2013-10-21).

On Tue, Oct 22, 2013 at 11:36:21AM -0700, Ethan White wrote:
> IPython works fine for me on Windows 7 for both Anaconda and Canopy
> with no added entry points needed.
>
> Nosetests does not appear to have an entry point on Anaconda and I
> forgot to test it with Canopy.

I used a slightly different bin path than we'd used previously, to
respect 806fedf (swc-windows-installer.py: Rework install paths to use
~/.swc, 2013-10-21).

10 years agoREADME.md: Add nesting modular/shell/exercises/genotype/
W. Trevor King [Wed, 30 Oct 2013 04:08:21 +0000 (21:08 -0700)]
README.md: Add nesting modular/shell/exercises/genotype/

This gives the submodule-averse the nesting they'd usually get by
merging the master branch in a submodule at
modular/shell/exercises/genotype.

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Wed, 30 Oct 2013 04:07:01 +0000 (21:07 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
de-namespacing from the master branch.  After this merge, future
merges from the master branch will pick up any content changes.

* master:
  README.md: Remove nesting shell/exercises/

10 years agoREADME.md: Remove nesting shell/exercises/
W. Trevor King [Wed, 30 Oct 2013 04:04:59 +0000 (21:04 -0700)]
README.md: Remove nesting shell/exercises/

There's no need to hard-code target directories in this repository.
Anyone consuming this material can use submodules and pick their own
target directory.

10 years agoMoved exercises into subfolders of the corresponding topics
Jon Pipitone [Mon, 4 Mar 2013 19:31:26 +0000 (14:31 -0500)]
Moved exercises into subfolders of the corresponding topics

W. Trevor King: I removed everything except the shell exercises from
39e0701, since this branch is focusing on the genotype exercises.

10 years agoAdding exercises from the Software Carpentry 4.0 website
Jon Pipitone [Fri, 1 Mar 2013 23:17:30 +0000 (18:17 -0500)]
Adding exercises from the Software Carpentry 4.0 website

W. Trevor King: I removed everything except the shell exercises from
da170d3, since this branch is focusing on the genotype exercises.

10 years agoAdded shell exercises and old setdict exercises to version control
Orion Buske [Sun, 6 Feb 2011 04:20:02 +0000 (04:20 +0000)]
Added shell exercises and old setdict exercises to version control

git-svn-id: http://svn.software-carpentry.org/swc@1490 c7c5a9dc-0650-43d5-b785-a4005efbfd0f

W. Trevor King: I removed the setdict exercises from the cherry-picked
commit, since this branch is focusing on the genotype exercises.

10 years agoUpdated shell exercise data file
Orion Buske [Fri, 14 Jan 2011 19:48:31 +0000 (19:48 +0000)]
Updated shell exercise data file

git-svn-id: http://svn.software-carpentry.org/swc@1416 c7c5a9dc-0650-43d5-b785-a4005efbfd0f

10 years agoAdded sample of dbSNP for shell (and maybe other) exercises.
Orion Buske [Thu, 13 Jan 2011 17:50:51 +0000 (17:50 +0000)]
Added sample of dbSNP for shell (and maybe other) exercises.

git-svn-id: http://svn.software-carpentry.org/swc@1412 c7c5a9dc-0650-43d5-b785-a4005efbfd0f

10 years agodictionary.txt: Add nesting modular/shell/exercises/dictionary/
W. Trevor King [Tue, 29 Oct 2013 23:01:07 +0000 (16:01 -0700)]
dictionary.txt: Add nesting modular/shell/exercises/dictionary/

This gives the submodule-averse the nesting they'd usually get by
merging the master branch in a submodule at
modular/shell/exercises/dictionary.

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Tue, 29 Oct 2013 22:58:56 +0000 (15:58 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
de-namespacing from the master branch.  After this merge, future
merges from the master branch will pick up any content changes.

  $ git merge --log --no-ff --strategy ours master

* master:
  dictionary.txt: Remove nesting 1-Shell/

10 years agodictionary.txt: Remove nesting 1-Shell/
W. Trevor King [Tue, 29 Oct 2013 22:25:00 +0000 (15:25 -0700)]
dictionary.txt: Remove nesting 1-Shell/

There's no need to hard-code target directories in this repository.
Anyone consuming this material can use submodules and pick their own
target directory.

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-modular-shell-hello into assembled
W. Trevor King [Thu, 24 Oct 2013 19:44:27 +0000 (12:44 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-modular-shell-hello into assembled

Avoid problems due to the shared history of swc-modular-shell and
swc-modular-shell-hello by restoring the subject-level files removed
in swc-modular-shell-hello:

  $ git checkout HEAD -- modular/shell/{README.md,cheat-sheet.md,instructor.md}

Conflicts:
modular/shell/instructor.md

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-modular-shell into assembled
W. Trevor King [Thu, 24 Oct 2013 19:37:39 +0000 (12:37 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-modular-shell into assembled

10 years agoMerge branch 'namespaced' of git://tremily.us/swc-modular into assembled
W. Trevor King [Thu, 24 Oct 2013 19:37:35 +0000 (12:37 -0700)]
Merge branch 'namespaced' of git://tremily.us/swc-modular into assembled

10 years agoMerge remote-tracking branch 'shell/namespaced' into namespaced
W. Trevor King [Thu, 24 Oct 2013 17:19:44 +0000 (10:19 -0700)]
Merge remote-tracking branch 'shell/namespaced' into namespaced

This is a no-op merge, explicitly considering and rejecting the
tool-level removal of the hello script.  This avoids merge conflicts
if an aggregation branch wants to merge both our namespaced branch and
the tool-level namespaced branch.

* shell/namespaced: (91 commits)
  modular/shell: Start reorganizing the shell material
  Changing 'git clone' URL in shell README to the read-only git:// URL.
  Fix shell header
  Added some words about the history command and bang-history # direct access.
  Fix old typo on file size.
  Clean up ambiguity between file and filename.
  There is no executable in the boot-camps directory - need to cd to shell dir first.
  remove some spaces getting in the way of bold
  Seem to have the tables figured out - they need a header - annoying
  Can we get some documentation on tables
  A few more changes to be consistent and clear.
  Some formatting and flow changes:
  Update shell/Readme.md
  Update shell/Readme.md
  Update shell/Readme.md
  shell/Readme.md: Fix 'swsc' -> 'swc' typo
  shell/Readme.md: Use USERNAME and YYYY-MM-PLACE in git clone instructions
  fixed links
  shell/Readme.md: use explicit URL (with https://)
  Conversion of all rst to corresponding markdown files
  ...

10 years agoMerge branch 'master' into HEAD
W. Trevor King [Thu, 24 Oct 2013 17:02:51 +0000 (10:02 -0700)]
Merge branch 'master' into HEAD

This is a no-op merge, explicitly considering and rejecting the
submodules from the master branch.  After this merge, future merges
from the master branch will pick up any content changes.

* master:
  exercises/hearing: Add the cochlear implant example submodule

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 24 Oct 2013 15:50:07 +0000 (08:50 -0700)]
Merge branch 'master' into namespaced

* master:
  instructor.md: Update hello path with deeper hello/hello nesting

10 years agoexercises/hearing: Add the cochlear implant example submodule
W. Trevor King [Thu, 24 Oct 2013 15:40:10 +0000 (08:40 -0700)]
exercises/hearing: Add the cochlear implant example submodule

Drop exercises from the submodule name in case we want to reorganize
later.  We won't have any other 'hearing' submodules.

10 years agoAdded a dictionary to 1-Shell directory to demonstrate searching
Sasha Wood [Sun, 17 Jun 2012 01:06:07 +0000 (21:06 -0400)]
Added a dictionary to 1-Shell directory to demonstrate searching
in less.  Necessary to replace /usr/share/dict/american-english
that went away when we changed VMs.

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 24 Oct 2013 15:47:07 +0000 (08:47 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
submodules from the master branch.  After this merge, future merges
from the master branch will pick up any content changes.

  $ git merge --log --no-ff --strategy ours master

* master:
  exercises/hello: Add the hello script example submodule

10 years agoinstructor.md: Update hello path with deeper hello/hello nesting
W. Trevor King [Thu, 24 Oct 2013 03:05:40 +0000 (20:05 -0700)]
instructor.md: Update hello path with deeper hello/hello nesting

The hello script is at .../exercises/hello/hello now, not
.../exercises/hello, because .../exercises/hello is the submodule
directory.

10 years agoexercises/hello: Add the hello script example submodule
W. Trevor King [Thu, 24 Oct 2013 03:04:43 +0000 (20:04 -0700)]
exercises/hello: Add the hello script example submodule

Drop exercises from the submodule name in case we want to reorganize
later.  We won't have any other 'hello' submodules.

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 24 Oct 2013 03:02:35 +0000 (20:02 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
de-namespacing from the master branch.  After this merge, future
merges from the master branch will pick up any content changes.

  $ git merge --log --no-ff --strategy ours master

* master:
  hello: Remove nesting 1-Shell/

10 years agohello: Add nesting modular/shell/exercises/hello/
W. Trevor King [Thu, 24 Oct 2013 02:58:52 +0000 (19:58 -0700)]
hello: Add nesting modular/shell/exercises/hello/

This gives the submodule-averse the nesting they'd usually get by
merging the master branch in a submodule at
modular/shell/exercises/hello.

10 years agohello: Remove nesting 1-Shell/
W. Trevor King [Thu, 24 Oct 2013 02:54:57 +0000 (19:54 -0700)]
hello: Remove nesting 1-Shell/

There's no need to hard-code target directories in this repository.
Anyone consuming this material can use submodules and pick their own
target directory.

10 years agoAdded more to shell tutorial. Also added a hello world program
Milad Fatenejad [Sun, 1 Apr 2012 21:09:31 +0000 (16:09 -0500)]
Added more to shell tutorial. Also added a hello world program

W. Trevor King: I dropped everything from the original d25bc30 except
for the 1-Shell/hello addition.

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 24 Oct 2013 02:42:08 +0000 (19:42 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
submodules from the master branch.  After this merge, future merges
from the master branch will pick up any content changes.

  $ git merge --log --no-ff --strategy ours master

* master:
  shell: Add a submodule with POSIX shell examples

10 years agoREADME.md: Add nesting modular/
W. Trevor King [Thu, 24 Oct 2013 02:41:21 +0000 (19:41 -0700)]
README.md: Add nesting modular/

This gives the submodule-averse the nesting they'd usually get by
merging the master branch in a submodule at modular/.  They'll have to
merge the submodule's 'namespaced' branches by hand to pull in the
equivalent content.

10 years agoshell: Add a submodule with POSIX shell examples
W. Trevor King [Thu, 24 Oct 2013 02:40:19 +0000 (19:40 -0700)]
shell: Add a submodule with POSIX shell examples

10 years agoREADME.md: Summarize the purpose of this repository
W. Trevor King [Thu, 24 Oct 2013 02:39:40 +0000 (19:39 -0700)]
README.md: Summarize the purpose of this repository

10 years agoMerge branch 'master' into namespaced
W. Trevor King [Thu, 24 Oct 2013 02:36:19 +0000 (19:36 -0700)]
Merge branch 'master' into namespaced

This is a no-op merge, explicitly considering and rejecting the
de-namespacing from the master branch.  After this merge, future
merges from the master branch will pick up any content changes.

  $ git merge --log --no-ff --strategy ours master

* master:
  README.md: Remove nesting modular/shell/

10 years agoREADME.md: Remove nesting modular/shell/
W. Trevor King [Thu, 24 Oct 2013 02:33:52 +0000 (19:33 -0700)]
README.md: Remove nesting modular/shell/

There's no need to hard-code target directories in this repository.
Anyone consuming this material can use submodules and pick their own
target directory.

10 years agomodular/shell: Start reorganizing the shell material
W. Trevor King [Thu, 27 Jun 2013 16:46:13 +0000 (12:46 -0400)]
modular/shell: Start reorganizing the shell material

Mostly split the examples out into their own directories with READMEs,
but there was a lot of editing to partially convert the long-form
notes into a condensed instructor.md targeted at instructors.  I've
gotten to the pipes section and run out of steam.  Erik may be taking
over the rest of the rewrite...

10 years agoMerge branch 'cheat-sheet' into master
W. Trevor King [Thu, 24 Oct 2013 02:29:32 +0000 (19:29 -0700)]
Merge branch 'cheat-sheet' into master

* cheat-sheet: (37 commits)
  Cheatsheet based on @LJWilliams's version (PR #30) with updates to match the Guide
  Update shell_cheatsheet.md
  Update shell_cheatsheet.md
  Update shell_cheatsheet.md
  ...

10 years agoChanging 'git clone' URL in shell README to the read-only git:// URL.
Matt Davis [Mon, 13 May 2013 18:25:25 +0000 (11:25 -0700)]
Changing 'git clone' URL in shell README to the read-only git:// URL.

It had been showing the HTTPS URL but about 50% of the time that would ask
people for their usernames and passwords even though they just wanted to clone.
The read-only URL should never involve username/password stuff.

10 years agoFix shell header
Matt Davis [Wed, 8 May 2013 05:33:42 +0000 (22:33 -0700)]
Fix shell header

Made the title line into title markup and rephrased the intro title so that it make sense.

10 years agoAdded some words about the history command and bang-history # direct access.
Paul P.H. Wilson [Mon, 29 Apr 2013 11:11:43 +0000 (06:11 -0500)]
Added some words about the history command and bang-history # direct access.

10 years agoFix old typo on file size.
Paul P.H. Wilson [Mon, 29 Apr 2013 03:09:34 +0000 (22:09 -0500)]
Fix old typo on file size.

10 years agoClean up ambiguity between file and filename.
Paul P.H. Wilson [Mon, 29 Apr 2013 02:42:08 +0000 (21:42 -0500)]
Clean up ambiguity between file and filename.

10 years agoThere is no executable in the boot-camps directory - need to cd to shell dir first.
Paul P.H. Wilson [Mon, 29 Apr 2013 02:06:11 +0000 (21:06 -0500)]
There is no executable in the boot-camps directory - need to cd to shell dir first.

10 years agoremove some spaces getting in the way of bold
Paul P.H. Wilson [Fri, 26 Apr 2013 17:01:56 +0000 (12:01 -0500)]
remove some spaces getting in the way of bold

10 years agoSeem to have the tables figured out - they need a header - annoying
Paul P.H. Wilson [Fri, 26 Apr 2013 17:01:17 +0000 (12:01 -0500)]
Seem to have the tables figured out - they need a header - annoying

10 years agoCan we get some documentation on tables
Paul P.H. Wilson [Fri, 26 Apr 2013 17:00:15 +0000 (12:00 -0500)]
Can we get some documentation on tables

10 years agoA few more changes to be consistent and clear.
Paul P.H. Wilson [Fri, 26 Apr 2013 16:54:45 +0000 (11:54 -0500)]
A few more changes to be consistent and clear.

* q is for quit (mnemonics)
* tab completion seemed to have invalid examples/instructions
* made a table of less commands
* explained why less commands work in man
* redirection exercise was ambiguous: files that contain 4 in their contents, or whose names contain the number 4?
* mkdir is to 'make' a directory (mnemonics)
* combined sort exercise block

10 years agoSome formatting and flow changes:
Paul P.H. Wilson [Fri, 26 Apr 2013 16:29:14 +0000 (11:29 -0500)]
Some formatting and flow changes:

* try to bring formatting of subheadings into consistency by promoting all bolded headings to hierarchichal headings
* add Paul Wilson as author
* initial directory changing and git checkout flow was not consistent with following commands
* added excercise around man pages and ls
* added comment on mental model of directory hierarchy
* labeled exercise at end of path section
* clarified conditions under which different ls commands were equivalent

10 years agoUpdate shell/Readme.md
Doug Latornell [Sat, 16 Feb 2013 18:32:03 +0000 (10:32 -0800)]
Update shell/Readme.md

Fix markup to highlight `find` command.

10 years agoUpdate shell/Readme.md
Doug Latornell [Sat, 16 Feb 2013 18:29:10 +0000 (10:29 -0800)]
Update shell/Readme.md

Improve wording in `cp` file backup example.

10 years agoUpdate shell/Readme.md
Doug Latornell [Fri, 15 Feb 2013 21:17:06 +0000 (13:17 -0800)]
Update shell/Readme.md

Fix typo and some missing words.

10 years agoshell/Readme.md: Fix 'swsc' -> 'swc' typo
W. Trevor King [Mon, 11 Feb 2013 11:47:29 +0000 (06:47 -0500)]
shell/Readme.md: Fix 'swsc' -> 'swc' typo

10 years agoshell/Readme.md: Use USERNAME and YYYY-MM-PLACE in git clone instructions
W. Trevor King [Wed, 30 Jan 2013 11:19:12 +0000 (06:19 -0500)]
shell/Readme.md: Use USERNAME and YYYY-MM-PLACE in git clone instructions

10 years agofixed links
Katy Huff [Sat, 20 Oct 2012 13:22:04 +0000 (06:22 -0700)]
fixed links

[wtk]:
This pulled in a few workshop-specific link changes, but I cherry
picked it to get the "GUI" -> "browser" update.

10 years agoshell/Readme.md: use explicit URL (with https://)
W. Trevor King [Thu, 18 Oct 2012 18:51:18 +0000 (14:51 -0400)]
shell/Readme.md: use explicit URL (with https://)

10 years agoConversion of all rst to corresponding markdown files
Jon Pipitone [Fri, 1 Feb 2013 18:08:26 +0000 (13:08 -0500)]
Conversion of all rst to corresponding markdown files

We use git-flavoured markdown

W. Trevor King: I dropped everything from the original 4ba1cf2 except
for the shell/Readme.md modification.

10 years agoremoved references to 2013-01-chicago (those became YYYY-MM-PLACE) and thehackerwithi...
Katy Huff [Wed, 30 Jan 2013 03:39:10 +0000 (21:39 -0600)]
removed references to 2013-01-chicago (those became YYYY-MM-PLACE) and thehackerwithin (those became USERNAME).

W. Trevor King: I dropped everything from the original 87034d8 except
for the shell/Readme.md modification.

10 years agoremoving links from readmes, removed old.md, not sure what that was.
Katy Huff [Wed, 30 Jan 2013 00:30:42 +0000 (18:30 -0600)]
removing links from readmes, removed old.md, not sure what that was.

W. Trevor King: I dropped everything from the original 500753d except
for the shell/Readme.md modification.

10 years agoFix one more s,Shell-1,shell,
Jed Brown [Sat, 12 Jan 2013 15:56:25 +0000 (09:56 -0600)]
Fix one more s,Shell-1,shell,

10 years agoFix paths in shell section
Jed Brown [Sat, 12 Jan 2013 15:52:53 +0000 (09:52 -0600)]
Fix paths in shell section

10 years agofixes links in shell readme
Katy Huff [Thu, 10 Jan 2013 00:24:19 +0000 (18:24 -0600)]
fixes links in shell readme

10 years agoUpdated URL
rkhetani [Tue, 8 Jan 2013 23:51:35 +0000 (17:51 -0600)]
Updated URL

10 years agoUpdated URL
rkhetani [Tue, 8 Jan 2013 23:49:45 +0000 (17:49 -0600)]
Updated URL

10 years agoUpdated URL
rkhetani [Tue, 8 Jan 2013 23:47:30 +0000 (17:47 -0600)]
Updated URL

10 years agoUpdated for Jan12th bootcamp
rkhetani [Tue, 8 Jan 2013 23:10:30 +0000 (17:10 -0600)]
Updated for Jan12th bootcamp

10 years ago moved a lot of files to folders that will mesh with the directory structure intended...
Katy Huff [Sun, 16 Dec 2012 17:53:31 +0000 (11:53 -0600)]
 moved a lot of files to folders that will mesh with the directory structure intended for the master branch, in case we merge this in. A bunch of things still need to be done. The software engineering section isn't completely moved and the readmes are still in rst rather than md.

W. Trevor King: I removed everything from the original 00149bc except
the 1-Shell -> shell move.

10 years agoFixed github URL.
Joshua R Smith [Mon, 18 Jun 2012 14:41:14 +0000 (10:41 -0400)]
Fixed github URL.

10 years agoUpdated shell tutorial to reflect new VM. Also minor
Sasha Wood [Sun, 17 Jun 2012 02:16:51 +0000 (22:16 -0400)]
Updated shell tutorial to reflect new VM.  Also minor
edits for clarity.  Added reference to xargs, command
history.

10 years agoCorrected git command
Sasha Wood [Tue, 12 Jun 2012 00:40:56 +0000 (20:40 -0400)]
Corrected git command

10 years agoModified 1-Shell to use swc in place of thw and \nSWC-bootcamp in place of UofCSCBC20...
Sasha Wood [Sun, 10 Jun 2012 01:41:30 +0000 (21:41 -0400)]
Modified 1-Shell to use swc in place of thw and \nSWC-bootcamp in place of UofCSCBC2012 so as to have correct org and repo name.

10 years agoChanged presenter name
Sasha Wood [Sun, 10 Jun 2012 01:02:39 +0000 (21:02 -0400)]
Changed presenter name

10 years agoDone with the shell tutorial...at last
Milad Fatenejad [Mon, 2 Apr 2012 04:50:00 +0000 (23:50 -0500)]
Done with the shell tutorial...at last

10 years agoMore updates to shell tutorial
Milad Fatenejad [Mon, 2 Apr 2012 04:04:50 +0000 (23:04 -0500)]
More updates to shell tutorial

10 years agoMore updates to shell tutorial
Milad Fatenejad [Sun, 1 Apr 2012 23:04:22 +0000 (18:04 -0500)]
More updates to shell tutorial

10 years agoMore updates to shell tutorial
Milad Fatenejad [Sun, 1 Apr 2012 21:49:15 +0000 (16:49 -0500)]
More updates to shell tutorial

10 years agoAdded more to shell tutorial. Also added a hello world program
Milad Fatenejad [Sun, 1 Apr 2012 21:09:31 +0000 (16:09 -0500)]
Added more to shell tutorial. Also added a hello world program

10 years agoMore updates
Milad Fatenejad [Sun, 1 Apr 2012 18:54:32 +0000 (13:54 -0500)]
More updates