Table of Contents

Data Structures Journal

September 2, 2014

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:

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:

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:

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: