User Tools

Site Tools


user:ds003277:portfolio:unixproject1

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
user:ds003277:portfolio:unixproject1 [2014/02/27 06:25] – [Background] ds003277user:ds003277:portfolio:unixproject1 [2014/02/27 06:26] (current) – [Execution] ds003277
Line 28: Line 28:
  
 =====Scope===== =====Scope=====
-I intend to implement tedious/redundant use of the puzzle box problem solving commandsI'll assume that each adventurer has no prior knowledge of the commands I suggested you read the man pages about. My focus will be redundant use of each of these commands.+Give general overview of your anticipated implementation of the projectAddress any areas where you are making upfront assumptions or curtailing potential detail. State the focus you will be taking in implementation. 
 =====Attributes===== =====Attributes=====
 State and justify the attributes you'd like to receive upon successful approval and completion of this project. State and justify the attributes you'd like to receive upon successful approval and completion of this project.
  
-  * Patiencefirst and foremost if this doesn't help you acquire some you either have a ton already or you are immune to agitation. +  * attribute1why you feel your pursuit of this project will gain you this attribute 
-  * Desire to drinkwhen you reach the glorious ending of this puzzle box inside you'll find a couponThis coupon is good for a variety six-pack of... you guessed it, beer. Good for the first three students who unravel my puzzle box, provided you can show me a proper ID validating you are of age to legally purchase alcohol.+  * attribute2why you feel your pursuit of this project will gain you this attribute 
 +  * etc...
  
 =====Procedure===== =====Procedure=====
Line 40: Line 42:
 =====Code===== =====Code=====
 Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <nowiki><code> </code></nowiki> blocks here. Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <nowiki><code> </code></nowiki> blocks here.
 +
 +<code c>
 +/*
 + * hello.c - A sample "Hello, World!" program
 + 
 + * written by NAME for COURSE on DATE
 + *
 + * compile with:
 +   gcc -o hello hello.c
 + *
 + * execute with:
 +   ./hello
 + */
 +
 +#include <stdio.h>
 +
 +int main()
 +{
 +    printf("Hello, World!\n");    // Output message to STDOUT
 +    return(0);
 +}
 +</code>
  
 =====Execution===== =====Execution=====
 Again, if there is associated code with the project, and you haven't already indicated how to run it, provide a sample run of your code: Again, if there is associated code with the project, and you haven't already indicated how to run it, provide a sample run of your code:
 +
 +<cli>
 +lab46:~/src/cprog$ ./hello
 +Hello, World!
 +lab46:~/src/cprog$ 
 +</cli>
  
 =====Reflection===== =====Reflection=====
user/ds003277/portfolio/unixproject1.1393482312.txt.gz · Last modified: 2014/02/27 06:25 by ds003277