When I got back from a day of jet ski fun, I thought that I lost my voice from all the yelling - boy was I wrong.
Monday night I went to the Kaiser after hours care & I was informed (basically) that since I didn't have a fever and my throat wasn't irritated - I was most likely suffering from post nasal drip. But they did take a troat culture & I should find out tonight what the results are.
Well, that was then & this is now. Just the act of typing in this message is causing me to sweat profusely. I feel like I'm burning up, but because of the sweating - my skin is cold and clammy.
My throat is killing me and talking to Bren takes a strength of will I never knew I had.
Yesterday I took off from work early & slept the whole day. I fear that I may have to do that again :(
phew. I'm taking off to see a pharmacist.
Yesterday I took the family to the cousins place in Fallbrook for a day of merriment in Oceanside
While there - well, I rode a jetski for the first time.
That was some serious fun.
That and I only capsized the boat once. ;-)
Unlike my last adventure into the daylight, I learned my lesson & this time I wore sunscreen (spf50) that combined with my light coloring earned me the nickname "kabuki man".
The only spots I missed were the tops of my feet and the top corners of my forehead (where I swear there was hair their before). Now I'm left with no voice, it's uncomfortable to wear shoes & my scalp is singed.
Not bad for a day of fun.
I've mentioned before about how chilly it is in my little cubical.
I must report that after days of informally watching the refrigerator thermometer in on my padded wall, I have come to the conclusion that when it's "just under" 74°F - I'm comfortable.
Any lower & I get chills from the downdraft over my head.
I think it's time to update my owners manual....
Jason De Arte, Optimal Operating Environment, Sitting at a computer in a cubical farm
Ambient Temperature Range: 73°F - 79°F
Light Source: Indirect, no fluorescents
Maximum Lumens: ???
Minimum Lumens: ???
I know I like it dim, but I just don't feel retentive enough to buy a light meter.
Hmmm... I wonder if I could write up a little app to use my web cam as a light meter? Then I would have to buy a light meter so I could calibrate it. ;-)
Have you ever had a conversation where you just didn't connect? Not on an emotional level or anything serious like that. But more along the lines of after a few moments you realize you are talking about two separate and completely different things.
Person A: While walking my dog yesterday I came across a ....
Person B: ...vector control is stepping up enforcement by my house, they keep leaving bait traps...
? ? ?
Many of you may have has similar experiences while making small talk to a Senior Level management Mucky-muck at your company.
Well, that's how I feel when I talk to someone with a radio shack press'n'play speakerphone or on a connection with an inordinate amount of lag. Did I talk to early? What did they just say? Damn that background noise that threw off the VOX sensitivity!
Then there's that awkward pause as both parties are playing an invisible game of chicken to see who talks first. I'm reminded of ethernet packet transmission. If packets collide, both NIC's wait a random timeout before resending. Instead of milliseconds - it's 2-10 seconds! And if they do collide - they randomly try again! Ahhhh! Lather, Rinse, Repeat!
All that effort focused on the timing - and no time left over to "read" the emotional state of the other party. ::sigh::
Hundereds of Thousands of Lines or more - and not a single
assert
in any form
[voice of James T. Kirk]
Must... Fight... the urge to... Buy??
multiple copies of Code Complete for the office
[/voice of James T. Kirk]
yea, I don't want to be the know-it-all-new-guy ;-)
I should try to learn from the coding techniques - and focus on the upcomming milestone. I mean, maybe they hand rolled their own assert and called it #WTF()? I haven't reviewed all the code, so I guess it is possible after all.
... that is not only well thought out, but supported (not undermined) by management.
I haven't had it this good since pre-ign-gamespy-merger with Tungsten, Spiff and Walla.
There's something comforting about having all the crazy requests from 100 different directions go to someone else (for later processing) while you focus on meeting your deadlines.
Think I'm just a lazy programmer that likes to bitch?
Well, read this
(it's an oldy but a goodie)
Just consider Management interruptions to be tasks switches and you'll understand why my stress level is waaay down in the hot tub.
My mind is focused and I'm on schedule - it's a good thing.
Have you ever stumbled across a C++ member function that needlessly had "this->" on every line?
void CFoo::func(int a, int b)
{
this->m_something = a;
this->m_orother = b;
this->doThat();
this->doSomething();
}
forget the poorly contrived code sample intended to protect the innocent, but do we really need "this" everywhere?
Maybe this is just a style thing, but it rubs me the wrong way.
When I was at CodeIt , my office buddy Forest had a habit of writing "things I hate" on the whiteboard. They were all born of painfull experinces with code, technologies or the behavioural patterns of others that worked in the building.
I'm going to continue the tradition - but mix it up with some positive stuff as well.
Thing I like: Visual Assist
It's like crack for MSDevStudio 6 / VS.NET programmers.
This is one of those little companies that Microsoft should just buy and integrate into their devstudio team.
You've probably come accross spamis spam. But this just makes me laugh
(content deleted)
If I'm reading this right - I sent this spam from my gmail account from Oklahoma State via budweiser.com to the same gmail account.
I hearby attest that I did no such thing.
Isn't one of the popular definitions of spam is that is has forged headers so that you cannot figgure out where it came from?
Judging by the content, this was sent by spamis, who's only purpose it seems is to broadcast it's whiny bitching about microsoft spam to as many people as possible - many of which never requested this one sided IRC-flame-war-turned-email.
That my friends is a classic demonstration of irony.
Brrrrrrr
Reminds me of the GameSpy Irvine days. When the outside temp would drop to the mid 70s and the AC would still be blowing as if it were 100 outside.
Other than that, my head is about to explode with all the stock market information I've been absorbing. It makes me kinda wish I paid more attention to my friends that got involved in the whole day trading thing a few years back. Not that I would have participated in the market, just to get a better feel for how the market works.
Qt is an odd one - but that's mainly because it's (theoreticaly) a cross platform C++ GUI library. It has some interesting layout concepts that remind me of XUL
Events/Signals - it's all the same. It's just a matter of how they are routed.
I have got to remember to bring in a flannel tommorow. BRRRRRRR
...the first example reads...
#include <qapplication.h>
#include <qlabel.h>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt!", 0);
app.setMainWidget(label);
label->show();
return app.exec();
}
Book in question C++ GUI Programming with Qt 3
It's been a while since I played with Qt by Trolltech so I needed a refresher to read. What I got contained code samples that, well reminded me of some unique code I once maintained by some guys after they sold their codebase to GameSpy :-|
Can you spot the red flag that this and all other examples in the first few chapters share?
Here's a tip - the ommission turns my stomach. No, that's too vague.
What if I update the code a wee bit? MS provides a helpfull diagnostic toolset for tracking memory allocations. Let's add it in and see what happens.
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#include <qapplication.h>
#include <qlabel.h>
int main(int argc, char *argv[])
{
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt!", 0);
app.setMainWidget(label);
label->show();
return app.exec();
}
Lo and behold, what informational goodies have been bestowed upon us through the debug out window....
Detected memory leaks!
Dumping objects ->
C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\crtdbg.h(552) :
{52} normal block at 0x00994328, 184 bytes long.
Data: <HP@ > 48 50 40 00 E2 CD CD CD 00 00 00 00 00 00 00 00
Object dump complete.
As you might have guessed, we're new'ing memory, but we're never delete'ing it.
I hate it when programming books teach bad habits.
How do we fix it? Just add a delete
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#include <qapplication.h>
#include <qlabel.h>
int main(int argc, char *argv[])
{
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt!", 0);
app.setMainWidget(label);
label->show();
int nResult = app.exec();
delete label;
return nResult;
}
TaDa! No more leaks.
It would have been nice if this wasn't the only book on Qt at my not so local B&N - the two nearby Borders had nothing comming close to Qt on the shelves :(
All in all, it's a great refresher - I just wish I found a better book. Maybe later I'll head down to Microcenter . They usually have a healthy selection of geek books.
You know, I may just finish the book and treat it as a "where's waldo" of finding bugs ;-)
(not the game company and not the fetish)
As previously mentioned, Bren and I switched cars today so that I could switch out her plates. However I was not expecting her to clean my sap, dust and turd encrusted vehical.
FOR SHE IS A GODESS
and, um, I hope she doesn't notice that I left her car on empty. shh!
I think I better get her something nice for our upcomping 11th wedding aniversary. (we've actually been together since January 1991)
Maybe something even shinier - but don't tell.
In order to get the job, I need to pass a drug test and a background check. Since I have no memory of ever robbing a bank, steeling a car or doing anthing nefarious (besides a few traffic tickets over the years) - I'm sure I'll pass that one with no probems. How can I be sure? Well a after the drug test from hell ( I drank A LOT of water beforehand to be sure that I could give a sample, but then they couldn't find the autorization so I had to wait with a full blader for over an hour ) I spent the rest of the afternoon at the DMV.
Well, since I have a few free days - why not suck up all that time in the offices of an underfunded state agency renound for it's customer queing systems? ;-)
This time I had two tasks - transfter a custom license plate to the VUE for Bren, and get a motorcycle license.
Oh, and since I my normal class C is going to expire in THREE YEARS FROM NOW, they thought it prudent to make me re-take the class C test as well. [sarcasm]Thank's DMV - not only did you save me from having to come back in 3 years and wait all over again - you sprong a pop-quiz that effects my ability to get to and from work! [/sarcasm] To bad I didn't study for that test.
Long story short, I passed the Class C, got the Motorcycle learners permit, and transfered the plates to Bren's car. I'm sure if I had any outstanding warents or anything evil - I wouldn't have been able to get out of there alive.
Now I can ride the Vespa ET2 that I won in a contest 2 years ago! What can I say - I've been very busy.
Vrrm Vrooooommmmmm! oh, I mean "put put put put put put....." It's only a 49cc 2cly motor-scooter-cycle that maxes out at 40mph.
Sweet! Less than a week unemployed and I already got a job offer for between the GameSpy and CodeIt salaries. And I havn't even received an unemployment check yet.
As for the drug test? Unless somebody spiked the water - they will be amazed at the clarity of the results. I'm nothing like Flinklocke's Priest party companion
I was hoping for 3 interviews per day, but one is better than none :)
Today I hit monster.com
I only have two major complaints...
Yes, I know - Saturday and Sunday would be days 2 and 3, making today day 4. But I'm talking normal work days
You say "but you normally work Saturdays"
Well, Um... I'm counting "full bank workdays". that's a benefit to being unemployed - you make your own rules as you go along :-P
Tomorrow's looking good. Phone interview at 9am