User Tools

Site Tools


user:jmendoza:portfolio:unixproject1

Project X2

me and me alone Started 3/9/2013 Ended 3/14/2013

Objectives

The purpose of this project is to explore the various way of dealing with crappily named files in a Unix-like environment.

Prerequisites

resources I have/will use include

  • Matt Haas
  • The Tutors ….but not the jerkface one…..he is mean
  • Harry Longwell
  • teH inTerwEbz

Background

Let's face it, my ability to navigate this environment is crap. Unfortunately I completely much of this project already and will best attemped to retroactively chronicle my growing process here and swear on a stack of Bibles that all future projects will be recorded adequately.

Scope

It turns out I quite like using Unix like systems and like the idea of working with little things that may or may not support a GUI

I have absolutely no doubt that this knowledge learned from this lab will save future me from bearing the indignity of worn down stubby mouth things that live where my teeth used to be.

Attributes

State and justify the attributes you'd like to receive upon successful approval and completion of this project.

  • attribute1: why you feel your pursuit of this project will gain you this attribute
  • attribute2: why you feel your pursuit of this project will gain you this attribute
  • etc…

Procedure

The actual steps taken to accomplish the project. Include images, code snippets, command-line excerpts; whatever is useful for intuitively communicating important information for accomplishing the project.

Code

Upon completion of the project, if there is an applicable collection of created code, place a copy of your finished code within <code> </code> blocks here.

/*
 * 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);
}

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:

lab46:~/src/cprog$ ./hello
Hello, World!
lab46:~/src/cprog$ 

Reflection

Comments/thoughts generated through performing the project, observations made, analysis rendered, conclusions wrought. What did you learn from doing this project?

References

In performing this project, the following resources were referenced:

  • URL1
  • URL2
  • URL3 (provides useful information on topic)
  • URL4

Generally, state where you got informative and useful information to help you accomplish this project when you originally worked on it (from Google, other wiki documents on the Lab46 wiki, etc.)

user/jmendoza/portfolio/unixproject1.txt · Last modified: 2013/03/15 00:43 by jmendoza