User Tools

Site Tools


user:dshadeck:portfolio

This is an old revision of the document!


Portfolio

HPC0

August 31, 2015

HPC0 has definitely had the most eventful first week of any class i have been apart of at CCC. Starting out the semester with missing computers was interesting to say the least. This worked out alright in the end as it gave us time to rearrange the room into four separate pod stations to house the new computers. The new computers are great, especially the “upgraded” 4GB of flash.

September 07, 2015

We have slowly been working out the kinks in the new POD set up. We were able to give each pod a host name based up its MAC address! This required Brian and I to copy all of the MACs down and submit them to Matt to add to the router. We also fixed an issue, thanks to Andrew, with Vim not using backspace! More bug searching/fixing to come!

Data Structures

August 31, 2015

Data structures is a hard class to take with out computers…

This week was very uneventful due to the above statement. Matt reviewed some topics from our past prerequisite classes to help us get up to pace with what will be needed in our first project. This had me inspired and i started working!

#include <stdio.h>
 
int main()
{
    int choice = 0;
    printf ("1) Build List\n");
    printf ("2) Display List\n");
    printf ("3) Instert Into List\n");
    printf ("4) Append Into List\n");
    printf ("5) Obtain From List\n");
    printf ("6) Clear List\n");
    printf ("7) Quit\n");
return 0;
}

Underwhelming! :D

September 07, 2015

#include <stdio.h>
 
int main(){
    int test [20];
    int choice = 0;
    do{
        printf ("1) Build List\n");
        printf ("2) Display List\n");
        printf ("3) Instert Into List\n");
        printf ("4) Append Into List\n");
        printf ("5) Obtain From List\n");
        printf ("6) Clear List\n");
        printf ("7) Quit\n");
        printf ("Enter option: ");    
 
        scanf ("%d", &choice);
 
        if (choice > 7){
            printf ("Non-existent Option\n");
        }    
 
        if (choice == 1){
            printf ("enter numbers: ");
            int number = 0;
            int index = 0;
            int stop = -1;
            do{
                if (index == 19){
                    test[index] = stop;
                    printf ("number limit reached\n");
                    break;
                } else {  
                    scanf ("%d", &number );
                    test[index] = number;
                    index++;
                }    
            } while (number != -1);
 
 
        } else if (choice == 2){
            int i;
            for (i = 0; i <= 19; i++){
                int at = test[i];
                if (at == -1){
                    printf ("# -1 @ array index %d\n", i);
                    break;
                } else {  
                    printf ("# %d @ array index %d\n", at,i);    
                }
            }
        } else if (choice == 3){
            int nv, ai, in;
            printf ("enter new value: ");
            scanf ("%d", &nv);
            printf ("enter array index: ");
            scanf ("%d", &ai);
            printf ("nv %d ai %d\n", nv,ai);
            for (in =0; i <19
        }
    } while (choice != 7);
    return 0;
}

dsi0 is coming along and should be done tonight! W00t W00t.

Data Communications

August 31, 2015

I was sad to miss the first day of data communications as this class is definitely the one that interests me the most. We looked at what the best way to network the new classroom would be and decided that having a switch in the campus network closet would the best idea. We set up out switch with the proper IP address, subnet mask, and gateway to get it ready to deploy!

user/dshadeck/portfolio.1441672043.txt.gz · Last modified: 2015/09/08 00:27 by dshadeck