ttc-archive / hello-github-kea-ita

ttc-class-hello-github-hello-github created by GitHub Classroom
0 stars 0 forks source link

Hello GitHub

image

Exercise 1

Create a personal markdown file

Use the online editor on GitHub (Code >> Add file >> Create new file) to create e new file in the root of the repository. Make the file personal simply by naming it after your GitHub handle with an .md file extension. My handle on GitHub is @lakruzz so my file will be lakruzz.md.

Add two lines to the file:

  1. First line is your name (First + Last) preceded with a hash (#) and separated with a space.
  2. Second line is your GitHub handle preceded with two hashes (##) and also separated with a space.
My file lakruzz.md would look like this: --- ```markdown # Lars Kruse ## lakruzz ``` ---

Add and Commit the file!

image

Exercise 2

Create a new issue with your name on it - assign it to yourself

Copy the code snippet below to your clip board

Hint --- image _Notice that when you hover-over the code a copy icon appears in the top-right corner - just click it to copy it to the the clip board._ ---
Go back into your file `<handle>.md` and add some `MarkDown`. It shall include:

- [x] A level 1 header with your full name.
- [x] A level 2 header with your GitHub handle.
- [ ] An image (of yourself - preferably).
- [ ] A bulleted list of things you are currently working on.
- [ ] A prioritized list of Programming languages and technologies you wanna work with.
- [ ] A link to all your public repositories on GitHub.
- [ ] Your GMail (assuming you have one).
- [ ] A short description of what you dream of working with - a couple of years from now - when you graduate and enter the labour market as a full-fledged, full-time IT Architect.

Also make sure:

- [ ] Assign this issue to yourself
- [ ] Commit the file when you are done
- [ ] As you progress with the items on the list - come back to this issue and check out the items.
- [ ] When you are completely done (_done done_) - close the issue.

With the Code snippet above in your clip board go and create a new issue in this repository

TEST by visiting github.com/issues/assigned - do you see your new issue? If not: did you assign it to yourself?

Now finish the TODO list in the issue.

Spoiler! --- All you need to learn about (GitHub flavoured) MarkDown is hinted to you in the webpage. image _All_ the time you spend on practicing and learning MarkDown is _never_ wasted. You will be using it for the rest of your career as a developer! ---

Apparently there's more!

Browse to the file advanced.md in this repo and continue there