User Kieveli - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:56:49Zhttp://stackoverflow.com/feeds/user/15852http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1797949/do-you-know-of-any-flex-point-and-click-game-libraries0Do you know of any Flex Point and Click game Libraries?Kieveli2009-11-25T16:02:29Z2009-11-26T01:43:16Z
<p>I'm looking for a game library for Flex that supports such features as:</p>
<ul>
<li>Movement</li>
<li>Inventory</li>
<li>Items</li>
</ul>
<p>Does anyone know of any libraries that might be suitable?</p>
http://stackoverflow.com/questions/1789964/set-combination-question/1790015#17900150Answer by Kieveli for Set combination questionKieveli2009-11-24T13:21:36Z2009-11-24T13:21:36Z<p>I would do something like this:</p>
<pre><code>For each item in my combination ( 1 then 2 ) do the following
* For each item in the set (1, 2, 3, then 4) do the following
** if set item is different from both combination item 1 and 2
*** print out combination item and print out set item
</code></pre>
http://stackoverflow.com/questions/1789380/how-can-i-find-which-directx-version-install-on-my-system-through-code/1789984#17899840Answer by Kieveli for How can i find which DIrectX version install on my system through codeKieveli2009-11-24T13:14:30Z2009-11-24T13:14:30Z<p>What about dynamically requesting different versions of DirectX objects through COM via the CoCreateInstance call? Check for fail conditions which would indicate a version is not available. Check one-by-one with the latest version until you get an object successfully.</p>
http://stackoverflow.com/questions/1780486/can-a-sql-server-trigger-send-me-an-email/1780497#17804971Answer by Kieveli for Can a SQL Server Trigger send me an email?Kieveli2009-11-23T00:06:20Z2009-11-23T00:06:20Z<p>Triggers should be kept to a minimum time. Atomic database updates / inserts / deletes should be allowed to be as fast as possible. Consider adding a separate table which the trigger can insert data into which a separate process monitors and initiates an email based on the contents.</p>
<p>Of course, this doesn't address whether or not it's possible to use TransactSQL to create an email - I'm curious about that one myself!</p>
http://stackoverflow.com/questions/1755971/mysql-deleting-multiple-columns-from-two-table/1755994#17559940Answer by Kieveli for MySQL deleting multiple columns from two tableKieveli2009-11-18T13:34:35Z2009-11-18T13:34:35Z<p>Some databases support enforcing referential integrity through foreign keys. I've done it with Oracle, but I'm no mysql expert. It's done as an attribute of the foreign key through the keyword 'CASCADE DELETE'. The database automatically handles it for you.</p>
<p>Here's a quick Oracle example:</p>
<pre><code>ALTER TABLE Things ADD CONSTRAINT FK_Things_Stuff
FOREIGN KEY (ThingID) REFERENCES Stuff (ThingID)
ON DELETE CASCADE
;
</code></pre>
http://stackoverflow.com/questions/1746159/mfc-multithreading-problem-with-delete-dbgheap-c/1746374#17463740Answer by Kieveli for MFC multithreading problem with delete[] , dbgheap.cKieveli2009-11-17T03:20:05Z2009-11-17T03:20:05Z<p>You're constructing a RenderBucket. Are you sure you're calling the 'Bucket' class's constructor from there? It should look like this:</p>
<pre><code>class RenderBucket : public Bucket {
RenderBucket( int a_resX, int a_resY )
: Bucket( a_resX, a_resY )
{
}
}
</code></pre>
<p>Initializers in the Bucket class to set the buffer to NULL is a good idea... Also making the Default constructor and copy constructor private will help to make double sure those aren't being used. Remember.. the compiler will create these automatically if you don't:</p>
<pre><code>Bucket(); <-- default constructor
Bucket( int a_resx = 0, int a_resy = 0 ) <-- Another way to make your default constructor
Bucket(const class Bucket &B) <-- copy constructor
</code></pre>
http://stackoverflow.com/questions/1726887/print-alternating-characters-from-two-strings-interleaving-using-recursion-java/1726909#17269090Answer by Kieveli for Print Alternating Characters From Two Strings (Interleaving) Using Recursion JavaKieveli2009-11-13T03:15:30Z2009-11-13T03:15:30Z<p>This should work:</p>
<pre><code>public String Interleave( String first, String second )
{
if ( first.length() == 0 )
return second;
if ( second.length() == 0 )
return first;
return first.substring(0,1) + second.substring(0,1) +
Interleave( first.substring(1), second.substring(1) );
}
</code></pre>
http://stackoverflow.com/questions/1726871/how-to-convert-ampamp3737-in-html-page-to-normal-string/1726886#17268860Answer by Kieveli for How to Convert &&++%% in html page to normal string?Kieveli2009-11-13T03:08:56Z2009-11-13T03:08:56Z<p>You're looking for 'URLDecode'. It is not implemented in MFC - everyone has their own solutions. Try this one:</p>
<pre><code>std::string UriDecode(const std::string & sSrc)
{
// Note from RFC1630: "Sequences which start with a percent
// sign but are not followed by two hexadecimal characters
// (0-9, A-F) are reserved for future extension"
const unsigned char * pSrc = (const unsigned char *)sSrc.c_str();
const int SRC_LEN = sSrc.length();
const unsigned char * const SRC_END = pSrc + SRC_LEN;
// last decodable '%'
const unsigned char * const SRC_LAST_DEC = SRC_END - 2;
char * const pStart = new char[SRC_LEN];
char * pEnd = pStart;
while (pSrc < SRC_LAST_DEC)
{
if (*pSrc == '%')
{
char dec1, dec2;
if (-1 != (dec1 = HEX2DEC[*(pSrc + 1)])
&& -1 != (dec2 = HEX2DEC[*(pSrc + 2)]))
{
*pEnd++ = (dec1 << 4) + dec2;
pSrc += 3;
continue;
}
}
*pEnd++ = *pSrc++;
}
// the last 2- chars
while (pSrc < SRC_END)
*pEnd++ = *pSrc++;
std::string sResult(pStart, pEnd);
delete [] pStart;
return sResult;
}
</code></pre>
http://stackoverflow.com/questions/1722162/how-to-get-all-filename-in-a-given-directory/1722189#17221891Answer by Kieveli for How to get all filename in a given directoryKieveli2009-11-12T13:31:09Z2009-11-12T13:31:09Z<p><a href="http://www.boost.org/" rel="nofollow">Boost</a> has a great platform independent <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/filesystem/doc/index.htm" rel="nofollow">filesystem library</a>. It'll work with MFC.</p>
<p>Here's an example from <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/filesystem/doc/reference.html#Class-template-basic%5Fdirectory%5Fiterator" rel="nofollow">their reference</a>:</p>
<pre><code>#include <iostream>
#include <filesystem>
using std::tr2::sys;
using std::cout;
int main(int argc, char* argv[])
{
std::string p(argc <= 1 ? "." : argv[1]);
if (is_directory(p))
{
for (directory_iterator itr(p); itr!=directory_iterator(); ++itr)
{
cout << itr->path().filename() << ' '; // display filename only
if (is_regular_file(itr->status())) cout << " [" << file_size(itr->path()) << ']';
cout << '\n';
}
}
else cout << (exists(p) ? "Found: " : "Not found: ") << p << '\n';
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1660106/block-controlaltdelete/1669025#16690250Answer by Kieveli for Block Control+Alt+DeleteKieveli2009-11-03T17:48:57Z2009-11-03T17:48:57Z<p>I wonder if you could install a filter on the keyboard driver?</p>
<p>I know on USB interfaces, you can install an upper or lower filter to the USB data to intercept it as it arrives on the computer, and perhaps a similar approach could be taken. Essentially, you would modify the key combinations coming from the keyboard as long as your testing application is running.</p>
<p>I did find an 'UpperFilters' registry key defined for my keyboard...</p>
<p>This <a href="http://benoit.papillault.free.fr/usbsnoop/doc.php.en" rel="nofollow">USB sniffer</a> comes with source code that implement a filter. It may be usable in the context of a keyboard sniffer / modifying filter. (<a href="http://benoit.papillault.free.fr/usbsnoop/" rel="nofollow">Download link</a>)</p>
http://stackoverflow.com/questions/1657883/variable-number-of-arguments-in-c/1658125#16581250Answer by Kieveli for Variable number of arguments in C++?Kieveli2009-11-01T19:44:34Z2009-11-01T19:44:34Z<p>It's possible you want overloading or default parameters - define the same function with defaulted parameters:</p>
<pre><code>void doStuff( int a, double termstator = 1.0, bool useFlag = true )
{
// stuff
}
void doStuff( double std_termstator )
{
// assume the user always wants '1' for the a param
return doStuff( 1, std_termstator );
}
</code></pre>
<p>This will allow you to call the method with one of four different calls:</p>
<pre><code>doStuff( 1 );
doStuff( 2, 2.5 );
doStuff( 1, 1.0, false );
doStuff( 6.72 );
</code></pre>
<p>... or you could be looking for the v_args calling conventions from C.</p>
http://stackoverflow.com/questions/1658058/how-is-a-block-diagram-organized/1658080#16580801Answer by Kieveli for How is a block diagram organized?Kieveli2009-11-01T19:30:58Z2009-11-01T19:30:58Z<p>Blocks and roof have actual names when you are using UML to design your view of the application. UML uses decorations on lines between classes to denote their relationship. Typically the relationship is either a 'is a' or 'has a' relationship. It derives from another class, or it has another class as a member variable.</p>
<p>In practical uses of diagrams, a large amount of classes are often left out of the picture in order to clearly communicate a given idea on a given diagram. I often leave out a class hierarchy when I'm making a class diagram concerning a particular focus. It usually takes a large number of diagrams to fully describe an application, and you can even exclude some classes completely and chalk it up to implementation details.</p>
<p>I would highly recommend looking into UML's component diagrams, class diagrams, and then continue on to other styles that you will find useful including: state diagrams, sequence diagrams, and use case diagrams. The great part is that most developers will have seen these, or worked with them before.</p>
http://stackoverflow.com/questions/702838/obsolete-xilinx-chip/1644279#16442790Answer by Kieveli for Obsolete Xilinx ChipKieveli2009-10-29T14:51:17Z2009-10-29T14:51:17Z<p>Check out <a href="http://www.ftdichip.com/Products/EvaluationKits/FPGA.htm" rel="nofollow">FTDI</a>. You might be able to convince them to go with some updated hardware. It's currently $150 CAD for USB + FPGA, and $80 CAD extra if you bundle it with a Manual. Plus shipping.</p>
<p>It even supports the free web kit available from the Xilinx website.</p>
http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/1643669#16436690Answer by Kieveli for Is it worth it to use FLEX + JAVAKieveli2009-10-29T13:19:50Z2009-10-29T13:19:50Z<p>I think you'll find way more support for using a Java Applet in the user interface instead of Flex. By support I mean libraries, forums, and tutorials. I've been looking at Flex for only a little while so far, and the search results I'm finding are geared less towards developers, and more towards non-developers trying to make pretty things. I'm of the opinion that there's nothing wrong with Java applets as a front-end, and I think more people will come around once Java shortens the VM's launch times (a current priority for the next release).</p>
<p>If Java applets are a point of contention, then there's the Google Web Toolkit (GWT). It allows for full development and testing and debugging within your Java development environment, but then deploys automatically to an HTML / JavaScript. Absolutely Fantastic. Their third party components have really come a long way, and their user support makes the choice an easy one.</p>
<p>Less languages = less mind-stack swaps.</p>
http://stackoverflow.com/questions/1421277/how-do-you-design-a-c-application-so-that-mock-objects-are-easiest-to-use2How do you design a C++ application so that Mock Objects are easiest to use?Kieveli2009-09-14T12:33:24Z2009-10-20T12:34:57Z
<p>I've never developed using Test Driven Development, and I've never used Mock Objects for unit testing. I've always unit tested simple objects that don't incorporate other aspects of the application, and then moved on to less simple objects that only reference objects that have already been unit tested. This tends to progress until the final "unit" test is a component test.</p>
<p>What design techniques are used to make the replacing of internal classes with Mock Objects as easy as possible?</p>
<p>For example, in my code, I would include the header file for myDataClass within myWorkerClass. myDataClass is constructed by myWorkerClass, and its lifetime is tied to myWorkerClass. How can you set it up so that it would include a mock myDataClass when the include is hard-wired?</p>
http://stackoverflow.com/questions/1579154/assert-fails-on-cdc-selectobject-call-what-can-i-try0ASSERT fails on CDC SelectObject() call - What can I try?Kieveli2009-10-16T16:52:06Z2009-10-16T17:23:31Z
<p>I'm working on a multi-threaded win32 MFC application. We are rendering a map and displaying it in a pane in the user interface along with custom-rendered objects on top. It's slow to render (~800 ms), which is happening on the User Interface thread.</p>
<p>I'm trying to move the rendering onto its own thread so that the menus still remain snappy while the other rendering can still run in the background. The Draw thread will render continually using its own CDC. The UI thread will call a redraw function, which locks the mutex, and takes the last snapshot of the <code>CBitmap</code> and draws it using the UI's <code>CDC</code>. Every location where the Draw thread's <code>CD</code>C is used, is locked by the mutex.</p>
<p>What I'm seeing is the thread creating a new <code>CBitmap</code> via <code>CreatCompatibleBitmap</code>, and then trying to select the new <code>CBitmap</code> object into the Draw thread's <code>CDC</code>.</p>
<pre><code>this->m_canvas.CreateCompatibleDC(&compatibleDC);
this->m_bitmap = new CBitmap();
this->m_bitmap->CreateCompatibleBitmap(&compatibleDC, m_width, m_height);
m_oldBitmap = this->m_canvas.SelectObject(m_bitmap);
</code></pre>
<p>At this point, there is a debug ASSERT failure in CGdiObject::FromHandle().</p>
<pre><code>CGdiObject* PASCAL CGdiObject::FromHandle(HGDIOBJ h)
{
CHandleMap* pMap = afxMapHGDIOBJ(TRUE); //create map if not exist
ASSERT(pMap != NULL);
CGdiObject* pObject = (CGdiObject*)pMap->FromHandle(h);
ASSERT(pObject == NULL || pObject->m_hObject == h);
return pObject;
}
</code></pre>
<p>The second <code>ASSERT</code> is failing because the <code>m_hObject</code> does not match the handle passed in. Basically, MFC is taking the handle, and doing a lookup to get a <code>CBitmap</code> object which somehow doesn't match the <code>CBitmap</code> that was just created.</p>
<p>Does this sound familiar to anyone? What could be happening to cause the <code>FromHandle</code> method to return the wrong object? Is there a fundamental flaw with the way I create a <code>CDC</code> for the Draw thread, and then re-use it over and over? Are there any approaches I can take to help debug/fix this problem?</p>
http://stackoverflow.com/questions/1579154/assert-fails-on-cdc-selectobject-call-what-can-i-try/1579328#15793280Answer by Kieveli for ASSERT fails on CDC SelectObject() call - What can I try?Kieveli2009-10-16T17:23:31Z2009-10-16T17:23:31Z<p>Golden. The mapping between handles and objects are in <a href="http://support.microsoft.com/kb/147578/EN-US/" rel="nofollow">thread-local storage</a>.</p>
<blockquote>
<p>In a multi-threaded environment
because windows are owned by threads,
MFC keeps the temporary and permanent
window handle map in thread local
storage. The same is true for other
handle maps like those for GDI objects
and device contexts. Keeping the
window handle maps in thread local
storage ensures protection against
simultaneous access by several
threads.</p>
</blockquote>
<p>So basically, store the handle, then create a CBitmap from the handle in order to manipulate them between threads.</p>
<p>My mistake was in the UI thread creating my CBitmap, and then accessing the CBitmap object from both threads.</p>
http://stackoverflow.com/questions/1456328/is-selenium-a-good-piece-of-testing-software-to-use5Is Selenium a good piece of testing software to use?Kieveli2009-09-21T19:21:36Z2009-10-16T09:32:46Z
<p>On my last project, I created some test cases through <a href="http://seleniumhq.org/" rel="nofollow">Selenium</a>, then automated them so they would run on every build launched from <a href="https://hudson.dev.java.net/" rel="nofollow">hudson</a>. It worked fantastic, and was consistent for about a month.</p>
<p>Then the tests started failing. It was, most times, timing issues which caused the failures. After about two weeks of effort put in over the course of the next two months, it was decided to drop the Selenium tests. They should have been passing, but the responses and timing of the web application were varying to the extent to which tests would fail when they should have passed.</p>
<p>Did you have a similar experience? Is Selenium still a good tool to use for Web Application testing?</p>
http://stackoverflow.com/questions/1566241/how-to-get-the-name-of-an-event-from-a-handle/1566370#15663700Answer by Kieveli for How to get the name of an Event from a handleKieveli2009-10-14T13:52:23Z2009-10-14T13:52:23Z<p>Normally the name of an event is used to call OpenEvent() to get the Handle. This way, you don't need to communicate a handle at runtime, but instead settle on a naming convention for the name of the event.</p>
<p>I can think of three ways to do this:</p>
<ul>
<li>Loop over all hard-coded event names and call OpenEvent()</li>
<li>Save the handles and names in an std::map</li>
<li>Create a class to store your handles and names (possibly in an std::map), and write methods to quickly get a name from a handle.</li>
</ul>
<p>Are you deciding what actions to take based on the name of the event? An 'if else if' statement that checks the names of the handles one-by-one to determine what action to take? This kind of scenario usually leads me to consider inheritance as a potential solution. Bear with me for a bit.</p>
<p>What if you create a base class, say EventAction. This has a handle to an event, and a virtual member function go_go_commandos(). You derive from it for each 'event' that has an action to be taken, and implement the action in the go_go_commandos() method of each deriving class.</p>
<p>Now what you need is a container so you can say actionlist->GetEventAction( handle )->go_go_commandos().</p>
<p>Did that help at all?</p>
http://stackoverflow.com/questions/1563061/pointers-as-function-parameters-in-c/1563075#15630756Answer by Kieveli for Pointers as function parameters in CKieveli2009-10-13T21:41:51Z2009-10-14T13:37:35Z<p>You simply need to dereference your pointer:</p>
<pre><code>void add(int *variable1, int addValue)
{
*variable1 += addValue;
}
</code></pre>
<p>In your function call, you pass in "&variable1" which means 'a pointer to this variable'. Essentially, it passes in the exact memory location of variable1 in your main function. When you want to change that, you need to dereference by putting an asterix "*variable1 += 6". The dereference says 'now modify the int stored at this pointer'.</p>
<p>When you use the asterix in your function def, it means that 'this will be a pointer to an int'. The asterix is used to mean two different things. Hope this helps!</p>
<p>Oh, and also add the explicit type to the function call:</p>
<pre><code>void add(int *variable1, int addValue)
</code></pre>
http://stackoverflow.com/questions/1562931/lost-svn-directory-some-time-ago-how-do-i-find-out-which-revision-has-it/1563059#15630590Answer by Kieveli for Lost svn directory some time ago.. how do I find out which revision has it?Kieveli2009-10-13T21:39:30Z2009-10-13T21:39:30Z<p>I wonder if you could write a small script to use the command line svn to try something along the lines of:</p>
<ol>
<li>For each revision x in a range</li>
<li>Switch to revision x</li>
<li>Compare directory against your working copy</li>
<li>If they match, stop</li>
</ol>
<p>This would be something to try if someone who knows SVN inside-and-out doesn't come up with a way to quickly do a binary search and compare.</p>
http://stackoverflow.com/questions/1503465/arm-board-bring-up/1503575#15035752Answer by Kieveli for Arm Board Bring UpKieveli2009-10-01T12:09:13Z2009-10-01T12:09:13Z<p>Check the <a href="http://www.ftdichip.com/Documents/DataSheets/DLP/dlp-2232pbv15.pdf" rel="nofollow">DLP-2232PB-G</a> <a href="http://www.ftdichip.com/Products/EvaluationKits/DIPModules.htm" rel="nofollow">evaluation kit from FTDI</a>. Looks great for newbies trying to get into microcontrollers, and it comes with everything you need. It's a PIC controller - not an ARM controller, but the easiest starting point that I've seen... and same basic methods of development.</p>
http://stackoverflow.com/questions/1501186/javas-representation-of-serialized-objects/1501193#15011933Answer by Kieveli for Java's Representation of Serialized ObjectsKieveli2009-09-30T23:28:36Z2009-09-30T23:28:36Z<p>If you have two objects with all properties set to identical values, then they will be serialized the same way.</p>
<p>If it weren't repeatable, then it wouldn't be useful!</p>
http://stackoverflow.com/questions/1499239/database-vs-flat-text-file-what-are-some-technical-reasons-for-choosing-one-over/1499271#14992714Answer by Kieveli for Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn't an issue?Kieveli2009-09-30T16:31:44Z2009-09-30T16:31:44Z<p>Suggest using log4j / log4cxx (you didn't specify a language). There are appenders available that can put the data into a database, or a flat file, or a syslogd. You can set that up to be whatever the group decides upon at any point. You can even do both at the same time. It's the best of both worlds.</p>
http://stackoverflow.com/questions/1493936/faster-means-of-checking-for-an-empty-buffer-in-c/1493963#14939630Answer by Kieveli for Faster means of checking for an empty buffer in C?Kieveli2009-09-29T17:34:41Z2009-09-29T17:34:41Z<pre><code>int is_empty(char * buf, int size)
{
return buf[0] == '\0';
}
</code></pre>
<p>If your buffer is not a character string, I think that's the fastest way to check...</p>
<p>memcmp() would require you to create a buffer the same size and then use memset to set it all as 0. I doubt that would be faster...</p>
http://stackoverflow.com/questions/1493839/reading-command-line-arguments-after-in-c/1493916#14939160Answer by Kieveli for Reading command line arguments after '<' in CKieveli2009-09-29T17:25:07Z2009-09-29T17:25:07Z<p>Leave off the '<'. You want command line arguments do this:</p>
<blockquote>
<p>$ ./program -Dflag seven=ixnay FromDinger</p>
</blockquote>
<p>In your application, try this:</p>
<pre><code>int main( int argc, char **argv )
{
int i;
for( i = 0 ; i < argc ; ++i )
printf( "Arg %d = %s\n", i, argv[i] );
return 0;
}
</code></pre>
<p>You'll notice that the first argument is the name of the executable (at index 0), and your second argument (at index 1) will be "-Dflag"</p>
http://stackoverflow.com/questions/1472039/most-regrettable-design-or-programming-decision-you-made/1472206#14722063Answer by Kieveli for Most regrettable design or programming decision you made?Kieveli2009-09-24T14:48:40Z2009-09-24T14:48:40Z<p>I implemented a sub-section of an application according to the requirements.</p>
<p>It turns out that the requirements were bloated and gold-plated, and my code was over-designed. I should have designed my sub-section to only work with what I was adding at the time, but plan for adding all the other stuff without including generic support for it from the outset.</p>
http://stackoverflow.com/questions/1452063/error-handling-in-model-mvc/1452117#14521170Answer by Kieveli for Error Handling in Model (MVC)Kieveli2009-09-20T21:50:18Z2009-09-20T21:50:18Z<p>I've been using log4j and log4cxx and logging to a syslogd. Kiwi is a simple Win32 syslogger that will track your log messages and save them to a file. Log4j / Log4cxx have configuration files that you can use to setup all your log levels or log message destinations (you can log to multiple places).</p>
<p>It takes so little effort to setup and use, and it works like a charm.</p>
<p>I haven't tried out <a href="http://www.vxr.it/log4php/" rel="nofollow">log4php</a> myself.</p>
<p>Exceptions are good when you no longer want your program to continue executing. Catch exceptions at a high level where you can accept the fall-out of failed executions.</p>
http://stackoverflow.com/questions/1451982/fixed-width-large-data-problem/1452002#14520020Answer by Kieveli for Fixed Width, Large Data ProblemKieveli2009-09-20T21:02:28Z2009-09-20T21:02:28Z<p>1) Multiple hard-coded views of the same data: Brief, Detailed, Verbose
Quick links, or tabs to allow the user to view different numbers of columns. If they need more details, they can choose the view that has more detail. They want to know, and will not be annoyed by having to scroll vertically.</p>
<p>2) User-Controlled columns
Allow the users to control what they see, and what columns are included in their view. You can even store and remember the views they select. The default should be the view you think most people would want to see.</p>
<p>3) Combination of the previous two
Allow them to choose a default, and then customize columns on a one-by-one basis. This is how MS Project works with its views, and it's very nice to work with.</p>
http://stackoverflow.com/questions/1444191/insert-50-thousand-record-in-mysql/1444278#14442780Answer by Kieveli for Insert 50 thousand record in MySQLKieveli2009-09-18T12:30:27Z2009-09-18T12:30:27Z<p>Chances are, it's the implementation of the bulk/batch insert/update process that's causing the limitations. If you had more data in each row, then you would find it dying with fewer rows being insertted.</p>
<p>Try doing a subset at a time with multiple batch/bulk inserts.</p>
http://stackoverflow.com/questions/1798552/staying-relevant-as-a-programmerComment by Kieveli on Staying Relevant As a ProgrammerKieveli2009-11-25T19:11:10Z2009-11-25T19:11:10ZWish there were a 'vote not to close' link.http://stackoverflow.com/questions/1770090/what-c-tutorial-would-you-recommend-for-an-experienced-programmer-that-has-some/1770175#1770175Comment by Kieveli on What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language?Kieveli2009-11-20T13:09:56Z2009-11-20T13:09:56ZI've been programming in C++ for 10+ years, and I still read Stroustrup from time to time.http://stackoverflow.com/questions/1746159/mfc-multithreading-problem-with-delete-dbgheap-c/1746374#1746374Comment by Kieveli on MFC multithreading problem with delete[] , dbgheap.cKieveli2009-11-17T03:33:39Z2009-11-17T03:33:39ZIf 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.http://stackoverflow.com/questions/1746136/how-do-i-normalize-a-pathname-using-boostfilesystem/1746227#1746227Comment by Kieveli on How do I "normalize" a pathname using boost::filesystem?Kieveli2009-11-17T03:27:36Z2009-11-17T03:27:36ZI 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.http://stackoverflow.com/questions/1726887/print-alternating-characters-from-two-strings-interleaving-using-recursion-java/1726909#1726909Comment by Kieveli on Print Alternating Characters From Two Strings (Interleaving) Using Recursion JavaKieveli2009-11-13T12:38:49Z2009-11-13T12:38:49ZIt'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.http://stackoverflow.com/questions/1700212/how-to-force-a-java-thread-to-close-a-thread-local-database-connectionComment by Kieveli on How to force a Java thread to close a thread-local database connectionKieveli2009-11-10T13:19:18Z2009-11-10T13:19:18ZMMMmmm missing destructors... <i>drool</i> Java's biggest failing.http://stackoverflow.com/questions/1657933/my-jar-file-is-not-working-in-javaComment by Kieveli on My .jar file is not working in javaKieveli2009-11-02T03:56:33Z2009-11-02T03:56:33ZThe Site's Crapper application could also be getting filtered for bad language by the JVM boostrapping...http://stackoverflow.com/questions/1654565/simulating-latency-when-developing-on-a-local-webserver/1654872#1654872Comment by Kieveli on Simulating latency when developing on a local webserverKieveli2009-11-02T03:54:22Z2009-11-02T03:54:22Z... but you'd get some performance reduction during inclimate weather, so the testing would be inconsistent.http://stackoverflow.com/questions/1146314/custom-preloader-in-flex-4Comment by Kieveli on Custom Preloader in Flex 4?Kieveli2009-10-26T23:31:25Z2009-10-26T23:31:25ZWish this had a code sample!http://stackoverflow.com/questions/412345/lint-tool-for-actionscriptComment by Kieveli on Lint tool for actionscript?Kieveli2009-10-21T18:40:29Z2009-10-21T18:40:29ZIs it time to ask the question again?http://stackoverflow.com/questions/1579154/assert-fails-on-cdc-selectobject-call-what-can-i-tryComment by Kieveli on ASSERT fails on CDC SelectObject() call - What can I try?Kieveli2009-10-16T18:49:27Z2009-10-16T18:49:27ZThere'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.http://stackoverflow.com/questions/1579154/assert-fails-on-cdc-selectobject-call-what-can-i-tryComment by Kieveli on ASSERT fails on CDC SelectObject() call - What can I try?Kieveli2009-10-16T18:48:47Z2009-10-16T18:48:47ZYes. pObject is valid, and a CBitmap... but not the same CBitmap constructed in the 'new Bitmap()' statement.http://stackoverflow.com/questions/1566241/how-to-get-the-name-of-an-event-from-a-handle/1566370#1566370Comment by Kieveli on How to get the name of an Event from a handleKieveli2009-10-14T16:34:39Z2009-10-14T16:34:39ZI guess I still don't see why you would want to do a lookup on the name of the event given the handle.http://stackoverflow.com/questions/1566241/how-to-get-the-name-of-an-event-from-a-handle/1566269#1566269Comment by Kieveli on How to get the name of an Event from a handleKieveli2009-10-14T16:33:55Z2009-10-14T16:33:55ZIt'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.http://stackoverflow.com/questions/1566241/how-to-get-the-name-of-an-event-from-a-handle/1566269#1566269Comment by Kieveli on How to get the name of an Event from a handleKieveli2009-10-14T13:55:51Z2009-10-14T13:55:51ZA map would be better than manually keeping two arrays aligned. The overhead is insignificant.