User Tools

Site Tools


notes:discrete:fall2023:projects:abc0

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
notes:discrete:fall2023:projects:abc0 [2023/08/21 17:40] – [Create info.text file with information] dwhite26notes:discrete:fall2023:projects:abc0 [2023/08/26 17:11] (current) – [Locate journal and customize title and intro] jhimmel2
Line 12: Line 12:
 Do note: by identifying the class/classes you are taking part in, you will likely earn your first week participation points. Don't just join and remain silent: you will miss out on points. Do note: by identifying the class/classes you are taking part in, you will likely earn your first week participation points. Don't just join and remain silent: you will miss out on points.
 ====Log into Lab46 (shell)==== ====Log into Lab46 (shell)====
 +To log into Lab46 shell, start by opening a terminal. Once in the terminal input 'ssh' followed by your CCC user name and the domain <@lab46.g7n.org>.
  
 +*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====
 +From your lab46 home directory, enter the following command
 +
 +    user@lab46:~$ fixrepo
 +
 +Input your password where prompted and you'll have the fall2023 directory
 +
 +//**Note**// You ONLY run **fixrepo** command once per 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** and if you do not get an error, proceed.
  
 +From here you can enter the following commands for every change to your repo:
 +<code>hg add
 +hg commit -m "commit message text"
 +hg push</code>
 ====Log into Lab46 wiki==== ====Log into Lab46 wiki====
  
 +Your journal, the syllabus and other resources are made available to you via the lab46 wiki. In order to access these web resources for the class you have to log in.
 +
 +  * At the top right of this page, click the “login” button
 +    * input your username (your college email without the @corning-cc.edu part)
 +    * input your password (your CCC ID# (capital C))
 +
 +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. 8-)
 +
 + * Also if you have done a journal in previous semesters and would like to recall on them you can use the "Sitemap" link in the top right of the wiki page. This will take to a page with plenty of links, to access your previous journals
 +
 +  * 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====
  
 ====Clone lab46 semester repo on your system==== ====Clone lab46 semester repo on your system====
  
 +From your system, enter the following commands in the terminal
 +
 +    wget -q https://lab46.g7n.org/~wedge/piph/download -O piph
 +
 +    bash ./piph
 ====Create info.text file with information==== ====Create info.text file with information====
 Your preferred name or nickname (after the heading “name: ”) Your preferred name or nickname (after the heading “name: ”)
Line 34: Line 72:
 ====Create and execute hello.c==== ====Create and execute hello.c====
  
 +Create and name a text file "hello.c".
 +
 +Then open it with a text editor.
 +
 +Write the following program to the file.
 +
 +    #include <stdio.h>
 +    int main() {
 +    printf("Hello World!");
 +    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====
  
 +Once you login to the Lab46 Wiki, the link to your journal is located under the content section on the top left corner of the page.  Clicking the link will take you the the journal, which shows the current week available for editing.
 +
 +The first task is to update the title and intro.  Click the edit button under the title.  Enter your name in the title, and add an optional subtitle.  Click save to save your changes.  This is the basic editing process useed for all entries.  
 +
 +Next click edit in the intro section. This section can be used provide a description of yourself, your pursuits, your interests, class objectives, etc.
 +
 +Each week, update the current journal entry describing your experiences in the course for the week.  There is a minimum 256 word count, and the journal entry counts toward your WCP grade for the week.  
notes/discrete/fall2023/projects/abc0.1692639646.txt.gz · Last modified: 2023/08/21 17:40 by dwhite26