This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RWET Programming Exercise A | |
Text processing on the UNIX command line | |
--- | |
Step 1. Write the command to download the text file with the following URL to | |
your computer with the filename "frost.txt". (Hint: You'll need to use the | |
"curl" command, and possibly redirection with ">"). | |
Here's the URL: | |
http://rwet.decontextualize.com/texts/frost.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------------------- | |
# .gitignore for WordPress | |
# Bare Minimum Git | |
# http://ironco.de/bare-minimum-git/ | |
# ver 20140606 | |
# | |
# This file is tailored for a WordPress project | |
# using the default directory structure | |
# | |
# This file specifies intentionally untracked files to ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# My ./config directory in silverstripe looks like this: | |
# ./503.php <- a 503 Maintainance page | |
# ./_ss_environment.php <- the production environment settings | |
# ./deploy.rb <- is the recipe below | |
# | |
# multiple stages | |
set :stages, %w(staging dev production) # no info for production server yet | |
set :default_stage, "dev" | |
require 'capistrano/ext/multistage' |
NewerOlder