Ahhh Rubin sandwhiches, a cheese bear claw and a litre of Mug root beer + a zonk’d out nap. Now thats how to take it easy after 3 sortes. Took the bosses dogs to the vet, came home got our dogs. Whent to work then dropped our dogs off at home. Then picked up the bosses dogs at the vet and took them to work. 0.o

Sigh, what do you do when life hands you a $>1+ burger and tells you to chow down ? To bad we can’t just send it back to the cook… I’ve got work extra early so I have to get to sleep ASAP, yeah like thats gonna happen. I know my self better then that. We’ve got to take 3 of the bosses dogs to get their teeth done. Then start a new job, then pick up the dogs. And Thursday not only do I have to do our biggest work day. But we also got to take the bosses other 3 dogs to the vet. Joy, me and Barny getting sat on and licked to death my Macy while Leo fiddles about… Barny is nearly 20 years old, blind and nearly deaf. Macy is bigger then me had if shes an ounce lighter then 70lbs I’d be shocked. Dogs the kind you give a WIDE birth and avoid getting sat on. But sweet as can be. Leo’s just a big loveable mutt of about 55-65lbs. And I’m gonna get sat on I know it, I just know it lol. I get up, I work, I try to get to sit on my ass for af ew. Try & get a few games in, do my work /w the [SAS] e.t.c. and its heck at times. While my moms ‘active’ on or off her couch. I can’t do a lot. Because I’m the errend boy and what ever I’m doing no matter what. Is and can never be more important then any thing she wants. Yeah, thats it. I see the FreeBSD kernel as a work of art to read, a thing of beauty. To my mom? Bah she’d probably call it worthless trash. When its just as much art as the works of Michelangelo (di Lodovico Buonarroti Simoni) Michelangelo had a talent with his hands and heart taken to sculpture. Just the same, in code form and engineering design from where I stand. So is the FreeBSD kernels sources. Damn its like reading the work of a master. Sigh, no coding to night. Since I have to go to bed.. not like I’m likely to sleep worth a fart in the wind. How can one sleep when ones mind is free in torment ? I dunno. Heck if I was a drinking man. I think I’d be stone cold by now, sad thing I’m not maybe.. *SIGH* Why, why… can’t things just work. I work like a dog, and what do I have to show for it? I’ve seen a do be treated better. Now thats kind of sad isn’t it? lol. ph|_|{|<. In a way, I miss times since past. Yet at the same times hate them with ernest. No longer a pet spider, not enslaved yet still forced to toil.. well I now I’m not making much sense but. To make a long story short. Don’t ask, just leave ‘pet spider’ alone, its an emotion thats not going any where fast. I remember, being able to spend hard times in the company of som eone ho cared.. it was a good thing. Who knows maybe I’ll again share such a thing with some one special. I know the relationship we had was, I admit in the end not the way it had began. Lol, the tease put out of conmission by the one who wouldn’t flex. Uhh never mind that too. Life was kinda good for awhile, but it did teach a very good lesson. When they stop complaining after you havn’t shaved a week and things heat up even more. Be alarmed, be very very alarmed. ph|_|{|< only one to get me to exersie. What the frig was I thinking man.. like I don’t get enough of that at work ha ! I dunno any more. Was life really any better that way then it is like this ? Some times I wonder..but I think it is, or at least no worse. Oh well, at least shes not around to tempt me… man I wish I could dive into some code for the night.. but no I’ve got to get to bed.

ASAP to do

Sort the files form the SAS James mappack Check my backup CD’s for a copy of the (CS) de_dust RvS Map. Send to Wiz.

late night

Well I spent an interessting night, still havn’t solved the issue of whats wrong but I did accomlish a few things. Better code checking with gcc How to use lint How to use the GNU Debugger Personally I think that graphical front ends can have some very great advantages. But one should be able to use the basic tools by hand when/if necessary. As being able to live in a shell (no gui enviroment) is a part of my studies. So Being able to use a debugger on the CLI is important to me. Oh well each in turn. Most IDE’s provide some sort of user interface to wrap around the make and debuging tools. The basic idea that most compilers (so I’ve heard) follow including the GNU Compiler Collection gcc/g++ (gnu c/c++ compiler) use. Are as follows. gcc source.file -o outfile Now we don’t need the -o outfile if we like for example to compile our source.file into an execuitable named a.out in this case ! With the -o option we can choose a name for the execuitable. So ‘gcc rf.c -o rf’ would create an executible named ‘rf’ instead of ‘a.out’ from our rf.c source file. Is this any harder then Build->Compile in an IDE /w a mouse? Not really in my humble opinoin. Especially if you can sider that CLI access is embedded in many editors and many editors work in the CLI. Lets turn on some simple warnings gcc source.file -Wall -o outfile Now while one might argue any code that compiles and works is good enough. But what if it doesn’t work as exspected or it’s not very good? The -Wall option will at least give us a stronger warnings and errors about bad practices. Since -Wall turns on a bunch of warnings I’ll walk through some of them at the end. I personally have used -Wall since I found out there was an all switch (Thank you FreeBSD KNF Style manual!). And when it trips a warning message it usually reminds me I’m doing some thing wrong or I need to go correct a magic typomatical error. I noticed a few other niffty things in the OpenBSD KNF style guide. gcc -Wall -W -Wpointer-arith -Wbad-function-cast source.file -o outfile Gives us plenty of useless-to-semi-useful-to-useful information at times. Theres even more options. Since this is a lot more to type and I’m to lazy to whip up a little Makefile for all my stuff. I made a shell alias for it. I think its worth while to explore the available warning options and sort them as one needs. Note to self, work on some Makefile templets. Another intereing tool I always wanted to toy with, is lint. lint is a code checker for trying to detect features in C sources that are likely to be bugs, non-portable, or wasteful, e.t.c. The lint program h as a good enouhg manual which documents its command line switches but the basic useage is. lint source.c So far I like the -cehuz options most often and have an alias for it. And the -s and -p options from time to time have use hehehe. One thing I found odd about lint, is that it complaned about my // comments. rf.c(5): warning: ANSI C does not support // comments [312] Normally I use only /**/ comments and occasionally a few // in C++. Or I’ll mix /**/ and // comments if I’m leaving my self comments of diffrent types in a non-source file. Like /* Change done to something */ What I changed // Note for later for a meeting about it When I’m writing up files for things as I do’em. In this partuclar file how ever, since rf.c has been floating between systems a bit and editors I placed a pair of mode lines in it to set some options for my editors.

/*
* rf read file to standard out
*/

// vim: set noexpandtab ts=8 sw=4 ai :
// vi: set ai nu sw=4 :

Basically turn on line numbering in Vi and make sure my indentation settings are consistant, then turn on auto-indent in case I want it. (I don’t often use it). I remember, why I started using strictly /* Comments */ when I had always used // comments before. Was because I was told that some (older) compilers had problems with the newer // Comments. To use the GNU Debugger gdb to debug a program, first we need to enable the debugging symbols in GCC. We can do this by appending a -ggdb option some where in our compilation. gcc -Wall source.c -o outfile -ggdb Then we can run gdb outfile to start the debugger. At first when I tried looking at the debugger ages ago I didn’t have much luck with it. But after reading the manual like I usually do _before_ toying with CLI software it makes much more sense. You can get a topic list by typing help and more specific help like help breakpoints With GDB we can step through the program line by line, set break points at lines and/or functions. Examine data since as what value does variable foo have ? Run backtraces, look at the stack, set the command line arguments and all kinds of stuff. Really GDB deserves its own attention to the subject. Its long been my practice to save and pump code through GCC every few minutes or routines just to see if I missed any syntax errors I may have made. You don’t want to know how many times I’ve been preplexed just because I used a comma instead of a period or a period instead of a comma. And after hours infront of an editor couldn’t see the difference in my font lol – yes I am looking for a better fixed-width font ^_^ Now with lint and the various options of GCC I can do more for less 🙂 Since trying todo ANY THING during day light is pointless in this family. And trust me, when your the kind that inhales good manuals. And it takes you 30 minutes just to get through the first paragraph of a manual on PHP Syntax you know you have a fucking problem. So si nce I can’t code during the day. I have to do it late at night and I can’t do shit for long. So like 0735 in the morning these tools do kind of help me correct errors. From man 1 gcc Warnings are diagnostic messages that report constructions which are not inherently erroneous but which are risky or suggest there may have been an error. The -Wall option I listed turns on all this according to the manual Warn whenever a declaration does not specify a type. Warn whenever a function is used before being declared. Warn if the main function is declared or defined with a suspicious type. Warn whenever a function is defined with a return-type that defaults to int. Also warn about any return statement with no return-value in a function whose return-type is not void. Warn whenever a local variable is unused aside from its declaration, whenever a function is declared static but never defined, and whenever a statement computes a result that is explicitly not used. Warn whenever a switch statement has an index of enumeral type and lacks a case for one or more of the named codes of that enumeration. (The presence of a default label prevents this warning.) case labels outside the enumeration range also provoke warnings when this option is used. Warn whenever a comment-start sequence `/*’ appears in a comment. Warn if any trigraphs are encountered (assuming they are enabled). Check calls to printf and scanf, etc., to make sure that the arguments supplied have types appropriate to the format string specified. Warn if an array subscript has type char. This is a common cause of error, as programmers often forget that this type is signed on some machines. Some optimization related stuff. Warn if parentheses are omitted in certain contexts. When using templates in a C++ program, warn if debugging is not yet fully available (C++ only). From man 1 gcc: The remaining `-W…’ options are not implied by `-Wall’ because they warn about constructions that we consider reasonable to use, on occa sion, in clean programs. And here they are stright from the fine manual.

-Wtraditional
Warn about certain constructs that behave differently in tradi-
tional and ANSI C.

o Macro arguments occurring within string constants in the macro
body. These would substitute the argument in traditional C, but
are part of the constant in ANSI C.

o A function declared external in one block and then used after
the end of the block.

o A switch statement has an operand of type long.


-Wshadow
Warn whenever a local variable shadows another local variable.

-Wid-clash-len
Warn whenever two distinct identifiers match in the first len
characters. This may help you prepare a program that will com-
pile with certain obsolete, brain-damaged compilers.

-Wpointer-arith
Warn about anything that depends on the "size of" a function
type or of void. GNU C assigns these types a size of 1, for
convenience in calculations with void * pointers and pointers to
functions.

-Wcast-qual
Warn whenever a pointer is cast so as to remove a type qualifier
from the target type. For example, warn if a const char * is
cast to an ordinary char *.

-Wcast-align
Warn whenever a pointer is cast such that the required alignment
of the target is increased. For example, warn if a char * is
cast to an int * on machines where integers can only be accessed
at two- or four-byte boundaries.

-Wwrite-strings
Give string constants the type const char[length] so that copy-
ing the address of one into a non-const char * pointer will get
a warning. These warnings will help you find at compile time
code that can try to write into a string constant, but only if
you have been very careful about using const in declarations and
prototypes. Otherwise, it will just be a nuisance; this is why
we did not make `-Wall' request these warnings.

-Wconversion
Warn if a prototype causes a type conversion that is different
from what would happen to the same argument in the absence of a
prototype. This includes conversions of fixed point to floating
and vice versa, and conversions changing the width or signedness
of a fixed point argument except when the same as the default
promotion.

-Waggregate-return
Warn if any functions that return structures or unions are de-
fined or called. (In languages where you can return an array,
this also elicits a warning.)

-Wstrict-prototypes
Warn if a function is declared or defined without specifying the
argument types. (An old-style function definition is permitted
without a warning if preceded by a declaration which specifies
the argument types.)

-Wmissing-prototypes
Warn if a global function is defined without a previous proto-
type declaration. This warning is issued even if the definition
itself provides a prototype. The aim is to detect global func-
tions that fail to be declared in header files.

-Wmissing-declarations
Warn if a global function is defined without a previous declara-
tion. Do so even if the definition itself provides a prototype.
Use this option to detect global functions that are not declared
in header files.

-Wredundant-decls
Warn if anything is declared more than once in the same scope,
even in cases where multiple declaration is valid and changes
nothing.

-Wnested-externs
Warn if an extern declaration is encountered within a function.

-Wenum-clash
Warn about conversion between different enumeration types (C++
only).

-Wlong-long
Warn if long long type is used. This is default. To inhibit
the warning messages, use flag `-Wno-long-long'. Flags
`-W-long-long' and `-Wno-long-long' are taken into account only
when flag `-pedantic' is used.

-Woverloaded-virtual
(C++ only.) In a derived class, the definitions of virtual
functions must match the type signature of a virtual function
declared in the base class. Use this option to request warnings
when a derived class declares a function that may be an erro-
neous attempt to define a virtual function: that is, warn when a
function with the same name as a virtual function in the base
class, but with a type signature that doesn't match any virtual
functions from the base class.

-Winline
Warn if a function can not be inlined, and either it was de-
clared as inline, or else the -finline-functions option was giv-
en.

-Werror
Treat warnings as errors; abort compilation after any warning.

Ever think about some thing and not be able to get it out of ya head? Then when you try to you can’t remeber the details ? Hah I’m crazy. Oh well back to BBC Radio 1 and some ANSI C.

A plan man

Ahhh a theory that proves its snuff.

The MP Warehouse map is a nice little hostage rescue. We have about 4 levels
and two buildings. Theres also a loading dock on one flank.

The first building is a loading area. Roughly 4 floors. Ground, Lower Window
(Sniper area) and Catwalk to second building (hostage 1). Briefing room with
upper window (Large room). Then an upper area with a storeroom and a skybridge
to the second building (hostage 2).

The second building is a large warehouse with stairs on its far Eastern flank
going to Level 2 with the first hostage. Also a stairwell in the center of the
warehouse in the hostage area. Where we have a room like this

  ___________________________________
__|________| |Stairs up||||
__D________D Window |
| | | -------------------------|
| | | | Cat | |
| | | | Walk| |
| | | |Above| |
| | | _______________|
| | |_____________|Stairs down___|
|_| |
| Few Boxes Many Boxes |
| Hostage |
|____________________________ D __|
| Stairs down|||||||||||||||| |
-----------------------------------

D = Door

Full of tangos. Theres two on that catwalk above the room that shoot the
hostage in the upper area. That window room has stairs going up to the catwalk.

If those guys are alive and you enter from the stairs ’round thew many boxes.
They kill the upper hostage. Oh most every time today, when we assaulted from
the stairs and catwalk from the other building (to the left of the window
room). The top hostage died, once we lost the lower one hehe.

When I plugged the guys on the catwalk, nada ! The top hostage was safe when we
took the lower. So we could proceed to save the top one as fast as possible.

I’ve been playing long enough with my analytical mind. To start finding reasons
why things work or don’t work. I also bet Hexen a virtual beer on the outcome
of one of the tests. My past tests won me one hehe. So we have to ether take
the upper & lower at the same time. Or take care of those goons. Personally,
what I’m liking when you can have an 8 man team. Set up to snipe the catwalk
guys, have an element bang the brains out of the top hostage area. While
another team or teams take the lower. With 8 men on duty with SD weapons one
could enact a risky but realistically fun (imho) plan of multiple entry &
simultaneous take downs.

Alpha / Red team of 3 to take the top hostage, must clear first building.

Bravo / Blue team of 3 to take the stairs to the lower hostage with bangs. The
RG breaks off, uses gas to cover his flank (left) and sets up to snipe the
catwalk guys using a scoped or automatic weapon.

Charley / Green team of 2 to enters building 1 from the ground floor, backs up
Alpha / Red. While Charley / Green moves onto the catwalk, Alpha / Red moves up
the stairs, threw the upper window briefing room. Up the stairs into the store
room and onto the sky bridge.

All teams report in position, hold for entry on pre-elected team leaders GO
code. On the go, Alpha / Red slides open the door, tosses in 3-4 flashbangs to
cover as much of the room as possible. Including the area near them, the boxes
to the right, and near the hostage at 12 o clock far / catwalk to his left.
Green / Charley kicks in or breachs the catwalk door on level 2 and floods into
the lower hostage area. As Bravo / Blue kicks in or breaches their door on the
stairs, flash bangs and clears. Bravo / Blue and Alpha / Red take their
hostages and get the heck out of Dodge while Charley / Green clears out any
remaining threats.

Just a short idea to thinker with hehe. Basically take all hostages and threats
to the hostages as close to the same time as possible. Using SD weapons to
sneak in to position. Then toss in a few firecrackers and over whelm the tangos
from multiple angles and in multiple rooms at once.

I ain’t no Spider for nut’n man.

Hackish Solutions

Well, couldn’t stand my bloody wireles keyboard any more. Its a nice one, made by a chinise company that specializes in KBs. Restamped Gateway of course.

The keyboard I got for $3 at a library book sale (along with a pretty sweet 15″ Monitor). Has a problem of a sticking left shift. Well I think I’ve fixed it.

I Rolled over the keyboard and unplugged it. Unscrewed stuff and took off the bottom. I unscrewed what looked like a grounding wire and metal plate. Pull off a flat flismy layer with a pattern on it. No clue what its for yet. Then pulled off the wafer that interfaced with the keys. Yes I did read the technical manual to the NCC-1701-D a few to many times when I was young. So ‘wafer’ is in my technical volcabulary, thank you. The thing was pretty clean, so no problems. Packed every thing back up but the key was still sticky. Although not as bad, so what I did. Was to improvise from masking tape & a cable tie (which has been sitting on my desk annoying me for weeks). To make a little anti-stick sticky buffer. So instead of the key getting pushed down far enough to get STUCK it would be buffered back up from the cushion effect. So far it works prety good,maybe 95% of the time no stuck key, vs 75%. Not bad for a quick & DIRTY solution. Not very elagent but gee it worked well :-).

bounty

Plentiful day really. When I logged on both Valroe and Leon happened to be on. Ahh perfections start. Managed to get Miles for back up, Rasas office for ASCII support, TS2 for Voice over, TG#1 for operations and take care of some business.

Wiz has been showing me around the site. I’m really lucky to have some one to teach me. I know he didn’t, so he had to learn the hardway and fast often enough. Although I am sorry about the amount of AFK’age I’ve put him threw.

Oddly enough, ma was complaning that I “don’ do any thing but sit infront of that ing computer all day”. Well I think Wiz might disagree with her on that <_< ehehe!

Been working threw a nice book on html4/xhtml1/css2. I know that we’re on 1.0/1.1 recommendation & 2.0 working drafts for xhtml. But it helps. I do know my way around plane old HTML enough but I’m not familer with CSS. Casscading Style Sheets do how ever seem a good thing to learn. Oh well hehe. I also need to start learning PHP a bit, I want to inhale the manual some time along with a few others.

Honor

I have been perhapes, more greatly honored then I ever thought I could be.

Who knows, maybe they will put me to good use without over working my sorry @l2$$

Note to self

My scratch pad.

>3. any tryout should be posted on the calendar so everyone in the clan
>knows that there will be a tryout. Before you make the appointment, the
>tryout administrators need to be all lined up.

Now if I could just wrangle a few people into the right position at the same time. If I have to, I’ll conduct this tryout my self although I’d really like it if a LCpl can do it.

Supplimental note to self, be more agressive if neccessary about getting people involved then come as you are lets get the flubber done on time.