======Data Structures Journal======
====September 2, 2014====
* Today we re-visited pointers with the promise that they will become much more powerful and useful to u as we progress.
* It's significant because, apparently, pointers are very important when it comes to making C programs more efficient and allows more flexibility.
* When to use pointers may not make perfect sense to me, but surprisingly I understand them fairly well.
* Recalling the things I learned last semester is difficult, but it's coming back to me.
====MONTH Day, YEAR====
This is a sample format for a dated entry. Please substitute the actual date for "Month Day, Year", and duplicate the level 4 heading to make additional entries.
As an aid, feel free to use the following questions to help you generate content for your entries:
* What action or concept of significance, as related to the course, did you experience on this date?
* Why was this significant?
* What concepts are you dealing with that may not make perfect sense?
* What challenges are you facing with respect to the course? test change
======Data Communications Journal======
====MONTH Day, YEAR====
This is a sample format for a dated entry. Please substitute the actual date for "Month Day, Year", and duplicate the level 4 heading to make additional entries.
As an aid, feel free to use the following questions to help you generate content for your entries:
* What action or concept of significance, as related to the course, did you experience on this date?
* Why was this significant?
* What concepts are you dealing with that may not make perfect sense?
* What challenges are you facing with respect to the course?
======HPC Experience I Journal======
====August 29, 2014====
Fixing delete and backspace behavior in DragonFlyBSD
By default, the delete and backspace keys do not work "normally" in DragonFlyBSD. To fix this behavior for the shell,
add this to /etc/profile
export INPUTRC=/etc/inputrc
then, in /etc/inputrc place the following
set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
Now when you login again, the behavior should be fixed in the shell.
To fix vim, create a /usr/local/share/vim/vimrc file and add this
et backspace=2
set nocompatible
set term=xterm-color
set smartindent
Now you should have both your shell and vim backspace and delete keys working a bit more normally.
As an aid, feel free to use the following questions to help you generate content for your entries:
* What action or concept of significance, as related to the course, did you experience on this date?
* Why was this significant?
* What concepts are you dealing with that may not make perfect sense?
* What challenges are you facing with respect to the course?
====Zeo====
To use the USB serial device, configure the serial interface to the correct baud rate
stty 38400 raw -echo < /dev/ttyU0
screen
cat /dev/ttyU0 >> ../core/zeosleep-`date +%Y%m%d%H%M`.raw
====MONTH Day, YEAR====
This is a sample format for a dated entry. Please substitute the actual date for "Month Day, Year", and duplicate the level 4 heading to make additional entries.
As an aid, feel free to use the following questions to help you generate content for your entries:
* What action or concept of significance, as related to the course, did you experience on this date?
* Why was this significant?
* What concepts are you dealing with that may not make perfect sense?
* What challenges are you facing with respect to the course?