Looks like Hotmail is 10 today. I didnt sign up right away, but a little after, in about a year. You can check when you started at http://account.live.com
Here is the proof:
I should have signed up earlier 🙂
Looks like Hotmail is 10 today. I didnt sign up right away, but a little after, in about a year. You can check when you started at http://account.live.com
Here is the proof:
I should have signed up earlier 🙂
Friday – Jimmy’s Pour House
Saturday, Cities – Eat, Hotel, Wedding, Reception
Sunday – Wake up, IKEA, Home, Oblivion, Recover
Monday – Oblivion, Furniture Shopping, Dairy Queen, Friends, Oblivion
Tuesday – Wake up, Clean, Geek, …. hang out maybe catch some 4th of July Festivities.
Happy 4th 🙂
I killed my entertainment center tonight. Moving soon, and time to get a new one. I have had this one since around 1995-96, so 10 years for a cheapo EC, not bad. Little wobbly, but it worked. 6 hits with a hammer and it was gone ghandi. Saved the pegs though, you can always use those. Now I just need somewhere to put my 360 in the meantime 🙂
I added a mologogo map on the side of my blog. If I am out and about with my pocket pc 6700 with my GPS running, it should update where am, good for all you stalkers out there.
I just got on the Windows Live Mail Destkop Beta (whew, long name, WLMDB) – installed it yesterday. Seems pretty cool, few major gripes though, I can’t minimize to the systray and I really dont know where to see my contacts, sent items, etc. Its like a really stripped down outlook or suped up outlook express. The active search is cool, but I am an MSN premium subscriber, I shouldn’t have that shown to me at all. Overall it seems like they could do better, the systray thing really irks me 🙂
SHGetFolderPath doesn’s seem to work on Windows 98. If you use it to try to find like the “My Pictures” directory, it will error out. I have read that some versions of Win98 do work, depends on the version of shell32.dll (5 and greater). A workaround that you can use , which probably isn’t 100% good, but works is looking for the My Pictures path in the registry (HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerShell Folders). Just another quirky thing with the different Microsoft OS’s.
Playing Call of Duty 2, the British troops call the German Troops “Jerries”. Searching around on the net didn’t yield much, but I asked my Dad, and he asked a WWII vet, and here is what I got:
The term Jerry stems from WWI, the Germans used their helments to goto the bathroom in, just like we call the bathroom the “John”
Not sure if it is true, but its a good explination.
strcpy – Copies the content pointed by src to dest stopping after the terminating null-character is copied.
dest should have enough memory space allocated to contain src string.
strncpy – Copies the first num characters of src to dest.
No null-character is implicitly appended to dest after copying process. So dest may not be null-terminated if no null-caracters are copied from src.
If num is greater than the length of src, dest is padded with zeros until num.
Now, maybe I just dont know, but why would you use strcpy when strncpy is available? I guess I really havent found a solid answer. I mean what were they thinking with strcpy? Were they just trying to create an easy way to have buffer overflows all over? (Same goes for strcat and strncat). I guess I am glad now to use C# and VB.net the majority of the time when you really don’t have to worry about this stuff. With C/C++ its all over the place, and you can tell, just look at all the buffer overflow vulnerabilites withing Microsoft products.
The last few days, I have been looking into a solution to kill a process in c/c++ – but not just any process, a ScreenSaver running while the computer is locked. Most examples on MSDN and such terminiate processes by sending close messages to them, and 99% of the time that works. It even works for ScreenSavers that are running while the computer is locked. Thing is, I didnt want to bundle kill.exe that comes on the Windows NT Resource kit. Off to search google, pskill by sysinternals works too, but again with the bundling. Search the net some more, I found a link to the kill.exe source code from MSDN. The big difference in this code compared to all other kill examples, is this
//
// Obtain the ability to manipulate other processes
//
EnableDebugPriv();
That opened the door for the kill.exe to stop a process when the computer was locked 100% of the time. Im sure there is some long explination dealing with user mode and kernel mode code, maybe someone can comment on and shed some more light on the subject. I have attached the source code that I found here just in case the site it was on goes down. Well, in the end, we ended up getting the program to kill the process while the computer was locked, so it worked out well 🙂
ScaleOut Software has a product to manage sessions on a web farm. I have tried this product and have had nothing but issues. I did actually end up getting it working once, but it turns out, even when it does work correctly, it gives your network problems
It seems that the fix for any issue is “You arent running the latest version” – which might be true, but many times, we would be running version 1.3.2 for example that we downloaded two days ago, and then they release 1.3.2.1 the day after we downloaded 1.3.2 – this is a cop out in saying that its on our end, when in reality it is just buggy software that has releases every other day to fix bugs. I dont know if there is any other competing product in the market right now though, so they kind of have it locked. You can use Microsoft’s ASP.Net Session provider, but that is limited when in a farm scenario. Using MSSQL for your sessions has performance issues. I have heard that ex-microsofties tell people to just roll their own, but that seems too much, especially in a small shop. Hopefully ScaleOut gets more stable, because it could be a good product, if it just didn’t cause issues 🙂