Skip to content

Commit 1276f93

Browse files
authored
Merge pull request #49 from CodeYourFuture/dwh-fixes
Misc fixes to challenges
2 parents b972e3e + 05f4056 commit 1276f93

File tree

5 files changed

+3792
-7
lines changed

5 files changed

+3792
-7
lines changed

challenges/challenge-cowsay-two/readme.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
# Cowsay
22

3-
Do you remember [Cowsay](https://github.com/CodeYourFuture/JavaScript-Core-1-Challenges)? We learned about node packages and made a cow say stuff. Now, we know more about programming, let's figure out how to make a cow say things in Node by ourselves.
3+
Cowsay is a fun script that prints an [ASCII](https://simple.wikipedia.org/wiki/ASCII) cow with your words in a speech bubble. It works like this: there is a library of pictures of cows made out of ASCII characters. You call the script in your terminal and you pass in arguments. There are lots of options, but one argument is required: a text string for the cow to say.
4+
5+
```
6+
 ________
7+
< Mooooo >
8+
 --------
9+
        \   ^__^
10+
         \  (oo)\_______
11+
            (__)\       )\/\
12+
                ||----w |
13+
                ||     ||
14+
15+
```
16+
17+
Cowsay was originally written in [Perl](https://simple.wikipedia.org/wiki/Perl), but has been written in many other programming languages too. In this coursework, we will write it in JavaScript.
418

519
## Project
620

7-
For this project we don't need a package, a library or lots of options. Let's just get our own cow printing out and saying whatever we write in the command line. What would be helpful? I think we need to:
21+
Let's get one cow printing out and saying whatever we write in the command line. What would be helpful? I think we need to:
822

923
- [Accept an argument](https://nodejs.dev/learn/nodejs-accept-arguments-from-the-command-line) from the command line.
1024
- Output to the command line. You've already done this with console.log.

challenges/challenge-weather-app/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
![Screenshot](assets/meteoropolis.png)
44

5-
[Click here for live demo](https://mini-weatherapp.herokuapp.com/)
6-
75
This app blends data from [openweathermap.org](https://openweathermap.org/) and
86
[Unsplash](https://unsplash.com/developers) to create a visual depiction of the current weather in your area.
97

0 commit comments

Comments
 (0)