This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2023:projects:abc0 [2023/08/18 16:50] – [Log into Lab46 wiki] jwieland | notes:data:fall2023:projects:abc0 [2023/08/24 17:47] (current) – [Log into Lab46 wiki] jgleas15 | ||
---|---|---|---|
Line 4: | Line 4: | ||
====Get on discord and into class channels==== | ====Get on discord and into class channels==== | ||
+ | To log into the lab46 Discord server, use the link provided on the class' | ||
+ | (https:// | ||
+ | Once logged into Discord and entered the server, state your name as well as every course instructed by Matt Haas you will be taking during the semester. You will be given roles that will allow you to speak and interact in specific channels corresponding to each of your courses. Interaction here is key, as messages sent within course channels contribute towards your participation grade for the course. | ||
====Log into Lab46 (shell)==== | ====Log into Lab46 (shell)==== | ||
+ | To log into Lab46 shell, start by opening a terminal. Once in the terminal input ' | ||
+ | *Your username is your CCC email excluding the domain. | ||
+ | |||
+ | EX: [username]@lab46.g7n.org | ||
====Clone lab46 semester repo on lab46==== | ====Clone lab46 semester repo on lab46==== | ||
- | Once you have successfully logged into the Lab46 server you will want to enter this command | + | Once you have successfully logged into the Lab46 server you will want to enter the command |
**fixrepo** into the command line and press enter | **fixrepo** into the command line and press enter | ||
Line 16: | Line 23: | ||
After you have done that, proceed to type **cd src/** into the command line then perform an **ls** to make sure you see your appropriate SEMESTER | After you have done that, proceed to type **cd src/** into the command line then perform an **ls** to make sure you see your appropriate SEMESTER | ||
- | **cd** into your SEMESTER directory and perform **hg status** | + | **cd** into your SEMESTER directory and perform **hg status** |
From here you can enter the following commands for every change to your repo: | From here you can enter the following commands for every change to your repo: | ||
Line 28: | Line 35: | ||
* At the top right of this page, click the “login” button | * At the top right of this page, click the “login” button | ||
- | * sign in with your username(your college email without the @corning-cc.edu part) | + | * input your username (your college email without the @corning-cc.edu part) |
- | * password | + | * input your password |
- | Once logged in note that the left sidebar has been updated with some new links, now on the wiki you have access to links to the course homepages of the classes you are taking and a link to your journal. It would be a good idea to familiarize yourself with these resources. | + | Once logged in note that the left sidebar has been updated with some new links, now on the wiki you have access to links to the course homepages of the classes you are taking and a link to your journal. It would be a good idea to familiarize yourself with these resources. |
+ | |||
+ | * Also if you have done a journal in previous semesters and would like to recall on them you can use the " | ||
+ | |||
+ | * First click **journal** | ||
+ | * Second the **class year** of your journal | ||
+ | * Third your **username** | ||
+ | * Finally select your **week** you wish to access | ||
====Set up personal development system==== | ====Set up personal development system==== | ||
Line 37: | Line 51: | ||
====Create info.text file with information==== | ====Create info.text file with information==== | ||
+ | |||
+ | Your preferred name or nickname (after the heading “name: ”) | ||
+ | |||
+ | Your preferred (and frequently checked) e-mail (after the heading “email: ”) | ||
+ | |||
+ | Your discord screen name (they aren't always easy to intuit, after the heading “discord: ”) | ||
+ | |||
+ | Your matriculated program of study aka your major (after the heading “program: ”) | ||
+ | |||
+ | Any other information you feel pertinent to tell me (after the heading “other: ”) | ||
====Create and execute hello.c==== | ====Create and execute hello.c==== | ||
+ | Create and name a text file " | ||
+ | |||
+ | Once the file is created open it with a text editor. Ex: nano or vim. | ||
+ | |||
+ | Write the following program to the file. | ||
+ | |||
+ | #include < | ||
+ | | ||
+ | // This code outputs" | ||
+ | int main() { | ||
+ | printf(" | ||
+ | return (0); | ||
+ | } | ||
+ | |||
+ | Now compile the program with the following command | ||
+ | |||
+ | gcc -Wall -std=gnu18 hello.c -o some_file_name | ||
====Locate journal and customize title and intro==== | ====Locate journal and customize title and intro==== | ||
+ | Your journal is always available while on the lab46 website under **__content__** on the left side of the screen. | ||
+ | You're able to customize many aspects of this page to your liking, simply use the [Edit] button on the bottom right of each module to change what appears. Feel free to experiment with different options and formats within this page to see what best matches you and your workflow. |