User Tools

Site Tools


blog:fall2015:zgolden:journal

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
blog:fall2015:zgolden:journal [2015/09/04 18:18] zgoldenblog:fall2015:zgolden:journal [2015/10/07 17:37] (current) zgolden
Line 70: Line 70:
  
  
 +====9/8/2015====
 +  * gcc -g filename.c -o filename
 +
 +
 +====9/10/2015====
 +  * __Compile__
 +    * gcc filename.c -o filename
 +    * gcc -o filename filename.c
 +    * gcc -o filename filename.c -g
 +    * gdb ./filename to run file after compile using the debugger
 +  * __Debugger tools__
 +    * backtrace: //allows you to see previous steps that got you to where you are//
 +    * list "line": //shows the line you specified and some above and bellow//
 +    * break point: //tell debugger to stop at that point and stop running//
 +    * print: //prints out the value of variable you pass//
 +    * step: //runs one line then stops but follow functions//
 +    * next: //same as step but skips over functions//
 +    * continue: //goes until next breakpoint//
 +    * display: //set variable displays to show values every time something display// 
 +    * watch: //stops execution of your program whenever the value of an expression changes//
 +    * set var: //set variable to a specified value//
 +
 +
 +====9/15/2015====
 +  * Reviewed and talked about the different ways we could of done sln0
 +  * Advice:
 +    * think of all the possibilities before you start writing code
 +    * Don't be trapped by tradition thinking methods
 +      * Example in sln0: start loops for the end and move index from there
 +
 +
 +====9/17/2015====
 +  * Run a test in sln1 or bin
 +    * run in the sln1 or bin directory
 +  * Use make to compile but from sln1 directory
 +  * Verify test: is just for a pass or fail
 +  * Unit Test: shows the answer and what you have
 +  * Make check: runs all verify tests to see how much tests you pass or fail
 +
 +  * sln1:
 +    * mknode, conode, rmnode
 +    * node-app-arrtolist
 +    * node-app-display
 +    * node-app-display2
 +
 +
 +====9/22/2015====
 +====9/24/2015====
 +  * Went on a little bit of a hiatus due to work and person circumstances 
 +  * sll0 due 9/30 at midnight
 +    * requires to write functions such as mklist(), displayf(), getpos(), setpos(), and insert()
 +
 +
 +====9/29/2015====
 +  * Status data: used to see grades and progress
 +  * Status data detail: goes into further details on grades and projects
 +  * Reviewed sln1 to see possible improvements
 +  * s110 due Wednesday by midnight
 +
 +====10/1/2015====
 +  * Talked a little about the project then was given the last 40-30 mins to work on project
 +
 +====10/6/2015====
 +  * absent
 +
 +====10/8/2015====
 +  * 
blog/fall2015/zgolden/journal.1441390702.txt.gz · Last modified: 2015/09/04 18:18 by zgolden