User Martin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T05:43:50Zhttp://stackoverflow.com/feeds/user/2581http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/68675/why-did-you-become-a-programmer25Why did you become a programmer?Martin2008-09-16T01:51:49Z2009-11-25T22:10:56Z
<p>Some days I get into a rut and I just can't seem to focus. Then I think back to when I was a little kid and my parents brought home my first computer. I remember the feeling I got when my first line of code ran. I get the same feeling every time I turn an idea into code and see it work. It's too bad code isn't as readily appreciated as a piece of music or a photograph.</p>
<p>I would like a post I can come back to for inspiration. (Or to find out where all my rep went...)</p>
<p>Why did you become a programmer? Alternatively, when did you know it was what you wanted to do?</p>
http://stackoverflow.com/questions/87657/what-are-some-good-programming-challenge-websites3What are some good programming challenge websites?Martin2008-09-17T21:05:27Z2009-11-24T21:15:20Z
<p>I used to be a member of <a href="http://3564020356.org/" rel="nofollow">+Ma's Reversing</a>, and later became a member of Caesum's <a href="http://www.caesum.com/game/" rel="nofollow">Electrica</a>. Recently I've played <a href="http://bright-shadows.net/" rel="nofollow">Bright Shadows</a>. Are there other good sites for a challenge?</p>
<blockquote>
<p>Question reopened; not a duplicate. Similar, yes, but slightly different.</p>
</blockquote>
<p>Related: <a href="http://stackoverflow.com/questions/24692/where-can-you-find-funeducational-programming-challenges">http://stackoverflow.com/questions/24692/where-can-you-find-funeducational-programming-challenges</a></p>
http://stackoverflow.com/questions/1776944/mysql-transaction-across-many-php-requests1MySQL Transaction across many PHP RequestsMartin2009-11-21T22:07:54Z2009-11-21T22:56:54Z
<p>I would like to create an interface for manipulating invoices in a transaction-like manner.</p>
<p>The database consists of an invoices table, which holds billing information, and an invoice_lines table, which holds line items for the invoices. The website is a set of scripts which allow the addition, modification, and removal of invoices and their corresponding lines.</p>
<p>The problem I have is this, I would like the ACID properties of the database to be reflected in the web application.</p>
<ul>
<li><strong>Atomic</strong>: When the user hits save, either the entire invoice is modified or the entire invoice is not changed at all.</li>
<li><strong>Consistent</strong>: The application code already ensures consistency, lines cannot be added to non-existent invoices. Invoice IDs cannot be duplicated.</li>
<li><strong>Isolated</strong>: If a user is in the middle of a set of changes to an invoice, I would like to hide those changes from other users until the user clicks save.</li>
<li><strong>Durable</strong>: If the web site dies, the data should be safe. This already works.</li>
</ul>
<p>If I were writing a desktop application, it would maintain a connection to the MySQL database at all times, allowing me to simply use the BEGIN TRANSACTION and COMMIT at the beginning and end of the edit.</p>
<p>From what I understand you cannot BEGIN TRANSACTION on one PHP page and COMMIT on a different page because the connection is closed between pages.</p>
<p>Is there a way to make this possible without extensions? From what I have found, only <a href="http://sqlrelay.sourceforge.net/" rel="nofollow">SQL Relay</a> does this (but it is an extension).</p>
http://stackoverflow.com/questions/40994/is-google-chromes-v8-engine-really-that-good/41029#410290Answer by Martin for Is Google Chrome's V8 engine really that good?Martin2008-09-03T01:35:32Z2009-09-17T16:56:11Z<p>I've compared it to Firefox and Internet Explorer using this link: <a href="http://celtickane.com/2009/07/javascript-speed-test-2009-browsers/" rel="nofollow">http://celtickane.com/2009/07/javascript-speed-test-2009-browsers/</a> (was <a href="http://celtickane.com/webdesign/jsspeed.php" rel="nofollow">http://celtickane.com/webdesign/jsspeed.php</a>)</p>
<p>The difference is impressive.</p>
<p>212ms in Chrome, 341ms in Firefox 3, and 2188ms for Internet Explorer 7.</p>
http://stackoverflow.com/questions/773059/how-to-recover-database-from-mdf-in-sql-server-20053How to recover database from MDF in SQL Server 2005?Martin2009-04-21T15:07:31Z2009-07-14T21:44:37Z
<p>I have an MDF file and no LDF files for a database created in MS SQL Server 2005. When I try to attach the MDF file to a different SQL Server, I get the following error message.</p>
<p><code>
The log cannot be rebuilt because there were open transactions/users when the database was shutdown, no checkpoint occurred to the database, or the database was read-only. This error could occur if the transaction log file was manually deleted or lost due to a hardware or environment failure.
</code></p>
<p>I would like to accomplish any one of the following options:</p>
<ol>
<li>Attach the database without data loss (unlikely but would save me some time).</li>
<li>Attach the database with data loss (whatever transactions were open are lost).</li>
<li>Recover the schema only (no data) from the MDF file.</li>
</ol>
<p>What SQL commands can I try to get my database going again?</p>
http://stackoverflow.com/questions/1114742/how-do-i-create-cheap-shadows-in-opengl2How Do I Create Cheap Shadows In OpenGL?Martin2009-07-11T21:57:56Z2009-07-12T12:20:59Z
<p>I have two models, A and B, and one light, L. I would like model A to cast a shadow on model B. I don't want to bother with shadow volumes or proper shadows for the moment, just a simple circle shadow will suffice. The effect is that model A is treated as a sphere for shadow casting purposes.</p>
<p>Here is how I envision the algorithm:</p>
<p>For each triangle in model B, draw the triangle. Project a circle onto the triangle along the line from L to A, increasing the size of the circle depending on how far away the triangle is. Ensure the circle is clipped to the triangle's boundaries (using the stencil buffer in some way, I imagine).</p>
<p>I'm working with OpenGL and plain C.</p>
<p>Any pointers on some reference documentation I can read? Or implmentation ideas?</p>
http://stackoverflow.com/questions/1111385/mvc-can-a-view-loop-through-query-results/1111443#11114430Answer by Martin for MVC: Can a view loop through query results?Martin2009-07-10T19:13:57Z2009-07-10T19:19:17Z<p>As Jani said, you should probably wrap your MySQL result in a class which implements the Iterable interface from the Standard PHP Library. This way your view can use the familiar and generic foreach construct, while not having to iterate twice over your results just to put it into an array.</p>
<p><a href="http://www.php.net/~helly/php/ext/spl/" rel="nofollow">SPL</a></p>
<pre>
class rswrap implements Iterator
{
var $rs;
var $current;
function __construct($rs)
{
$this->rs = $rs;
}
function rewind()
{
// do nothing
}
function next()
{
$this->current = some_fetching_function($this->rs);
}
function current()
{
return $this->current;
}
function valid()
{
return $this->current !== false;
}
function key()
{
return 0; // usually sufficient but you may want to write a real key function.
}
}
$resultset = new rswrap($database_result_resource);
foreach($resultset as $row)
{
// your code here
}
</pre>
http://stackoverflow.com/questions/1105423/php-quirks-and-pitfalls/1105983#11059830Answer by Martin for PHP quirks and pitfallsMartin2009-07-09T19:27:58Z2009-07-09T19:27:58Z<pre>
// this works
$_SESSION = array('username' => 'Martin', 'id' => 1, 'expires' => 230407297);
$arrayofsessiondata = array('username' => 'Martin', 'id' => 1, 'expires' => 230407297);
// this works
foreach($arrayofsessiondata as $k => $v)
{
$_SESSION[$k] = $v;
}
// this DOESN'T WORK
$_SESSION = $arrayofsessiondata;
</pre>
<p>See <a href="http://bugs.php.net/bug.php?id=36239" rel="nofollow">my "bogus" bug report</a>.</p>
http://stackoverflow.com/questions/1104916/good-collision-representation-of-player-character-in-3d-plaform-game2Good Collision Representation of Player Character in 3d Plaform Game?Martin2009-07-09T16:15:08Z2009-07-09T16:47:07Z
<p>I am trying to make a simple 3d platform game. The issue I'm having is with the collision detection and response. I am currently representing my player character (for wall and floor collisions) with a sphere.</p>
<p>I employ a simple gravity force and directional forces using the arrow keys for movement.</p>
<p>My problem occurs when I come to an edge (like a cliff). I slide over the edge like a ball would, but the behaviour I'm looking for is to fall off the edge like an upright cylinder. A boolean "I am on the platform, or I am not on the platform", and not "I'm sliding off the edge gradually".</p>
<p>The problem with using an upright cylinder is that sliding up stairs automatically becomes impossible, and when walking along any kind of slope, the cylinder must either touch only by one edge, or be partially embedded in the slope.</p>
<p>What is a good collision representation of the player character in a 3d platform game?</p>
http://stackoverflow.com/questions/829700/c-new-into-base-class-pointer-crash-on-array-access1C++ new[] into base class pointer crash on array accessMartin2009-05-06T13:56:05Z2009-06-25T12:10:14Z
<p>When I allocate a single object, this code works fine. When I try to add array syntax, it segfaults. Why is this? My goal here is to hide from the outside world the fact that class c is using b objects internally. I have posted the program to <a href="http://codepad.org/DLzw3XQt" rel="nofollow">codepad</a> for you to play with.</p>
<pre><code>#include <iostream>
using namespace std;
// file 1
class a
{
public:
virtual void m() { }
virtual ~a() { }
};
// file 2
class b : public a
{
int x;
public:
void m() { cout << "b!\n"; }
};
// file 3
class c : public a
{
a *s;
public:
// PROBLEMATIC SECTION
c() { s = new b[10]; } // s = new b;
void m() { for(int i = 0; i < 10; i++) s[i].m(); } // s->m();
~c() { delete[] s; } // delete s;
// END PROBLEMATIC SECTION
};
// file 4
int main(void)
{
c o;
o.m();
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1006833/active-directory-get-users-in-role/1006859#10068590Answer by Martin for Active Directory get users in roleMartin2009-06-17T12:59:48Z2009-06-17T12:59:48Z<p>Look for sAMAccountName in the properties you get back.</p>
http://stackoverflow.com/questions/811608/how-do-i-calculate-pdf-leading-from-ttf5How do I calculate PDF leading from TTF?Martin2009-05-01T14:33:25Z2009-05-09T01:41:16Z
<p>The PDF specification defines a text operator called ' (apostrophe). The definition is that it writes out some text, and moves to the next line based on the current leading state. The current leading state can be set using the TL operator. This makes it very easy to write lines of text if you know how much they should be spaced apart vertically:</p>
<pre>
16 TL
/F1 12 Tf
(Line 1) '
(Line 2) '
(Line 3) '
(Line 4) '
</pre>
<p>I am not using any libraries for this, as it is a learning exercise. I have written some code to directly parse TTF files and extract character widths, and other items that are required for PDF FontDescriptor dictionaries.</p>
<p>I have been reading the TTF file format specification in order to try to figure out where the line height is located or how it can be calculated, but I have had no luck.</p>
<p>Assuming I have the following givens:</p>
<ul>
<li>The font size.</li>
<li>All relevant values from the TTF file (Ascender, Descender, Line Gap, etc.)</li>
</ul>
<p>How do I calculate PDF leading from TTF?</p>
<p><em>edit</em></p>
<p>It appears that the Line Gap value from the TTF file is instrumental in calculating PDF leading, but some fonts do not provide a sensible value for it (Courier New on Windows, for example).</p>
http://stackoverflow.com/questions/680695/animation-and-logic/830431#8304310Answer by Martin for Animation and logicMartin2009-05-06T16:19:39Z2009-05-06T16:19:39Z<p>Your enemy needs to have multiple states. Alive and dead are not enough. Alive, dying and dead might be. Your enemy processing loop should check its state and perform different operations:</p>
<pre><code>if(state == alive and hp == 0)
{
state = dying
currentanimation = animation(enemy_death)
currentanimation.play()
}
elseif(state == dying and currentanimation.isPlaying == true)
{
// do nothing until the animation is finished.
// more efficiently implemented as a callback.
}
elseif(state == dying and currentanimation.isPlaying == false)
{
state = dead
// at this point either the game engine cleans up the object, or the object deletes itself.
}
</code></pre>
http://stackoverflow.com/questions/829700/c-new-into-base-class-pointer-crash-on-array-access/830190#8301901Answer by Martin for C++ new[] into base class pointer crash on array accessMartin2009-05-06T15:30:22Z2009-05-06T15:30:22Z<p>I have figured out a workaround based on your answers. It allows me to hide the implementation specifics using a layer of indirection. It also allows me to mix and match objects in my array. Thanks!</p>
<pre><code>#include <iostream>
using namespace std;
// file 1
class a
{
public:
virtual void m() { }
virtual ~a() { }
};
// file 2
class b : public a
{
int x;
public:
void m() { cout << "b!\n"; }
};
// file 3
class c : public a
{
a **s;
public:
// PROBLEMATIC SECTION
c() { s = new a* [10]; for(int i = 0; i < 10; i++) s[i] = new b(); }
void m() { for(int i = 0; i < 10; i++) s[i]->m(); }
~c() { for(int i = 0; i < 10; i++) delete s[i]; delete[] s; }
// END PROBLEMATIC SECTION
};
// file 4
int main(void)
{
c o;
o.m();
return 0;
}
</code></pre>
http://stackoverflow.com/questions/773059/how-to-recover-database-from-mdf-in-sql-server-2005/773170#7731703Answer by Martin for How to recover database from MDF in SQL Server 2005?Martin2009-04-21T15:27:49Z2009-04-21T15:27:49Z<p>I found the following document on <a href="http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q%5F22700368.html" rel="nofollow">Experts Exchange</a>.</p>
<p>patrikt:
You will have data loss but it can be done.</p>
<pre>
1. Detach database and move your mdf to save location.
2. Create new databse of same name, same files, same file location and same file size.
3. Stop SQL server.
4. Swap mdf file of just created DB to your save one.
5. Start SQL. DB will go suspect.
6. ALTER DATABASE <code>yourdb</code> SET EMERGENCY
7. ALTER DATABASE <code>yourdb</code> SET SINGLE_USER
8. DBCC CHECKDB (<code>yourdb</code>, REPAIR_ALLOW_DATA_LOSS)
9. ALTER DATABASE <code>yourdb</code> SET MULTI_USER
10. ALTER DATABASE <code>yourdb</code> SET ONLINE
</pre>
http://stackoverflow.com/questions/749712/is-what-seems-like-polymorphism-in-php-really-polymorphism/749976#7499760Answer by Martin for Is what seems like polymorphism in PHP really polymorphism?Martin2009-04-15T01:35:00Z2009-04-15T01:35:00Z<p>Some call this <a href="http://en.wikipedia.org/wiki/Duck_typing" rel="nofollow">duck typing</a>.</p>
http://stackoverflow.com/questions/747847/how-can-i-simply-return-objects-in-pdo/748064#7480641Answer by Martin for How can I simply return objects in PDO?Martin2009-04-14T15:12:12Z2009-04-14T15:12:12Z<p>Perhaps you could try extending the PDO class to automatically call the function for you... in brief:</p>
<pre>
class myPDO extends PDO
{
function animalQuery($sql)
{
$result = parent::query($sql);
$result->setFetchMode(PDO::FETCH_INTO, new animals);
return $result;
}
// // useful if you have different classes
// function vegetableQuery($sql)
// {
// $result = parent::query($sql);
// $result->setFetchMode(PDO::FETCH_INTO, new vegetables);
// return $result;
// }
}
$dbh = new myPDO("mysql:host=$hostname;dbname=animals", $username, $password);
$stmt = $dbh->animalQuery("SELECT * FROM animals");
foreach($stmt as $animals)
{
echo $animals->name;
}
</pre>
http://stackoverflow.com/questions/688287/how-can-i-manage-a-cache-texture-in-opengl/702218#7022180Answer by Martin for How can I manage a cache texture in OpenGL?Martin2009-03-31T17:47:03Z2009-03-31T17:47:03Z<p>I have opted to use a simple approach. Divide the texture into variable height rows. The first texture to be placed in a row decides the height of the row. If a texture can fit into an existing row by height, check to see if there is enough width remaining and place it there. Otherwise start a new row. If a new row cannot be started, do not cache the string.</p>
http://stackoverflow.com/questions/688287/how-can-i-manage-a-cache-texture-in-opengl2How can I manage a cache texture in OpenGL?Martin2009-03-27T02:10:46Z2009-03-31T17:47:03Z
<p>I am writing a text renderer for an OpenGL application. Size, colour, font face, and anti-aliasing can be twiddled at run time (and so multiple font faces can appear on the screen at once). There are too many combinations to allocate one texture to each combination of string and attributes. However, only a small subset of the entire database of strings will be on the screen at any given time.</p>
<p>This leads me into the opportunity to create a cache for the strings that are being printed frame after frame. It has been mandated that I use only one texture for the entire operation, as creating a cache of many textures would incur a texture swapping penalty for every different string printed from the cache.</p>
<p>So I have before me a 2048x2048 texture, into which I can place whatever strings I can fit as they are being requested by the application for caching purposes. I have quickly realized that tracking the free space available in a two dimensional space is not trivial.</p>
<p>I have been looking at things like Best Fit and Next fit, but those seem to be suitable for 1d spaces.</p>
<p>How can I manage this cache texture in OpenGL?</p>
<p>Edit: I have since learned that this is an instance of a "2d packing problem".</p>
http://stackoverflow.com/questions/617793/what-is-the-best-way-to-persist-an-object-using-forms-in-php0What is the best way to persist an object using forms in PHP?Martin2009-03-06T06:05:49Z2009-03-06T08:22:22Z
<p>I have a PHP application where I would like to certain objects to persist in the following manner:</p>
<ol>
<li>The object must not exist in the $_SESSION. Separate web browser windows must control separate instances of the object.</li>
<li>The end-user must not be able to modify the object by changing the content of the $_REQUEST variable by hand (if this happens the request should be treated as corrupted).</li>
</ol>
<p>Is there a best-practices / proper way to do this? With PHP becoming more and more object oriented, I fear that I am reinventing a wheel.</p>
<p>The grand purpose of this code is to allow the creation and manipulation of complex objects without using a database until they are to be committed, then I will use a proper transaction to commit them to the database in full. I want to make it so that my database contains only the complete invoice, or no invoice at all.</p>
<p>My current method is as follows:</p>
<pre><code><?php
include('encrypt.php');
include('invoice.class.php');
if(isset($_REQUEST['invoice']))
{
$invoice = unserialize(decrypt(base64_decode($_REQUEST['invoice'])));
if(!($invoice instanceOf invoice)) throw new exception('Something bad happened');
}
else
{
// Some pages throw an exception if the $_REQUEST doesn't exist.
$invoice = new invoice();
}
if(isset($_REQUEST['action']) && $_REQUEST['action'] == 'addLine')
{
$invoice->addLine(new invoiceLine($_REQUEST['description'], $_REQUEST['qty'], $_REQUEST['unitprice']);
}
?>
<form action="index.php" method="post">
<input type="text" name="qty" />
...
<input type="hidden" name="invoice" value="<?php echo(base64_encode(encrypt(serialize($invoice)))); ?>" />
</form>
</code></pre>
http://stackoverflow.com/questions/52723/sql-pagination0SQL PaginationMartin2008-09-09T19:40:41Z2009-03-03T16:06:06Z
<p>I am trying to paginate the results of an SQL query for use on a web page. The language and the database backend are PHP and SQLite.</p>
<p>The code I'm using works something like this (page numbering starts at 0)</p>
<p><a href="http://example.com/table?page=0" rel="nofollow">http://example.com/table?page=0</a></p>
<pre><code>page = request(page)
per = 10 // results per page
offset = page * per
// take one extra record so we know if a next link is needed
resultset = query(select columns from table where conditions limit offset, per + 1)
if(page > 0) show a previous link
if(count(resultset) > per) show a next link
unset(resultset[per])
display results
</code></pre>
<p>Are there more efficient ways to do pagination than this?</p>
<p>One problem that I can see with my current method is that I must store all 10 (or however many) results in memory before I start displaying them. I do this because PDO does not guarantee that the rowcount will be available.</p>
<p>Is it more efficient to issue a COUNT(*) query to learn how many rows exist, then stream the results to the browser?</p>
<p>Is this one of those "it depends on the size of your table, and whether the count(*) query requires a full table scan in the database backend", "do some profiling yourself" kind of questions?</p>
http://stackoverflow.com/questions/99542/point-triangle-collision-detection-in-3d3Point-Triangle Collision Detection in 3DMartin2008-09-19T04:07:31Z2009-02-18T22:40:53Z
<p>How do I correct for floating point error in the following physical simulation:</p>
<ul>
<li>Original point (x, y, z),</li>
<li>Desired point (x', y', z') after forces are applied.</li>
<li>Two triangles (A, B, C) and (B, C, D), who share edge BC</li>
</ul>
<p>I am using this method for collision detection:</p>
<pre><code>For each Triangle
If the original point is in front of the current triangle, and the desired point is behind the desired triangle:
Calculate the intersection point of the ray (original-desired) and the plane (triangle's normal).
If the intersection point is inside the triangle edges (!)
Respond to the collision.
End If
End If
Next Triangle
</code></pre>
<p>The problem I am having is that sometimes the point falls into the grey area of floating point math where it is so close to the line BC that it fails to collide with either triangle, even though technically it should always collide with one or the other since they share an edge. When this happens the point passes right between the two edge sharing triangles. I have marked one line of the code with <strong>(!)</strong> because I believe that's where I should be making a change.</p>
<p>One idea that works in very limited situations is to skip the edge testing. Effectively turning the triangles into planes. This only works when my meshes are convex hulls, but I plan to create convex shapes.</p>
<p>I am specifically using the dot product and triangle normals for all of my front-back testing.</p>
http://stackoverflow.com/questions/106001/parameterized-sql-columns5Parameterized SQL Columns?Martin2008-09-19T21:59:35Z2008-10-17T03:13:07Z
<p>I have some code which utilizes parameterized queries to prevent against injection, but I also need to be able to dynamically construct the query regardless of the structure of the table. What is the proper way to do this?</p>
<p>Here's an example, say I have a table with columns Name, Address, Telephone. I have a web page where I run <b>Show Columns</b> and populate a select drop-down with them as options.</p>
<p>Next, I have a textbox called <b>Search</b>. This textbox is used as the parameter.</p>
<p>Currently my code looks something like this:</p>
<pre>
result = pquery('SELECT * FROM contacts WHERE `' + escape(column) + '`=?', search);
</pre>
<p>I get an icky feeling from it though. The reason I'm using parameterized queries is to avoid using <b>escape</b>. Also, <b>escape</b> is likely not designed for escaping column names.</p>
<p>How can I make sure this works the way I intend?</p>
<p><b>Edit:</b>
The reason I require dynamic queries is that the schema is user-configurable, and I will not be around to fix anything hard-coded.</p>
http://stackoverflow.com/questions/169459/should-i-lock-an-isam-table-to-insert-a-value-into-a-unique-key-field/169462#1694623Answer by Martin for Should I lock an ISAM table to insert a value into a unique key field?Martin2008-10-04T01:00:09Z2008-10-04T01:05:25Z<p>Do not bother locking, your index will prevent duplicates. You should handle the error code from your application.</p>
<p>MySQL should return an error code of 1062 (or SQLSTATE 23000) when your unique key constraint is violated.</p>
http://stackoverflow.com/questions/167018/should-i-use-threading-and-recursion-together3Should I use threading and recursion together?Martin2008-10-03T13:59:28Z2008-10-03T14:36:00Z
<p>I have been tinkering with BSP trees for a while now and am also playing with threads. When adding a triangle to a BSP tree, an opportunity arises to create a new thread for the purposes of processing data in parallel.</p>
<pre>
insert(triangle, bspnode)
{
....
else if(triangle spans bspnode)
{
(frontpiece, backpiece) = plane_split(triangle, bspnode)
insert(frontpiece, bspnode.front)
insert(backpiece, bspnode.back)
}
....
}
</pre>
<p>The two insert operations above could be executed by two threads, and since they do not modify the same data, cheap synchronization can be used.</p>
<pre>
insert(triangle, bspnode)
{
....
else if(triangle spans bspnode)
{
(frontpiece, backpiece) = split(triangle, bspnode)
handle = beginthread(insert(backpiece, bspnode.front))
insert(frontpiece, bspnode.back)
if(handle)
{
waitforthread(handle)
}
else
{
insert(backpiece, bspnode.front)
}
}
....
}
</pre>
<p>This new method attempts to create a thread to complete the operation in parallel, but should not fail if the thread cannot be created (it will simply revert to the original algorithm).</p>
<p>Is this a sound programming practice, or am I using threads improperly? I have not been able to find any literature on this technique. I like that it tends to use my CPU to its fullest (2 cores), and would theoretically scale to any number of processors available. I don't like that it might be horribly wasteful on CPU and memory.</p>
http://stackoverflow.com/questions/163225/how-do-i-test-if-a-given-bsp-tree-is-optimal2How do I test if a given BSP tree is optimal?Martin2008-10-02T16:09:52Z2008-10-02T16:24:09Z
<p>I have a polygon soup of triangles that I would like to construct a BSP tree for. My current program simply constructs a BSP tree by inserting a random triangle from the model one at a time until all the triangles are consumed, then it checks the depth and breadth of the tree and remembers the best score it achieved (lowest depth, lowest breadth).</p>
<p>By definition, the best depth would be log2(n) (or less if co-planar triangles are grouped?) where n is the number of triangles in my model, and the best breadth would be n (meaning no splitting has occurred). But, there are certain configurations of triangles for which this pinnacle would never be reached.</p>
<p>Is there an efficient test for checking the quality of my BSP tree? Specifically, I'm trying to find a way for my program to know it should stop looking for a more optimal construction.</p>
http://stackoverflow.com/questions/74261/when-is-it-time-to-change-database-backends1When is it time to change database backends?Martin2008-09-16T16:31:31Z2008-09-24T16:04:30Z
<p>Is there a general rule of thumb to follow when storing web application data to know what database backend should be used? Is the number of hits per day, number of rows of data, or other metrics that I should consider when choosing?</p>
<p>My initial idea is that the order for this would look something like the following (but not necessarily, which is why I'm asking the question).</p>
<ol>
<li>Flat Files</li>
<li>BDB</li>
<li>SQLite</li>
<li>MySQL</li>
<li>PostgreSQL</li>
<li>SQL Server</li>
<li>Oracle</li>
</ol>
http://stackoverflow.com/questions/99796/when-to-use-binary-space-partitioning-quadtree-octree5When to use Binary Space Partitioning, Quadtree, Octree?Martin2008-09-19T05:08:25Z2008-09-19T10:12:59Z
<p>I have recently learned about binary space partitioning trees and their application to 3d graphics and collision detection. I have also briefly perused material relating to quadtrees and octrees. When would you use quadtrees over bsp trees, or vice versa? Are they interchangeable? I would be satisfied if I had enough information to fill out a table like this:</p>
<pre><code> | BSP | Quadtree | Octree
------------+----------------+-------
Situation A | X | |
Situation B | | X |
Situation C | | | X
</code></pre>
<p>What are A, B, and C?</p>
http://stackoverflow.com/questions/99542/point-triangle-collision-detection-in-3d/99631#996310Answer by Martin for Point-Triangle Collision Detection in 3DMartin2008-09-19T04:25:30Z2008-09-19T04:25:30Z<p>@<a href="#99562" rel="nofollow">Statement</a>: I am indeed already using a "greater than or equal to" comparison in my code, thank you for the suggestion. +1</p>
<p>My current solution is to add a small nudge amount to the edge test. Basically when each triangle is tested, its edges are pushed out by a very small amount to counteract the error in floating point. Sort of like testing if the result of a floating point calculation is less than 0.01 rather than testing for equality with zero.</p>
<p>Is this a reasonable solution?</p>
http://stackoverflow.com/questions/92699/non-iterative-non-looping-way-to-calculate-effective-date3Non-iterative / Non-looping Way To Calculate Effective Date?Martin2008-09-18T13:50:48Z2008-09-18T18:22:44Z
<p>I have a table called OffDays, where weekends and holiday dates are kept. I have a table called LeadTime where amount of time (in days) for a product to be manufactured is stored. Finally I have a table called Order where a product and the order date is kept.</p>
<p>Is it possible to query when a product will be finished manufacturing without using stored procedures or loops?</p>
<p>For example:</p>
<ul>
<li>OffDays has 2008-01-10, 2008-01-11, 2008-01-14.</li>
<li>LeadTime has 5 for product 9.</li>
<li>Order has 2008-01-09 for product 9.</li>
</ul>
<p>The calculation I'm looking for is this:</p>
<ul>
<li>2008-01-09 1</li>
<li>2008-01-10 x</li>
<li>2008-01-11 x</li>
<li>2008-01-12 2</li>
<li>2008-01-13 3</li>
<li>2008-01-14 x</li>
<li>2008-01-15 4</li>
<li>2008-01-16 5</li>
</ul>
<p>I'm wondering if it's possible to have a query return 2008-01-16 without having to use a stored procedure, or calculate it in my application code.</p>
<p><strong>Edit (why no stored procs / loops):</strong>
The reason I can't use stored procedures is that they are not supported by the database. I can only add extra tables / data. The application is a third party reporting tool where I can only control the SQL query.</p>
<p><strong>Edit (how i'm doing it now):</strong>
My current method is that I have an extra column in the order table to hold the calculated date, then a scheduled task / cron job runs the calculation on all the orders every hour. This is less than ideal for several reasons.</p>
http://stackoverflow.com/questions/1776944/mysql-transaction-across-many-php-requests/1776966#1776966Comment by Martin on MySQL Transaction across many PHP RequestsMartin2009-11-24T04:14:41Z2009-11-24T04:14:41Z@Don: In my system invoices can be modified until they are posted. Once an invoice is posted, it is locked and cannot be altered further. The only way to make a change is to create another invoice as a correction. Also, invoices are not the only type of data I would like to use this system to manage.http://stackoverflow.com/questions/1776944/mysql-transaction-across-many-php-requests/1776966#1776966Comment by Martin on MySQL Transaction across many PHP RequestsMartin2009-11-21T22:28:28Z2009-11-21T22:28:28ZThe problem with this idea is that another user might edit the data under me. This requires additional code for tracking changes to every invoice (ie, revision number). Native transactions would simply throw a commit conflict and my application could rethrow that to the user.http://stackoverflow.com/questions/40994/is-google-chromes-v8-engine-really-that-good/41029#41029Comment by Martin on Is Google Chrome's V8 engine really that good?Martin2009-09-17T16:55:49Z2009-09-17T16:55:49ZThe website has since added a redirect for that link.http://stackoverflow.com/questions/1114742/how-do-i-create-cheap-shadows-in-opengl/1114959#1114959Comment by Martin on How Do I Create Cheap Shadows In OpenGL?Martin2009-07-12T22:48:10Z2009-07-12T22:48:10ZI have settled (for the moment) for this method, iterated once for each triangle of model B, it seems to work, but the speed leaves something to be desired. Thank you!http://stackoverflow.com/questions/1114742/how-do-i-create-cheap-shadows-in-opengl/1114959#1114959Comment by Martin on How Do I Create Cheap Shadows In OpenGL?Martin2009-07-12T15:26:49Z2009-07-12T15:26:49ZThis method seems good, but the cost of drawing the source model once for each face in B seems high. Is there a way to reduce the complexity of this method?http://stackoverflow.com/questions/1111385/mvc-can-a-view-loop-through-query-results/1111417#1111417Comment by Martin on MVC: Can a view loop through query results?Martin2009-07-10T19:20:46Z2009-07-10T19:20:46ZThis does not avoid requirement number 2 in OP. You can do what he asks with a class wrapper that implements the Iterator interface.http://stackoverflow.com/questions/1006833/active-directory-get-users-in-role/1007097#1007097Comment by Martin on Active Directory get users in roleMartin2009-06-19T01:30:57Z2009-06-19T01:30:57ZPerhaps if you search active directory for users with memberOf = 'dn of group' you can get the sAMAccountName directly? Maybe it requires two searches because you are searching for the group first, and looking at the member property of the group (which is only the dn of each user).http://stackoverflow.com/questions/811608/how-do-i-calculate-pdf-leading-from-ttf/842480#842480Comment by Martin on How do I calculate PDF leading from TTF?Martin2009-05-09T06:54:27Z2009-05-09T06:54:27ZFonts like Courier New on Windows have a 0 in Line Gap, have you dealt with those at all?http://stackoverflow.com/questions/829700/c-new-into-base-class-pointer-crash-on-array-access/829931#829931Comment by Martin on C++ new[] into base class pointer crash on array accessMartin2009-05-06T15:15:47Z2009-05-06T15:15:47Z+1 for good explanation and use of mambojumbo.http://stackoverflow.com/questions/829700/c-new-into-base-class-pointer-crash-on-array-access/829775#829775Comment by Martin on C++ new[] into base class pointer crash on array accessMartin2009-05-06T14:29:21Z2009-05-06T14:29:21Zs->m(); can be rewritten s[0].m(); and it will workhttp://stackoverflow.com/questions/829700/c-new-into-base-class-pointer-crash-on-array-accessComment by Martin on C++ new[] into base class pointer crash on array accessMartin2009-05-06T14:03:23Z2009-05-06T14:03:23Z@Doug T.: I have updated the question and posted a codepad reference.http://stackoverflow.com/questions/829700/c-new-into-base-class-pointer-crash-on-array-access/829723#829723Comment by Martin on C++ new[] into base class pointer crash on array accessMartin2009-05-06T14:00:33Z2009-05-06T14:00:33Zc() { s = new b[10]; } // s = new b; creates the b objects by invoking the default constructor on each object.http://stackoverflow.com/questions/773059/how-to-recover-database-from-mdf-in-sql-server-2005/773085#773085Comment by Martin on How to recover database from MDF in SQL Server 2005?Martin2009-04-21T15:48:53Z2009-04-21T15:48:53ZUsing the ATTACH_REBUILD_LOG flag yields the same error message as the original post.http://stackoverflow.com/questions/773059/how-to-recover-database-from-mdf-in-sql-server-2005/773085#773085Comment by Martin on How to recover database from MDF in SQL Server 2005?Martin2009-04-21T15:18:17Z2009-04-21T15:18:17ZI came across that article as well. DBCC REBUILD_LOG does not exist in SQL Server 2005.http://stackoverflow.com/questions/617793/what-is-the-best-way-to-persist-an-object-using-forms-in-php/618048#618048Comment by Martin on What is the best way to persist an object using forms in PHP?Martin2009-03-06T13:40:10Z2009-03-06T13:40:10ZYes, I could do that. But my current method is idempotent. +1