User tloach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T02:17:10Zhttp://stackoverflow.com/feeds/user/14092http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1917380/how-to-avoid-the-unresponsive-script-popup-in-firefox-with-long-running-javascrip/1917404#19174044Answer by tloach for How to avoid the Unresponsive Script popup in Firefox with long running Javascript?tloach2009-12-16T20:22:05Z2009-12-16T20:22:05Z<p>In firefox's address bar type about:config</p>
<p>You want to change dom.max_script_run_time to be large enough for your scripts to run.</p>
http://stackoverflow.com/questions/1915157/threads-or-processes-having-data-independent-tasks-what-is-better-to-use/1915191#19151913Answer by tloach for Threads or Processes? Having data-independent tasks, what is better to use?tloach2009-12-16T15:02:30Z2009-12-16T15:02:30Z<p>Threads should have slightly less overhead since they share the same memory space within the process, however this overhead may be small enough to not impact your program. The only way to know for certain which will be better for you is to try both a measure how long each takes.</p>
http://stackoverflow.com/questions/213380/the-necessity-of-hiding-the-salt-for-a-hash/213447#21344711Answer by tloach for The necessity of hiding the salt for a hashtloach2008-10-17T19:03:00Z2009-12-10T22:50:29Z<p>The answer here is to ask yourself what you're really trying to protect from? If someone has access to your database, then they have access to the encrypted salts, and they probably have access to your code as well. With all that could they decrypt the encrypted salts? If so then the encryption is pretty much useless anyway. The salt really is there to make it so it isn't possible to form a rainbow table to crack your entire password database in one go if it gets broken into. From that point of view, so long as each salt is unique there is no difference, a brute force attack would be required with your salts or the encrypted salts for each password individually.</p>
http://stackoverflow.com/questions/1883193/transmit-generated-xml-file-without-saving-to-disk/1883239#18832390Answer by tloach for Transmit generated XML file without saving to disktloach2009-12-10T19:05:11Z2009-12-10T19:05:11Z<p>yes. In PHP it looks like this:</p>
<pre><code>header("Content-type: text/xml");
$headerText = "Content-disposition: attachment; filename=file.xml";
header($headerText);
echo $your_XML_contents;
exit;
</code></pre>
http://stackoverflow.com/questions/1882576/does-three-tier-architecture-ever-work/1882650#18826500Answer by tloach for Does three-tier architecture ever work?tloach2009-12-10T17:33:59Z2009-12-10T17:33:59Z<p>Any operating system will have a similar kind of architecture, or else it won't work. The presentation layer is independent of the hardware layer, which is abstracted into drivers that implement a certain interface. The data is handled using logic that changes depending on the type of data being read (think NTFS vs. FAT32 vs. EXT3 vs. CD-ROM). Linux can run on just about any hardware you can throw at it and it will still look and behave the same because the abstractions between the layers insulate each other from changes within a single layer.</p>
http://stackoverflow.com/questions/1881462/cost-schedule-quality-pick-two/1881516#18815160Answer by tloach for Cost, schedule, quality: pick twotloach2009-12-10T14:58:37Z2009-12-10T14:58:37Z<p>If you're choosing schedule and cost then worrying about methodology is the wrong thing to do. Go code. Code as fast as you can. Feel free to do dirty hacks that work, so long as they allow you to make the schedule without bringing on additional developers. Remember, if quality actually doesn't matter then maintainability and testing is not really important since those are both quality issues.</p>
<p>Somehow, reading that, I doubt that you actually want to ignore quality completely :)</p>
http://stackoverflow.com/questions/1880984/when-are-variables-removed-from-memory-in-c/1881044#18810440Answer by tloach for When are variables removed from memory in C++?tloach2009-12-10T13:39:59Z2009-12-10T13:39:59Z<p>In this case both num and temp are local to this function. When the function is called the number passed into num is copied from the caller to a variable on the stack. Temp is then created on the stack. When you return the value of num is copied back to the caller, and the temp and num variables used in the function are dropped.</p>
http://stackoverflow.com/questions/1874104/best-practices-for-email-address-validation-including-the-in-gmail-addresses/1874153#18741531Answer by tloach for Best practices for email address validation (including the + in gmail addresses)tloach2009-12-09T14:11:00Z2009-12-09T14:11:00Z<p>I would tend to go with something along the lines of /.+@.+\..+/ to check for simple mistakes. Then I would send an email to the address to verify that it actually exists, since most typos will still result in syntactically valid email addresses.</p>
http://stackoverflow.com/questions/1862593/constant-abuse/1862630#18626304Answer by tloach for Constant abuse?tloach2009-12-07T20:21:06Z2009-12-07T20:21:06Z<p>Some people consider any raw number within a program to be a 'magic number'. I have seen coding standards that basically said that you couldn't just write an integer into a program, it had to be a const int. </p>
http://stackoverflow.com/questions/1860999/list-of-fundamental-data-structures-what-am-i-missing/1861023#18610234Answer by tloach for List of fundamental data structures - what am I missing?tloach2009-12-07T16:16:55Z2009-12-07T16:16:55Z<p>B-Trees and other multi-trees</p>
http://stackoverflow.com/questions/1860216/update-field-when-not-null/1860266#18602660Answer by tloach for Update Field When Not Nulltloach2009-12-07T14:21:46Z2009-12-07T14:21:46Z<p>You can do something like this:</p>
<pre><code>UPDATE newspapers a, newspapers b
SET a.scan_notes = "data",
a.scan_entered_by = "some_name",
a.scan_modified_date = "current_unix_timestamp",
b.scan_created_date = "current_unix_timestamp"
WHERE a.id = X AND b.id = X AND b.scan_created_date is not NULL
</code></pre>
http://stackoverflow.com/questions/1849148/how-can-i-store-program-settings/1849225#18492251Answer by tloach for How Can I Store Program Settings?tloach2009-12-04T19:44:01Z2009-12-04T19:44:01Z<p>Regardless of if you store these settings locally, if you load them into memory a user can read them. If you transfer them across a network it is a pretty simple to scan network packets, even over an encrypted connection there are plenty of tools that will man-in-the-middle your own network connection for you (I've used OpenSTA for that, even though it isn't exactly made for it). Someone who really, really wants to see what you're using for settings will be able to see them if you're running something on their computer. </p>
<p>Now, having said that, keeping them in XML and just encrypting the file is probably the simplest solution. Even just compressing the file and changing the extension will keep away people who are merely curious about what settings you have.</p>
http://stackoverflow.com/questions/1848713/including-open-source-software-in-commercial-software/1848725#18487254Answer by tloach for including open source software in commercial softwaretloach2009-12-04T18:16:13Z2009-12-04T18:16:13Z<p>Ask a lawyer. Don't believe any answer anyone gives you unless they are qualified to practice law in your country and you have paid them to give you the information you want.</p>
http://stackoverflow.com/questions/1828370/workflow-for-a-license-server-selling-software/1828423#18284233Answer by tloach for workflow for a license server / selling softwaretloach2009-12-01T19:48:13Z2009-12-01T19:48:13Z<p>For a new product the answer is always:</p>
<p>Don't worry about copy protection. Unless people are actively already pirating your product there is no reason to add a 'phone-home' feature.</p>
<p>Large companies tend to be paranoid about having the proper licenses, so they will pay you for licenses. Most small companies are ethical and any license issues are probably an oversight. Right now you should be far more worried about getting your name out and getting people familiar with your product. Someone using your product at home who would have never paid for a license is a good thing for you right now. Get people using your code, make it so businesses would have a hard time changing to something else, then worry about making sure they aren't using it for free. This is a version 3 problem, if you make it that far.</p>
http://stackoverflow.com/questions/1828085/php-int-to-date-problem/1828117#18281172Answer by tloach for php int to date problemtloach2009-12-01T18:52:44Z2009-12-01T18:52:44Z<p>The second argument to date() is a unix timestamp - in other words it is a number of seconds since Jan 1, 1970, adjusted to what PHP is set to for a timezone (can be set with date_default_timezone_set). </p>
http://stackoverflow.com/questions/1820703/creating-dropping-mysql-databases-with-integer-names/1820717#18207171Answer by tloach for Creating/dropping MySQL databases with integer namestloach2009-11-30T16:05:07Z2009-11-30T16:05:07Z<p>use backticks '`' around the name of what you want to drop. The backtick key is the one that is generally up beside the 1 button on the keyboard.</p>
http://stackoverflow.com/questions/1804186/what-are-the-best-garbage-collection-settings-for-client-side/1804263#18042630Answer by tloach for What are the best garbage collection settings for client side?tloach2009-11-26T15:19:33Z2009-11-26T15:19:33Z<p>If you want better performance then give the garbage collector less work. Consider using a pool of objects rather than constantly creating and dumping them, and make sure you need every object you create.</p>
http://stackoverflow.com/questions/1803887/locks-and-mutexes-in-c/1803906#18039065Answer by tloach for Locks and Mutexes in C++tloach2009-11-26T14:16:30Z2009-11-26T14:16:30Z<p>Locks and mutexes are not part of the current C++ standard, as they deal with concurrency which is not part of the standard. They are included in several libraries and various OSes have different ways of dealing with them (POSIX vs. Windows threads). If you pick up a book on concurrent programming for C++ you will probably find what you're looking for. You can find implementations for them in both the boost and ACE libraries.</p>
<p>Threads are part of the C++0x standard. I am not aware of any books for it yet but wikipedia has a blurb on the new threading features <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Threading%5Ffacilities" rel="nofollow">here.</a></p>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798179#17981794Answer by tloach for What do you do to write better code?tloach2009-11-25T16:31:40Z2009-11-25T16:31:40Z<p>Work with people who are better than you, and have them review your code. If you're the best coder on your team you'll probably have a much harder time getting better than if you have mentors to learn from.</p>
http://stackoverflow.com/questions/1791853/how-can-i-remove-the-email-option-from-a-pdf/1791914#17919141Answer by tloach for How can I remove the email option from a PDF?tloach2009-11-24T18:14:21Z2009-11-24T18:14:21Z<p>You could convert the document to an image and show it in a frame so you get scroll bars, but you lose a lot of the conveniences that pdf offers. As others have already pointed out, if you're sending something to their browser they have a copy of it and can save it if they like.</p>
http://stackoverflow.com/questions/1790481/php-mysql-storing-array-in-database/1790521#17905210Answer by tloach for PHP/MySQL - Storing array in databasetloach2009-11-24T14:44:54Z2009-11-24T14:44:54Z<p>One of the reasons to use a relational database is to help maintain data integrity. If you just have a serialized array dumped into a blob in a table there is no way for the database to do any checking that what you have in that blob makes any sense. </p>
http://stackoverflow.com/questions/1790383/float-not-correct-in-mysql/1790392#17903925Answer by tloach for Float not correct in MySQLtloach2009-11-24T14:23:51Z2009-11-24T14:23:51Z<p>Floats only have a certain level of precision, you may be going beyond how precise a float data type can be. Try using a DOUBLE instead.</p>
http://stackoverflow.com/questions/1773100/criticalsection/1773121#17731210Answer by tloach for CriticalSectiontloach2009-11-20T20:41:34Z2009-11-20T20:41:34Z<p>These control structures stop the thread that can't enter from doing a busy wait by allowing it to sleep until an interrupt is generated by the thread that is in the critical section finishing execution. Because the thread is asleep it is not using processor cycles, so no busy_wait.</p>
http://stackoverflow.com/questions/1772579/representing-probability-in-c/1772630#17726301Answer by tloach for Representing probability in C++tloach2009-11-20T19:08:57Z2009-11-20T19:08:57Z<p>If you only need a few digits of precision then just use an integer. If you need better precision then you'll have to look to different libraries that provide guarantees on precision.</p>
http://stackoverflow.com/questions/1772366/general-web-developer-and-microsoft-certifications-a-necessary-evil-in-the-corpo/1772436#17724360Answer by tloach for General web developer and Microsoft certifications, a necessary evil in the corporate world, what is available and relevant?tloach2009-11-20T18:35:06Z2009-11-20T18:35:06Z<p>You have .NET and C# high on your list of skills and you don't want to be pigeon-holed? It may already be too late. If your employer is paying the MS certifications can be useful. Even if you don't learn much doing them they'll get you past one more level of HR-keyword-filter should you ever need to get a different job. If you're really more interested in something useful you may want to check what your local community collage is offering. There are also companies like LearningTree that offer various certifications, although none of them are as widely recognized as the MS certs.</p>
http://stackoverflow.com/questions/1758664/java-util-concurrent-vs-boost-threads-library/1758713#17587130Answer by tloach for java.util.concurrent vs. Boost Threads librarytloach2009-11-18T20:09:24Z2009-11-18T20:09:24Z<p>If you're targeting a specific platform then the direct OS call will probably be a little faster than using boost for C++. I would tend to use ACE, since you can generally make the right calls for your main platform and it will still be platform-independent. Java should be about the same speed so long as you can guarantee that it will be running on a recent version.</p>
http://stackoverflow.com/questions/1758564/what-are-function-pointers-used-for-and-how-would-i-use-them/1758593#17585933Answer by tloach for What are function pointers used for, and how would I use them?tloach2009-11-18T19:50:48Z2009-11-18T19:50:48Z<p>Callbacks. I make an asynchronous call to a chunk of code and want it to let me know when it finishes, I can send it a function pointer to call once it's done.</p>
http://stackoverflow.com/questions/1731791/whats-the-best-sql-server-setup-for-a-development-environment/1731852#17318521Answer by tloach for What's the best SQL Server setup for a development environment?tloach2009-11-13T20:52:39Z2009-11-13T20:52:39Z<p>If you have the option of having a development server with a separate schema for each developer, that would probably be the best option. Always keep your development environment as close to your production environment as possible to keep bug reproduction as simple as possible.</p>
http://stackoverflow.com/questions/1731645/challenges-of-code-review-with-remote-team/1731668#17316680Answer by tloach for Challenges of code review with remote teamtloach2009-11-13T20:24:03Z2009-11-13T20:24:03Z<p>Just email them on a regular basis asking for an update on the review you asked them for. I find once a week reminders of this sort are generally often enough to make people get the work done without annoying them. </p>
http://stackoverflow.com/questions/1724683/dom-in-php-saves-new-content-over-the-old-file/1724797#17247970Answer by tloach for dom in PHP saves new content over the old Filetloach2009-11-12T19:34:48Z2009-11-12T19:34:48Z<p>If I understand correctly then you want to append the new XML to the end of the old file? This is a bit unusual for XML, however you could do it simply by writing to the file using</p>
<pre><code>file_put_contents('country.xml', $country, FILE_APPEND);
</code></pre>
<p>rather than </p>
<pre><code>$this->dom->save('country.xml');
</code></pre>
http://stackoverflow.com/questions/1930219/synchronous-vs-asynchronous-languages/1930239#1930239Comment by tloach on Synchronous vs Asynchronous languagestloach2009-12-18T20:00:05Z2009-12-18T20:00:05Z@Umesh: Would you really want the menu bars on your web browser to be unresponsive whenever your browser is making a network request? There are plenty of places where things can happen without knowing the result of some random call.http://stackoverflow.com/questions/1930219/synchronous-vs-asynchronous-languages/1930249#1930249Comment by tloach on Synchronous vs Asynchronous languagestloach2009-12-18T19:54:53Z2009-12-18T19:54:53Z@Umesh: You don't listen for callbacks from another thread, the thread calls the callback directly. The overhead is the same as any other function call.http://stackoverflow.com/questions/1915829/learning-c-when-you-already-know-c/1915847#1915847Comment by tloach on Learning C when you already know C++ ?tloach2009-12-16T16:32:08Z2009-12-16T16:32:08ZNot true at all. As a C++ developer I very rarely use most of the old C constructs, especially when dealing with memory manipulation and strings. The best practices and methods for putting together the architecture for a program is widely different in C++ than C, as one would expect when comparing an OO language with a language which is much closer to the actual CPU instructions.http://stackoverflow.com/questions/1889996/inheritance-mucking-up-polymorphism-in-cComment by tloach on Inheritance mucking up polymorphism in C++?tloach2009-12-11T18:33:49Z2009-12-11T18:33:49ZPerhaps I'm misreading, but are you sure that the arguments to f should be A and B?http://stackoverflow.com/questions/1889944/does-the-gpl-scare-you/1889986#1889986Comment by tloach on Does the GPL scare you?tloach2009-12-11T18:31:33Z2009-12-11T18:31:33ZAs the copyright holder you can always release under a different license. You can not take back copies that have already been released under the GPL, but you're free to not release under GPL in the future, or just release under a different license at the same time as GPL. Both mysql and Red Hat linux release under both GPL and seperate enterprise licenses.http://stackoverflow.com/questions/1889026/are-there-applications-that-can-crunch-numbers-directly/1889051#1889051Comment by tloach on Are there applications that can crunch numbers directly?tloach2009-12-11T16:10:25Z2009-12-11T16:10:25ZJust an addition, you can find information on this type of programming by googling GPGPUhttp://stackoverflow.com/questions/1888732/trying-to-filter-a-mysql-table-by-date-using-a-single-query/1888770#1888770Comment by tloach on Trying to filter a mysql table by date using a single query.tloach2009-12-11T15:42:13Z2009-12-11T15:42:13Z@Steve: Actually my first thought was the same as yours - maybe && is different than AND. I had just finished checking the mysql docs when your comment came up :)http://stackoverflow.com/questions/1888732/trying-to-filter-a-mysql-table-by-date-using-a-single-query/1888770#1888770Comment by tloach on Trying to filter a mysql table by date using a single query.tloach2009-12-11T15:24:12Z2009-12-11T15:24:12ZThe mysql documentation claims that AND and && are equivalenthttp://stackoverflow.com/questions/1883193/transmit-generated-xml-file-without-saving-to-disk/1883239#1883239Comment by tloach on Transmit generated XML file without saving to disktloach2009-12-10T19:11:41Z2009-12-10T19:11:41ZThen pay more attention to mlsteeves' comment, same thing but his is language-agnostic :Dhttp://stackoverflow.com/questions/1882576/does-three-tier-architecture-ever-work/1882611#1882611Comment by tloach on Does three-tier architecture ever work?tloach2009-12-10T17:50:54Z2009-12-10T17:50:54ZActually I think at a high level this is what the poster is looking for. The 3 layers with well defined boundaries and interfaces. He's just looking for an example where it is all done within one process, I believe.http://stackoverflow.com/questions/1882546/type-var-vs-type-var-which-one-is-better/1882569#1882569Comment by tloach on type* var Vs. type *var - which one is better?tloach2009-12-10T17:25:14Z2009-12-10T17:25:14Zin 4 different jobs I've seen 3 different standards for where to put it, so in the end it's the same as trying to come up with the one true brace style.http://stackoverflow.com/questions/1882546/type-var-vs-type-var-which-one-is-better/1882557#1882557Comment by tloach on type* var Vs. type *var - which one is better?tloach2009-12-10T17:23:04Z2009-12-10T17:23:04ZI prefer it next to the variable name as well, however the counter-argument is that if you put it there it looks like you're dereferencing a pointer, rather than declaring one.http://stackoverflow.com/questions/1882546/type-var-vs-type-var-which-one-is-betterComment by tloach on type* var Vs. type *var - which one is better?tloach2009-12-10T17:20:39Z2009-12-10T17:20:39ZI've also seen char * argv[]http://stackoverflow.com/questions/1881763/tips-on-finding-internships-with-relocation-assistance-and-or-housingComment by tloach on Tips on finding internships with relocation assistance and/or housing?tloach2009-12-10T15:34:34Z2009-12-10T15:34:34ZYou tagged your question not-programming-related and you don't expect it to be closed for not being programming related?http://stackoverflow.com/questions/1880984/when-are-variables-removed-from-memory-in-c/1881021#1881021Comment by tloach on When are variables removed from memory in C++?tloach2009-12-10T14:14:33Z2009-12-10T14:14:33Z@eamon: All I meant was that for certain work it is important to be aware that your stack size will not shrink just because a bunch of local variables go out of scope. For people who work on hardware where every byte matters being aware of this behavior can inform a decision to allocate space on the stack or the heap.