Kieveli

4,415
Reputation
268 views

Registered User

Name Kieveli
Member for 1 year
Seen 7 hours ago
Website
Location Canada
Age 34
I'm a software developer. I graduated with my BCSc in 1999, and I've been working in the field ever since. My experience has been with C++, Delphi, Java, MSSQL, Oracle, ASP, JSP, and on and on and on.
Nov
25
comment Staying Relevant As a Programmer
Wish there were a 'vote not to close' link.
Nov
25
asked Do you know of any Flex Point and Click game Libraries?
Nov
24
answered Set combination question
Nov
24
answered How can i find which DIrectX version install on my system through code
Nov
23
answered Can a SQL Server Trigger send me an email?
Nov
20
comment What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language?
I've been programming in C++ for 10+ years, and I still read Stroustrup from time to time.
Nov
18
answered MySQL deleting multiple columns from two table
Nov
17
comment MFC multithreading problem with delete[] , dbgheap.c
If you simplify the problem, it might go away... Your '...' with doing something with bucket may be the source of your problems - it's too difficult to tell! Although suspicions on the constructor not initializing the memory for the buffer variable would make sense if it's failing on the destructor's delete.
Nov
17
comment How do I “normalize” a pathname using boost::filesystem?
I think wanting to normalize the path is sane, natural, and expected behaviour. Looks like they have over-thought this one and erred on the side of wrong.
Nov
17
answered MFC multithreading problem with delete[] , dbgheap.c
Nov
13
comment Print Alternating Characters From Two Strings (Interleaving) Using Recursion Java
It's dirty either way... A silly thing to do with recursion ;) Not to mention all the overhead of string addition instead of using a string builder.
Nov
13
answered Print Alternating Characters From Two Strings (Interleaving) Using Recursion Java
Nov
13
answered How to Convert &&++%&#37 in html page to normal string?
Nov
12
answered How to get all filename in a given directory
Nov
10
comment How to force a Java thread to close a thread-local database connection
MMMmmm missing destructors... drool Java's biggest failing.
Nov
3
answered Block Control+Alt+Delete
Nov
2
comment My .jar file is not working in java
The Site's Crapper application could also be getting filtered for bad language by the JVM boostrapping...
Nov
2
comment Simulating latency when developing on a local webserver
... but you'd get some performance reduction during inclimate weather, so the testing would be inconsistent.
Nov
1
answered Variable number of arguments in C++?
Nov
1
answered How is a block diagram organized?
Oct
29
answered Obsolete Xilinx Chip
Oct
29
answered Is it worth it to use FLEX + JAVA
Oct
26
comment Custom Preloader in Flex 4?
Wish this had a code sample!
Oct
21
comment Lint tool for actionscript?
Is it time to ask the question again?
Oct
19
accepted ASSERT fails on CDC SelectObject() call - What can I try?
Oct
18
awarded  Nice Answer
Oct
16
comment ASSERT fails on CDC SelectObject() call - What can I try?
There's one handle->object lookup map for each thread... I was creating the CBitmap in one thread, then trying to use it in the other... the lookup in the map was failing.
Oct
16
comment ASSERT fails on CDC SelectObject() call - What can I try?
Yes. pObject is valid, and a CBitmap... but not the same CBitmap constructed in the 'new Bitmap()' statement.
Oct
16
answered ASSERT fails on CDC SelectObject() call - What can I try?
Oct
16
asked ASSERT fails on CDC SelectObject() call - What can I try?
Oct
14
comment How to get the name of an Event from a handle
I guess I still don't see why you would want to do a lookup on the name of the event given the handle.
Oct
14
comment How to get the name of an Event from a handle
It's no problem when you first add it if you're careful. It's after the third person has modified the class, made one of the vectors publicly accessable, and then allowed some other class to modify it directly. A map is more straight-forward.
Oct
14
comment How to get the name of an Event from a handle
A map would be better than manually keeping two arrays aligned. The overhead is insignificant.
Oct
14
answered How to get the name of an Event from a handle
Oct
14
revised Pointers as function parameters in C
added 4 characters in body
Oct
13
accepted Pointers as function parameters in C
Oct
13
revised Pointers as function parameters in C
added 110 characters in body
Oct
13
answered Pointers as function parameters in C
Oct
13
answered Lost svn directory some time ago.. how do I find out which revision has it?
Oct
13
comment Kernel compilation error
I didn't know people compiled new kernels for Fedora 9 - I assumed they always went with the pre-built kernels supplied with the OS!
Oct
2
comment Arm Board Bring Up
Nice! I always thought $150 was a bit much to spend for a dev kit for doing homebrew / hobbiest activities...
Oct
2
comment How do I make a circle of images work like a fisheye in JavaScript?
It's a valid question that's related to programming. Why the aversion to helping on a help site?
Oct
2
revised How do I make a circle of images work like a fisheye in JavaScript?
Gave the question a good title.
Oct
2
comment Good blogs about multi-threaded development?
+1 Point Cherry.
Oct
2
comment Javascript : {}==false and false=={}
MMmmm questions about useless statements drool +1
Oct
2
comment C++ Laws? (similar to Law of Big Three)
Don't take this "Law" too seriously. The default copy constructor is fine for most cases, and you only need the assignment operator if you're using your classes in a fancier way than most classes are used.
Oct
1
answered Arm Board Bring Up
Sep
30
answered Java’s Representation of Serialized Objects
Sep
30
answered Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
Sep
30
accepted Build Eclipse Java Project from Command Line