User Tom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:55:45Z http://stackoverflow.com/feeds/user/26155 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1651532/how-do-you-know-if-syslog-ng-stops-your-listening-daemon 3 How do you know if syslog-ng stops your listening daemon? Tom 2009-10-30T18:27:28Z 2009-11-09T17:23:11Z <p>I wrote a PHP program that hooks into <code>syslog-ng</code> (via <code>syslog-ng.conf</code>) and it's basically this:</p> <pre><code>while (!feof(STDIN)) { $input = fgets(STDIN); process($input); } cleanup(); </code></pre> <p>where <code>process()</code> and <code>cleanup()</code> are defined by me.</p> <p>The problem I am facing is that <code>cleanup(2)</code> is never called and I need it to be executed before the program exits.</p> <p>I have tried to catch SIGTERM, SIGHUP and SIGPIPE using <code>pcntl_signal()</code> and that part of the application seems to work fine (if I use kill -1 on the PHP process, my signal handler gets called and it runs <code>cleanup()</code>), but it appears that I am not getting those meessages from syslog-ng.</p> <p>I have tried setting STDIN to non-blocking, thinking that PHP wouldn't call the signal handlers because the stream was blocking. That didn't work either, my signal handlers wouldn't get called.</p> <p>How do I know when syslog-ng is about to stop my application, so I can do some cleanup?</p> <p>Thanks, Tom</p> <p><b>UPDATE:</b> I've tried to catch all the signals, from 1 to 31 and it still doesn't receive anything when syslog-ng is restarted (or killed with SIGTERM).</p> http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg 0 Processing large images with Delphi for saving as .jpeg Tom 2009-10-28T20:09:10Z 2009-10-30T05:39:28Z <p>In Delphi 7, I have a library that uses the TCanvas component to output some information. The resulting image is about 4800*6000 pixels and I would like to print it and save it as <code>.jpeg</code>.</p> <p>To achieve this, I created a TBitmap and gave its Canvas as parameter to the library and then I assigned the bitmap to the jpeg. Apparently, this is taking too much memory, because I am getting an exception when trying to set the bitmap's width and height, saying "Not enough storage is available to process this command."</p> <pre><code>// output to printer Printer.BeginDoc(); doPrint(Printer.Canvas); Printer.EndDoc(); // output in bmp.Canvas bmp := TBitmap.Create; bmp.Width := Printer.PageWidth; bmp.Height := Printer.PageHeight; // &lt;- BAM! Exception! doPrint(bmp.Canvas); // save as jpeg jpg := TJPEGImage.Create; jpg.Assign(bmp); jpg.SaveToFile('...'); // free bmp.Free(); jpg.Free(); </code></pre> <p>What am I doing wrong? Could I save Printer.Canvas directly as a <code>.jpeg</code> file?</p> <p>Edit: Updated image size approximation from 2000*2000 to 4800*6000</p> http://stackoverflow.com/questions/1594526/what-are-the-different-ways-of-writing-if-conditional-statements-using-php/1594557#1594557 4 Answer by Tom for What are the different ways of writing "if" conditional statements using PHP? Tom 2009-10-20T13:19:08Z 2009-10-20T13:19:08Z <p>Besides what's already been said, there's stuff like</p> <pre><code>$sql_link = mysql_connect('localhost', 'root') or die('no mysql'); </code></pre> <p>Or like <a href="http://www.php.net/manual/en/control-structures.alternative-syntax.php" rel="nofollow">Alternative syntax for control structures</a></p> <p>(the assignment "OR" trick is really a trick :) if the mysql_connect() doesn't evaulate to true, PHP will try to evaluate the second expression so this is really a hack of:</p> <pre><code>if (mysql_connect('localhost', 'root')) { $sql_link = true; } else { die('no mysql'); } </code></pre> <p>)</p> http://stackoverflow.com/questions/1571347/is-automatic-smart-process-priority-management-worth-it 2 Is automatic "smart" process priority management worth it? Tom 2009-10-15T09:49:06Z 2009-10-15T10:21:16Z <p>I am working on a very large application that has multiple processes running simultaneously; at any given moment there are none or there is exactly one process interacting with the user. Would it be a good idea to temporarily increase the priority of the process with which the user is currently interacting?</p> <p>As a second part of the same question, please provide real-world examples if possible. Did any common operating systems or applications decide to implement or specifically to not implement such a feature?</p> http://stackoverflow.com/questions/1458894/how-to-determine-if-javascript-object-is-an-event 6 How to determine if Javascript object is an event? Tom 2009-09-22T08:55:09Z 2009-10-14T15:39:02Z <p>What is the safest way to determine if a Javascript object is an event?</p> http://stackoverflow.com/questions/1496845/how-to-check-if-mysql-tables-exist-without-asking-mysql 0 How to check if MySQL tables exist without asking MySQL Tom 2009-09-30T08:48:28Z 2009-09-30T14:17:26Z <p>I have to check for the existence of several tables from a shell script, without accessing the MySQL daemon. Is the presence of <code>.frm</code> files reliable to determine if the tables exist or not? Here's what I have been doing, but it doesn't seem to work all the time (there may be an error in another part of the system):</p> <pre><code>for table in $TABLES; do if [ -f /data/mysql/${database}/${table}.frm ]; then ... ... fi done </code></pre> <p>Is this reliable? If not, is there another way to achieve this?</p> http://stackoverflow.com/questions/228880/what-to-do-when-youre-bored 4 What to do when you're bored? Tom 2008-10-23T07:46:49Z 2009-09-15T14:40:48Z <p>I love this place. I rarely have anything to do and when I do, it's still not much. I literally <i>waste</i> a lot of time at the office (when I have tons of stuff to do at home). My problem is, I've been watching a lot of websites, like SO, Slashdot, XKCD or TDWTF, I've also started reading design patterns and learning C# (eventually got bored with this, too).<br> What are other things I can do while I'm in the office and I have nothing to do? Working on my own projects is out of the question, we're not allowed to work on other things while at the office, but we're allowed to learn new things or relax.<br> <b>What are other things programmers do when they're bored?</b></p> <sub>Please note, as I see answers being posted I might edit the question because I don't think I've made myself clear enough but atm I don't know how to make my point clear.</sub> http://stackoverflow.com/questions/1378155/reading-form-action-property-in-ie6-if-form-has-a-field-named-action 0 Reading form action property in IE6, if form has a field named "action" Tom 2009-09-04T09:26:30Z 2009-09-09T10:59:57Z <p>Given the <code>form</code> below:</p> <pre><code>&lt;form id="myForm" action="index.php"&gt; &lt;input type="hidden" name="action" value="list" /&gt; &lt;input type="submit" /&gt; &lt;/form&gt; </code></pre> <p>How can I get the value for the <code>action</code> property of the form (<em>index.php</em>) using IE6?</p> <p>Hint: I have tried</p> <pre><code>document.getElementById('myForm').action </code></pre> <p>and</p> <pre><code>document.getElementById('myForm').getAttribute('action') </code></pre> <p>But neither of them work. They both return the <code>input</code> field (<code>document.getElementById('myForm').action.value == 'list'</code>).</p> http://stackoverflow.com/questions/1378155/reading-form-action-property-in-ie6-if-form-has-a-field-named-action/1398799#1398799 0 Answer by Tom for Reading form action property in IE6, if form has a field named "action" Tom 2009-09-09T10:23:43Z 2009-09-09T10:23:43Z <p>I've just found another way: using or cloning the <a href="http://www.prototypejs.org/api/element/readAttribute" rel="nofollow"><code>readAttribtue</code></a> method available in prototypejs.</p> http://stackoverflow.com/questions/272342/free-javascript-obfuscators 3 Free JavaScript obfuscators? Tom 2008-11-07T15:02:51Z 2009-09-07T22:58:19Z <p>I'm looking for a <i>free</i> JavaScript obfuscator. Would compression be enough? What tools would you recommend? Of course, I don't need military-style obfuscation, I need a <i>simple</i> way to prevent kiddies from stealing my javascript by looking at the source or by using something simple such as unescape().<br /><br /> Thanks, Tom</p> http://stackoverflow.com/questions/1237721/configuring-already-installed-php-to-work-with-already-installed-ncurses-mamp 0 Configuring already installed PHP to work with already installed ncurses (MAMP). Tom 2009-08-06T08:55:17Z 2009-08-06T09:46:37Z <p>I have installed <em>MAMP</em> and the <em>PHP</em> it came with wasn't compiled with <em>ncurses</em>. I've tried to use port to install <em>ncurses</em> and it seems that it already exists on my system so now I was wondering if there was a way to get <em>PHP</em> to use it without having to recompile <em>PHP --with-ncurses</em>.</p> <p>In other words: Can <em>PHP</em> be configured to use <em>ncurses</em> without the recompilation?</p> http://stackoverflow.com/questions/824000/javascript-textnode-update 0 JavaScript TextNode update Tom 2009-05-05T09:08:05Z 2009-05-05T09:31:20Z <p>If I have a</p> <pre><code>var t = document.createTextNode(text) parent.appendChild(t); </code></pre> <p>Is it possible to simply update the contents of <code>t</code>?</p> <p>I would like to change the text inside the <code>parent</code> without using <code>removeChild</code>, <code>createTextNode</code> and <code>appendChild</code>. Why would I need this instead of just using <code>innerHTML</code>? Because I don't want to update the contents of the element with HTML code and the <code>text</code> may contain special characters, such as &lt; or &amp; which should be parsed by <code>TextNode</code>'s DOM methods.</p> <p>Thanks,<br /> Tom</p> http://stackoverflow.com/questions/824000/javascript-textnode-update/824079#824079 1 Answer by Tom for JavaScript TextNode update Tom 2009-05-05T09:31:20Z 2009-05-05T09:31:20Z <pre><code>parent.innerText = text; </code></pre> http://stackoverflow.com/questions/336515/free-php-editor-for-mac 3 Free PHP editor for Mac? Tom 2008-12-03T08:39:40Z 2009-05-05T02:09:55Z <p>I am new to the Mac world and I'm looking for PHP development tools, right now the most important thing is the editor. Syntax highlighting and a file tree list are mandatory, of course, and code insight would be nice (of course :). I am hoping that there are free editors out there that provide these functionality and I hope someone could enlighten me. I have been searching on Google but most of the results were comparing their PHP editor with free ones or were poor editors that didn't even offer building projects and a tree list.</p> <p>Could someone help me out?</p> http://stackoverflow.com/questions/442391/what-programming-languages-are-you-using-on-mac-os-x 10 What programming languages are you using on Mac OS X ? Tom 2009-01-14T09:24:52Z 2009-03-25T13:34:09Z <p>What are the programming languages you have used / are using now to write applications for Mac OS X? What kind of applications have you developed?</p> http://stackoverflow.com/questions/229889/sanitizing-mysql-user-parameters 2 Sanitizing MySQL user parameters. Tom 2008-10-23T14:17:00Z 2009-03-06T08:39:43Z <p>What are the dangerous characters that should be replaced in user input when the users' input will be inserted in a MySQL query? I know about quotes, double quotes, \r and \n. Are there others?<br><sub>(I don't have the option of using a smart connector that accepts parameters so I have to build the query myself and this will be implemented in multiple programming languages, including some obscure ones so solutions such as <code>mysql_real_escape_string</code> in PHP are not valid)</sub></p> http://stackoverflow.com/questions/553369/need-mysql-4-to-ignore-alter-table-errors 0 Need MySQL 4 to ignore ALTER TABLE errors Tom 2009-02-16T13:57:43Z 2009-02-18T20:01:04Z <p>I have a MySQL script which is executed automatically under certain conditions. That script executes an <code>ALTER TABLE</code> command, because that column is needed in the database, but it may or may not have it...</p> <p>Is it possible to make MySQL 4 execute the <code>ALTER TABLE</code> statement if the column doesn't exist or ignore the <em>duplicate column</em> error for this single command and allow the script execution to continue?</p> http://stackoverflow.com/questions/229425/net-datatable-skips-rows-on-loaddatareader 6 .NET DataTable skips rows on Load(DataReader) Tom 2008-10-23T11:41:40Z 2009-01-17T07:59:02Z <p>I'm trying to populate a DataTable, to build a LocalReport, using the following:<br></p> <pre><code>MySqlCommand cmd = new MySqlCommand(); cmd.Connection = new MySqlConnection(Properties.Settings.Default.dbConnectionString); cmd.CommandType = CommandType.Text; cmd.CommandText = "SELECT ... LEFT JOIN ... WHERE ..."; /* query snipped */ // prepare data dataTable.Clear(); cn.Open(); // fill datatable dt.Load(cmd.ExecuteReader()); // fill report rds = new ReportDataSource("InvoicesDataSet_InvoiceTable",dt); reportViewerLocal.LocalReport.DataSources.Clear(); reportViewerLocal.LocalReport.DataSources.Add(rds); </code></pre> <p>At one point I noticed that the report was incomplete and it was missing one record. I've changed a few conditions so that the query would return exactly two rows and... <b>surprise</b>: The report shows only one row instead of two. I've tried to debug it to find where the problem is and I got stuck at</p> <pre><code> dt.Load(cmd.ExecuteReader()); </code></pre> <p>When I've noticed that the <code>DataReader</code> contains two records but the <code>DataTable</code> contains only one. By accident, I've added an <code>ORDER BY</code> clause to the query and noticed that this time the report showed correctly.<br><br> Apparently, the DataReader contains two rows but the DataTable only reads both of them if the SQL query string contains an <code>ORDER BY</code> (otherwise it only reads the last one). Can anyone explain why this is happening and how it can be fixed?</p> <p><b>Edit:</b> When I first posted the question, I said it was skipping the first row; later I realized that it actually only read the last row and I've edited the text accordingly (at that time all the records were grouped in two rows and it appeared to skip the first when it actually only showed the last). This may be caused by the fact that it didn't have a unique identifier by which to distinguish between the rows returned by MySQL so adding the <code>ORDER BY</code> statement caused it to create a unique identifier for each row.<br /> This is just a theory and I have nothing to support it, but all my tests seem to lead to the same result.</p> http://stackoverflow.com/questions/368329/php-using-get-post-instead-of-request 3 PHP - using $_GET / $_POST instead of $_REQUEST Tom 2008-12-15T13:16:18Z 2008-12-16T22:50:21Z <p>Besides the fact that <code>$_REQUEST</code> reads from cookies, are there any reasons why I should use <code>$_GET</code> and <code>$_POST</code> instead of <code>$_REQUEST</code>? What are theoretical and practical reasons to doing so?</p> http://stackoverflow.com/questions/13569/mysqli-or-pdo-what-are-the-pros-and-cons/368758#368758 4 Answer by Tom for mysqli or PDO - what are the pros and cons? Tom 2008-12-15T15:45:02Z 2008-12-15T15:45:02Z <p>Here's something else to keep in mind: For now (PHP 5.2) the PDO library is <b>buggy</b>. It's full of strange bugs. For example: before storing a <code>PDOStatement</code> in a variable, the variable should be <code>unset()</code> to avoid a ton of bugs. Most of these have been fixed in PHP 5.3 and they will be released in early 2009 in PHP 5.3 which will probably have many other bugs. You should focus on using PDO for PHP 6.1 if you want a stable release and using PDO for PHP 5.3 if you want to help the community.</p> http://stackoverflow.com/questions/368329/php-using-get-post-instead-of-request/368711#368711 0 Answer by Tom for PHP - using $_GET / $_POST instead of $_REQUEST Tom 2008-12-15T15:31:02Z 2008-12-15T15:31:02Z <p>Here's one I've just found: <a href="http://stackoverflow.com/questions/107683/when-and-why-should-request-be-used-instead-of-get-post-cookie">http://stackoverflow.com/questions/107683/when-and-why-should-request-be-used-instead-of-get-post-cookie</a>. I'm sorry I didn't find it sooner, so I wouldn't have asked the question...</p> http://stackoverflow.com/questions/368313/php-filter-function-why 0 PHP filter() function - why? Tom 2008-12-15T13:09:05Z 2008-12-15T14:03:33Z <p>Why would I want to use PHP's <a href="http://www.php.net/filter" rel="nofollow">filter</a> library? Why wouldn't I?</p> <p>It seems to try and do a bit of clean-up (it's awful when you have to work with regular expressions), but on the other hand function naming and parameter constants seem to be a disaster, if you ask me. It must have been included in PHP for a reason, but I just don't seem to like it. What am I missing?</p> <p><i>Later edit:</i><br /> Regarding GaryF's answer, I wish to explain a bit why I don't like this function. This isn't about using it in "my case" if it fits. This is about using it wherever it fits. There's a high chance of needing a filter that won't fit PHP's functions, so I'll have to create my own filter. In that case, the application will use two completely different kinds of functions for data filtering. I consider that to be a much worse practice than just inventing a better wheel.</p> http://stackoverflow.com/questions/336846/database-enums-pros-and-cons 4 Database enums - pros and cons. Tom 2008-12-03T11:17:40Z 2008-12-03T11:59:44Z <p>For example, I have a "users" table which has an enum column "type" with two possible values: "individual" and "organization." They are mutually exclusive and mandatory (each row must have exactly one value from the possible two. Would this be a good case to use enums? Why so/not?</p> <p>What are some pros and cons on using ENUM (set) types for database fields?</p> http://stackoverflow.com/questions/323189/irc-bot-error-registration-timeout-fixed/323217#323217 2 Answer by Tom for IRC Bot: Error - Registration Timeout [fixed] Tom 2008-11-27T08:29:05Z 2008-11-27T08:29:05Z <p>Try sending the USER command before the NICK command. What IRC network are you trying to connect to?</p> <pre><code>" &gt; telnet irc.freenode.net 6667 NOTICE AUTH :*** Looking up your hostname... NOTICE AUTH :*** Checking ident NOTICE AUTH :*** No identd (auth) response NOTICE AUTH :*** Couldn't look up your hostname USER x x x x NICK hwjrh :kubrick.freenode.net 001 hwjrh :Welcome to the freenode IRC Network hwjrh :kubrick.freenode.net 002 hwjrh :Your host is kubrick.freenode.net[kubrick.freenode.net/6667], running version hyperion-1.0.2b " </code></pre> <p>Works for me; I telnet to Freenode, Undernet and Dalnet all the time...</p> http://stackoverflow.com/questions/316904/why-are-asp-net-pages-so-much-slower-on-localhost-than-on-the-production-server/317174#317174 0 Answer by Tom for Why are ASP.NET pages so much slower on localhost than on the production server Tom 2008-11-25T12:29:44Z 2008-11-25T12:29:44Z <p>IF there are things stored on the server that the application needs to access, this will considerably slow things down - yes, I've seen places where there was a production server which hosted the only database system available to the whole company, for both production and development.</p> http://stackoverflow.com/questions/317070/javascript-how-do-i-determine-if-a-link-targets-the-same-domain-as-the-page-it-r/317164#317164 0 Answer by Tom for Javascript: how do I determine if a link targets the same domain as the page it resides on? Tom 2008-11-25T12:26:29Z 2008-11-25T12:26:29Z <p>Maybe this will help: <a href="http://www.quirksmode.org/js/events_properties.html#target" rel="nofollow">http://www.quirksmode.org/js/events_properties.html#target</a></p> http://stackoverflow.com/questions/317070/javascript-how-do-i-determine-if-a-link-targets-the-same-domain-as-the-page-it-r/317123#317123 1 Answer by Tom for Javascript: how do I determine if a link targets the same domain as the page it resides on? Tom 2008-11-25T11:59:41Z 2008-11-25T12:05:55Z <p>I would like to point out that, if you're on so.com, the following links are URLs within the same domain:</p> <ul> <li><a href="http://test.so.com" rel="nofollow">http://test.so.com</a></li> <li><a href="http://so.com/index" rel="nofollow">http://so.com/index</a></li> <li>index</li> <li>/index</li> <li>#</li> <li>/#</li> <li>https://subdomain.so.com#hash</li> <li>mail.google.com</li> <li>mail.google.com/index.php?var=value#index</li> </ul> <p>(it may seem odd, but the last two ones are valid: if you're on <a href="http://so.com" rel="nofollow">http://so.com</a>, the last one would take you to <a href="http://so.com/mail.google.com/index.php?var=value" rel="nofollow">http://so.com/mail.google.com/index.php?var=value</a>, which is perfectly valid)</p> <p>This doesn't really answer the question but I hope it will guide the rest of the answers. If there's anything else weird enough, feel free to add it.</p> http://stackoverflow.com/questions/311242/php-open-another-webpage-with-post-data/311348#311348 0 Answer by Tom for PHP open another webpage with POST data Tom 2008-11-22T13:38:11Z 2008-11-22T13:38:11Z <p>You could use JavaScript as a dirty work-around:</p> <pre><code>&lt;form id="redirect_form" method="post" action="http://someserver.com/somepage.php"&gt; &lt;input type="hidden" name="field_1" value="&lt;?php echo htmlentities($value_1); ?&gt;"&gt; &lt;input type="hidden" name="field_2" value="&lt;?php echo htmlentities($value_2); ?&gt;"&gt; &lt;input type="hidden" name="field_3" value="&lt;?php echo htmlentities($value_3); ?&gt;"&gt; &lt;/form&gt; &lt;script type="text/javascript"&gt; document.getElementById('redirect_form').submit(); &lt;/script&gt; </code></pre> <p>(the script should be below the form)</p> http://stackoverflow.com/questions/304828/where-can-i-find-clear-examples-of-mvc 3 Where can I find clear examples of MVC? Tom 2008-11-20T10:02:12Z 2008-11-20T12:51:38Z <p>I've read a couple of things about MVCs but I still don't understand when they should be used and when they shouldn't be used. I am looking for clear examples that say things like "<i>if you're developing this then you should use MVC, like this</i>" and "<i>if you're developing this, you shouldn't use MVC.</i>" Most of the examples I've seen rely on complex frameworks which have already implemented everything and you have to learn the framework and use it a lot to understand what's really happening. To many programmers, phrasings such as "<i>UI business logic</i>" sound like marketing terms &mdash; for example, the words "<i>Instead the View binds directly to a Presentation Model</i>" are used in <a href="http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference#101561">this post.</a></p> <p>I am aware of the dangers that may lurk in the shadows as MVC is a concept and everyone feels like they know it best, yet nobody really knows exactly how to use it because there may be a lot of variables involved and everyone is allowed to have a different perspective on how to dissect a project into the Model, the View and the Controller. There is a lot of theory out there but very few clear examples. What I'm looking for are not "the best" ways of doing it so this should not be considered as subjective; I'm looking for different <b>simple</b> implementations that would allow me to decide on my own which are the best approaches.</p> <p>Succinctly: What are good on-line resources that present pro and con arguments to using MVC in various situations and provide clear examples to help the reader understand the concept?</p> http://stackoverflow.com/questions/301291/a-career-in-programming-and-now-for-something-completely-different/302380#302380 1 Answer by Tom for A career in programming - and now for something completely different? Tom 2008-11-19T15:57:40Z 2008-11-19T15:57:40Z <p>I became a bartender and enjoyed it very much! I could prep a cocktail and talk about working with logarithms in .NET, at the same time. The hours were killing me so a year later I went back to programming where I get to sit all day.</p> http://stackoverflow.com/questions/1468108/textarea-cols-property-when-using-css Comment by Tom on textarea cols property when using CSS Tom 2009-12-07T19:02:38Z 2009-12-07T19:02:38Z You should consider accepting an answer. http://stackoverflow.com/questions/1651532/how-do-you-know-if-syslog-ng-stops-your-listening-daemon/1678472#1678472 Comment by Tom on How do you know if syslog-ng stops your listening daemon? Tom 2009-11-09T08:13:50Z 2009-11-09T08:13:50Z I accidentally downvoted you. Sorry, your answer was correct. Try editing it, so I may reverse the vote. http://stackoverflow.com/questions/1651532/how-do-you-know-if-syslog-ng-stops-your-listening-daemon/1695196#1695196 Comment by Tom on How do you know if syslog-ng stops your listening daemon? Tom 2009-11-09T07:43:05Z 2009-11-09T07:43:05Z That still doesn't help when dealing with SIGTERM, sorry. http://stackoverflow.com/questions/1651532/how-do-you-know-if-syslog-ng-stops-your-listening-daemon Comment by Tom on How do you know if syslog-ng stops your listening daemon? Tom 2009-11-04T11:06:02Z 2009-11-04T11:06:02Z @Kevin Peno: not yet http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg/1648186#1648186 Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-31T21:24:49Z 2009-10-31T21:24:49Z I'm already doing this. The code is posted in the question. http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg/1645105#1645105 Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-30T11:09:25Z 2009-10-30T11:09:25Z I'll try this as well, it's a black and white image anyway. http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg/1641297#1641297 Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-30T11:08:50Z 2009-10-30T11:08:50Z Works fine, thank you! http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg/1640379#1640379 Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-30T11:07:29Z 2009-10-30T11:07:29Z Windows XP SP1 with 1GB of RAM. The application is used on Windows 7 with 2 GB of RAM without any hassle, but I would like to make sure that it runs fine on my system (at least for debugging's sake) http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg/1639987#1639987 Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-30T11:06:28Z 2009-10-30T11:06:28Z Half of the answer is still right... http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg/1639987#1639987 Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-28T21:23:18Z 2009-10-28T21:23:18Z If nobody comes up with any ideas/workarounds any time soon, I will accept your answer. http://stackoverflow.com/questions/1639790/processing-large-images-with-delphi-for-saving-as-jpeg Comment by Tom on Processing large images with Delphi for saving as .jpeg Tom 2009-10-28T20:41:52Z 2009-10-28T20:41:52Z I'm not using anything special and the library is just something that uses the Canvas to output some information, it's also written in Delphi and the whole source code is filled with nothing more than &quot;var s:TStringList&quot; and &quot;cnv.TextOut(..)&quot; so it can easily be recompiled and it should be fine. http://stackoverflow.com/questions/1594202/i-want-cool-php-capicha Comment by Tom on i want cool php capicha Tom 2009-10-20T13:14:14Z 2009-10-20T13:14:14Z @Luk&#225;ลก Lalinsk&#253;: actually they currently have rel=&quot;nofollow me&quot; and that's something I haven't seen before. It may be just my browser, some practice I haven't heard about or a bug in SO. http://stackoverflow.com/questions/236493/what-are-the-arguments-in-favor-of-php-closing-tags-for-php-only-files/236763#236763 Comment by Tom on What are the arguments IN FAVOR of PHP closing tags for PHP only files? Tom 2009-10-20T13:09:18Z 2009-10-20T13:09:18Z Excellent points http://stackoverflow.com/questions/1592865/php-vs-does-it-matter/1592874#1592874 Comment by Tom on <?php vs <? ...Does it matter? Tom 2009-10-20T13:04:29Z 2009-10-20T13:04:29Z Downvoted because it missed the question. http://stackoverflow.com/questions/1593611/php-function-confusion Comment by Tom on PHP function confusion Tom 2009-10-20T12:59:19Z 2009-10-20T12:59:19Z Anax: It wasn't me who downvoted you, but it seems that you haven't read much of the manual. Try this: <a href="http://www.php.net/manual/en/functions.arguments.php" rel="nofollow">php.net/manual/en/&hellip;</a>