Vs

Hmm, what a day.

Ironed out a few more things with my work in the SNCO Project.

Fire & Movement -> Submited
Rules of Engagment -> Submited
Breaching -> Fixing (post submited)
Stacking -> Converted (post submited)
Tactical Aids -> Working
Reloading Drill -> Submited + Tweaked & Resubmited
Equippment Loadouts -> Completed, not submited

Made changes to En4cers changes on basic training, submitted it back to him but no word yet. Maybe I should send it to Rouge since its technically supposed to go through the RSM then to GCHQ. No idea what En4cer is doing these days…. Feeling is mutal I’m sure.

Can’t really complete every thing on Room Clearing at the moment (En4cer) and I have little interest in the Planning & Leading one. Although that one might be able to stand as is hehe (y).

Spent most of the day on holiday after finishing some work on it. Joined Lazko & Ranger for some 2 on 1 on a super small map. Abiliterated them using the 40mm and mixing my kit around. Never really they knew what I was going to do, other then strike.

After wards joined Random/Lazko for a game, Random I soon found. Was much to seasoned a cat to fall prey to a Spider. Just as I was a bit to expirenced for Lazko & Ranger to have to much a head start. Since they were very fair and didn’t spawn rape much.

Eventually got into a baton war hehe. That blighters the fastest reloading weapon in the game I bet.

I could swear… trying to do any thing in this freaking place. Is harder then trying to have sex with a woman a football fields length away !

I’m sick and tire dof having to do things in the dead of night just to be able to fucking hear my self think.

Evil to do lists

Front burner…

  • Do my home work (ARRGGH)
  • Shift threw the admin to do list
  • Do some home work on the admin matter I’m all ready ‘dealing with’
  • Do my moms data entry work (oh joy)
  • Work on my (software) backup plans

Back burner…

  • Finish work in the SNCO project
  • Set up Samba
  • Set up PF, the OpenBSD Packet Filter firewall
  • Finish my private reading (I love books… never get to read’em any more)

edit later as needed.

Diff and Patch

Tests have shown, that using diff to create a patch file and using the patch file to patch the origenal. Have been largly successful so long as the origenal has not been edited since the diff was made.

Notes

archive: pax -wf archive /what
append to archive: pax -waf archive /more
unpack: pax -rf archive # unpacks in current directory
list: pax -f archive | $PAGER

the -z option adds gzip compression as with tar.

Also the -i and -v options work as per convention.

exclude file with the -c ‘file’ command or only file with -n ‘file’. Like:

pax -rf archive -c ‘ignoreme’ && pax -rf archive -n ‘onlyme’

gzip -# works well for the archives, where # is 0-9 low-high compression.

Quotes

Hehe I think these rock

    * "Unix is simple. It just takes a genius to understand its simplicity." – Dennis Ritchie
* "UNIX was not designed to stop its users from doing stupid things, as that would also stop them from doing clever things." – Doug Gwyn
* "Unix never says 'please'." – Rob Pike
* "Unix is user-friendly. It just isn't promiscuous about which users it's friendly with." – Steven King
* "Those who don't understand UNIX are condemned to reinvent it, poorly." – Henry Spencer

The funny thing, is th last one is true in a way lol.

back up war

http://www.phenix.bnl.gov/~purschke/RescueCD/
http://www.cpqlinux.com/ddbackup.html

Some good links for later 🙂

*wink*

$MYVIMRC

My current ~/.vimrc file. The {{{ & }}} mark the locations of folds, I elected to ues folding marks for my rc file. And when I have time to read how, I probably will set it to allow sectional jumping.

In short form, the file ensures that Vim does not read my .exrc file, does not try to be strictly vi compatible. Auto reads changes to files, keeps files at 80 char width (see tw), make for a more comfortable movement pattern near EOL. Yank into the clipboard, enable syntax folding on new files (my preference for sources), DOS EOL for new .txt files. Set somes sizes, enable my ‘HUD’ ^_^, turn on a nice colour scheme, and syntax highlighting. Set fonts, and a few useful keymaps. :help <option> generally works for looking things up in the manual (help can be shortened to he. with no sexist intent.)

"Terry M. P***** personal vimrc file

" vim: set ts=6 sw=6 expandtab foldmethod=marker foldcolumn=1 foldlevelstart=99:
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" WARNING !!!
" This file must have UNIX end of lines to avoid errors when starting
" under unix. Use the pdos2unix and punix2dos sh scripts to convert or
"
" perl -p -e 's/n/rn/' inputfile > outputfile # UNIX to DOS
" perl -p -e 's/rn/n/' inputfile > outputfile # DOS to UNIX
"
" on the command line
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Abstract
"
" Editing Preferences - set options related to editing tasks
" User Interface Preferences - set options related to appearance
" Keybinds & Commands - mappings / created


"""""""""""""""""""""""""""""""
"Editing Options {{{
"""""""""""""""""""""""""""""""

"Don't be VI compatible - Keep this at top of file !
set nocompatible
set noexrc

"automatic re-reading of changed open files
set autoread


"ingore case when searching
set ignorecase

" Use the system clipboard as the default register
set clipboard=unnamed

"Buffer related {{{
"Allow backspacing over everything in insert mode
set backspace=indent,eol,start
"Allow to go one space past EOL
set virtualedit=onemore
"Allow left/right movement at EOL to move to start of next line
set whichwrap=hl<>
"Wrap text at n chars with a line break
set textwidth=80
"set wrap
set linebreak

"Folding
if has("gui_running")
set foldmethod=manual
set foldcolumn=0
else
"Use sytanx folding in console mode
autocmd BufNewFile,BufRead *set foldmethod=syntax foldcolumn=1
endif

"}}}

"Size stuff {{{
"Tab length and shift lengths
set tabstop=8
set shiftwidth=4

"Set min # of spaces for numberwidth. It grows as needed
set numberwidth=2

"Set tab menu 0=never, 1=when more then one, 2=always
set showtabline=1

" Start with folds open
set foldlevelstart=99

"}}}

"File related {{{

"Set prefered line file formats
set ffs=unix,dos,mac
"Enable filetype detection
filetype on
"Turn off ft plugin and indent
filetype plugin off
filetype indent off

" Create new.txt files notepad ready
autocmd BufNewFile *.txt set ff=dos

"Enable syntax highlighting
if &t_Co > 2 || has("gui_running")
syntax on
endif

" Highlight strings inside C comments
"let c_comment_strings=1


"}}}

" }}}
"""""""""""""""""""""""""""""""
" Keybindings {{{
"""""""""""""""""""""""""""""""

"Maps {{{

"Use the ";" as a duplicate of ":" makes life so much easier
"for some odd reason it cannot be followed with a comment on it's line!
:nma ; :

"F1 turns on spellchecking in current buffer
map :setlocal spell spelllang=en_us

"F2 turn on line numbering
map :set number

"F3 turn on self indenting magic
map :set smartindent autoindent

"F10 rids us of ^M after carriage returns
map :%s// /g

"}}}

"}}}
"""""""""""""""""""""""""""""""
"User Interface Options {{{
"""""""""""""""""""""""""""""""

"Always show the status bar with file name e.t.c.
set laststatus=2
"Show %of file in statusbar
set ruler

"Command line completion lists possible matches
set wildmode=list:full

"Start with mouse support
set mouse=a
"Hide the mouse when typing text
set mousehide

" Dependant on GUI on/off {{{
if has ("gui_running")
"Set colo and options
colorscheme denim
" Set 'go' to:
"autoselect, console dialogs, tabpages, icon, menubar, show grey menu
"items, tearoff menu items, Toolbar, always right scrollbar.
set guioptions=aceimgtTr

"Make pointer an I-Beam in insert mode
set mouseshape=i:beam
"for spellchecking
set mousemodel=popup_setpos
"set cmd line size
set cmdheight=2

"Set windows specifics
if has("win32")
"Windows font
set guifont=Fixedsys:h7:cANSI
"Set x11 specifics
elseif has("x11")
set guifont=Fixed Semi-Condensed 13
set columns=80
set lines=35
endif
else
"set colors for terminal
colo advantage
"set cmd line size
set cmdheight=1
endif

"}}}

" }}}