Conversation
This comment has been minimized.
This comment has been minimized.
📝 HackYourFuture auto gradeAssignment Score: 52 / 100 ✅Status: ✅ Passed Test Details |
mnvacym
left a comment
There was a problem hiding this comment.
Hi Diana, great job on your first assignment.
There are minor improvements needed for the first task. I’ve added comments with suggestions; please let me know if anything is unclear.
For the second task, it looks like there is an issue with Top Languages Card and Streak Stats Card on your GitHub profile.
Overall, you did a good job. Best of luck on your journey at Hack Your Future.
| mkdir src | ||
| mkdir src/database | ||
| mkdir src/profile | ||
| touch resources/family_picture.jpg |
There was a problem hiding this comment.
The file name needs to be family picture.jpg (with a space). So you can make use of quotes (").
| echo "Welcome to my project" > README.md | ||
| rm -r src/profile | ||
| rm resources/family_picture.jpg | ||
| echo "Setup javascript…" |
There was a problem hiding this comment.
After removing family picture.jpg file, you need to create the second commit with a descriptive message:
11. Create a second commit with the new changes. Provide a descriptive message.
| echo "console.log('JavaScript works!');" > src/program.js | ||
| node src/program.js | ||
| git add . | ||
| git commit -m "third commit" |
There was a problem hiding this comment.
Commit message needs to be descriptive:
18. Create a third commit with the last changes. Provide a descriptive message.
| @@ -0,0 +1,2 @@ | |||
| # Creating project... | |||
| @@ -1 +1,26 @@ | |||
| # Write your code here No newline at end of file | |||
| # Creating project... | |||
There was a problem hiding this comment.
Usually it is a good practice to include #!/bin/bash or #!/usr/bin/env bash line at the beginning of a shell script file.
| touch resources/icon.png | ||
| touch resources/logo.png | ||
| touch src/program.java | ||
| echo "Setup project..." |
There was a problem hiding this comment.
After creating files and folders, you need to create the first commit wit the message "initial commit":
5. Commit the changes to git with the message “initial commit".
No description provided.