Thread: Spam, Bam!!!!

  1. #16
    Lean Mean Coding Machine KONI's Avatar
    Join Date
    Mar 2007
    Location
    Luxembourg, Europe
    Posts
    444
    Firefox with spell checker is your friend.

  2. #17
    Supermassive black hole cboard_member's Avatar
    Join Date
    Jul 2005
    Posts
    1,709
    Whoa I didn't realise that (blank) page still existed. Thought the mods would've taken it down after my... bad behaviour. Maybe I should actually write something about myself.
    Good class architecture is not like a Swiss Army Knife; it should be more like a well balanced throwing knife.

    - Mike McShaffry

  3. #18
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    BTW, Queatrix, I think you have to be logged in to CBoard to access http://cboard.cprogramming.com/member.php?u=14571

    [edit] Also, all of the download links from your website link to filenames with backslashes in them, which turns into:
    Code:
    http://queatrix.awardspace.com/archive%5CRecorder%5Creadme.txt
    You need to use forward slashes.

    Also, from http://queatrix.awardspace.com/archi...der/readme.txt:
    Program made my Queatrix.
    "my" -> "by".

    Also, this code, from http://queatrix.awardspace.com/archi...r/recorder.cpp
    Code:
    #define KEYDOWN(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 1 : 0)
    #define KEYUP(vk_code)   ((GetAsyncKeyState(vk_code) & 0x8000) ? 0 : 1)
    could be just
    Code:
    #define KEYDOWN(vk_code) (GetAsyncKeyState(vk_code) & 0x8000)
    #define KEYUP(vk_code)   (GetAsyncKeyState(vk_code) & 0x8000)
    because you don't assign variables to the result, you just check it for truth. (1==1 returns a true value, usually 1, but it can be something else.)

    BTW, thanks for that recorder program . . . it's given me an idea. [/edit]
    Last edited by dwks; 04-12-2007 at 03:00 PM.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  4. #19
    Registered User Queatrix's Avatar
    Join Date
    Apr 2005
    Posts
    1,342
    >> BTW, thanks for that recorder program . . . it's given me an idea.

    Whats that?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Spam Filters. ISP based email is dying.
    By Mario F. in forum A Brief History of Cprogramming.com
    Replies: 14
    Last Post: 03-05-2008, 12:05 PM
  2. severe drop in spam
    By ober in forum A Brief History of Cprogramming.com
    Replies: 13
    Last Post: 04-21-2005, 11:34 PM
  3. Spam... spam... spam...
    By dbaryl in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 06-11-2002, 09:08 PM
  4. removing email spam
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 2
    Last Post: 03-12-2002, 06:30 AM