User Vilx- - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:17:11Z http://stackoverflow.com/feeds/user/41360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799896/does-there-exist-a-digital-image-steganography-algorithm-which-would-be-resistant 2 Does there exist a digital image steganography algorithm which would be resistant to image manipulation? Vilx- 2009-11-25T20:58:36Z 2009-11-25T21:27:49Z <p>I'm wondering - is there a steganography solution for digital images which is resistant to image manipulations? With "manipulations" I mean the most standard operations - recompressing JPEGs (or even changing file formats entirely), cropping and scaling. The application of this method would naturally be for image copyright protection.</p> <p>I fully understand that the more image is manipulated the less are the chances that the steganographic watermark is intact, but at least some degree of resistance would be nice.</p> http://stackoverflow.com/questions/1782861/php-doesnt-handle-stack-overflow 3 PHP doesn't handle stack overflow? Vilx- 2009-11-23T12:27:20Z 2009-11-23T12:55:17Z <p>I was surprised when I just tried the following PHP code:</p> <pre><code>function foo() { foo(); } foo(); </code></pre> <p>I expected to get "500: Internal server error". Instead the connection was closed immediately (no bytes received), and the log files show that apache segfaulted. WTF? Is this a known bug in PHP? Are there some configuration options that I'm missing? Because a crashed process for every accidental stack overflow is, well... pretty unacceptable, I think.</p> http://stackoverflow.com/questions/1782289/why-use-database-schemas/1782315#1782315 1 Answer by Vilx- for Why use database schemas? Vilx- 2009-11-23T10:40:34Z 2009-11-23T10:40:34Z <p>I'm not aware of any other possible reasons besides organization and permissions. Are these not good enough? :)</p> <p>For the record - I always use a single schema - but then I'm creating web applications and there is also just a single user.</p> http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779730#1779730 5 Answer by Vilx- for Does version control let you work simultaneously on two different versions of a project? Vilx- 2009-11-22T19:42:01Z 2009-11-22T19:42:01Z <p>No, this is not what branches were intended for. Branches are meant when you want to create a separate copy of the project and work on it without disturbing the other branches. You can merge from one branch to the other, but it's mostly done by hand. You might set up an automatic script that does it, but it would fail if there were conflicts.</p> <p>I'd suggest you use a more fitting tool for this job. You haven't specified what language you are using, but most languages today support "conditional compilation". In C/C++ this would be the #define/#ifdef/#endif stuff. Thus you can turn it on or off by simply passing a parameter to the compiler.</p> http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779517#1779517 6 Answer by Vilx- for multiplication program using recursion(in C) Vilx- 2009-11-22T18:30:13Z 2009-11-22T18:56:54Z <p>If you really want to impress your peers and your teacher, submit this - it's both recursive and fast!</p> <pre><code>int mul(int a, int b) { if ( a &lt; 0 ) return -mul(-a,b); if ( b &lt; 0 ) return -mul(a,-b); if ( b == 0 ) return 0; return (mul(a,b&gt;&gt;1)&lt;&lt;1)+(b&amp;1?a:0); } </code></pre> <p><strong>Added</strong>: As an added bonus, this correctly handles both positive, negative and 0 values.</p> http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779488#1779488 7 Answer by Vilx- for multiplication program using recursion(in C) Vilx- 2009-11-22T18:20:21Z 2009-11-22T18:20:21Z <p>OK, let's be original. :)</p> <pre><code>unsigned int mul(unsigned int a, unsigned int b) { if ( !a || !b ) return 0; if ( a == 1 ) return b; if ( b == 1 ) return a; return mul(a-1, b-1)+a+b-1; } </code></pre> http://stackoverflow.com/questions/1747956/what-do-you-do-to-pass-time-during-long-operations-compiling-uploading-etc 1 What do you do to pass time during long operations (compiling, uploading, etc)? Vilx- 2009-11-17T10:36:12Z 2009-11-21T02:08:45Z <p>It's no secret that having to wait while coding breaks you out of "the zone". Even worse, you might get sucked in by some activity (like SO) and suddenly realize you've just wasted yet another half an hour. Long compile times are often mentioned in this context, but there are many other things with the same effect - programs that open slowly, files that need to be uploaded, scripts that take time to execute, etc. The net result is the same.</p> <p>Sure, it's an argument to get better hardware, but let's face it - not all of us can afford top-notch computers, and even on those there are some things that just take time.</p> <p>So - how do you cope with this problem? What do you do during the wait that makes it easier to return to coding afterwards?</p> <p>(P.S. If this question has already been asked, I wasn't able to find it)</p> http://stackoverflow.com/questions/1770090/what-c-tutorial-would-you-recommend-for-an-experienced-programmer-that-has-some 2 What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language? Vilx- 2009-11-20T12:11:38Z 2009-11-20T14:47:34Z <p>In my early days of programming, before I started working professionally, I wrote a fair share of trinket/exercise apps in C++ and felt fairly confident that I know the language. Then, as opportunity came, I went to do real work and left the C/C++ world. For the past 5 years I've written tons of code in C# and have had scarcely any encounters with the C/C++ languages. Now, after spending some time on SO and teh interwebs, I see that what I thought I know as "C++" is actually a mix between C and C++, with large gaps in my knowledge about the more intricate workings of the language. At the same time I also realize that I am intrigued by the language and would like to learn it more.</p> <p>Googling for "C++ tutorials" reveals a wealth of tutorials, but they are all aimed at complete beginners, spending a lot of time explaining basics that I'm already familiar with. I don't expect that there will be any tutorials made exactly for me, but are there some that have at least been written with an experienced programmer in mind, not spending a lot of time on trivial things, and discussing the finer points of the language and compilers?</p> http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1770521#1770521 28 Answer by Vilx- for Code-Golf: What is the shortest program that compiles and crashes? Vilx- 2009-11-20T13:46:50Z 2009-11-20T13:46:50Z <p>I wonder if this counts...</p> <pre><code>a </code></pre> <p>This is in JavaScript. This gives the <strong>runtime</strong> error of "object not found". Since JavaScript is a dynamic language, syntactically this is actually correct. Still feels like twisting the rules. :P</p> http://stackoverflow.com/questions/1769358/use-of-using-keyword-in-c/1769427#1769427 1 Answer by Vilx- for use of "using" keyword in c# Vilx- 2009-11-20T09:44:41Z 2009-11-20T09:44:41Z <p>There are two uses of the keyword.</p> <p>One is when you are too lazy to type <code>System.Web.UI.WebControls.TextBox</code> you add <code>using System.Web.UI.WebControls</code> at the top of your code file and henceforth just write <code>TextBox</code>. That's all it does - shortens the code you have to write (and makes it easier to read).</p> <p>The other one has to do with the <code>IDisposable</code> interface. This interface is for objects that need to be cleaned up after you are done using them. Like files, that need to be closed, or DB connections, or that kind of stuff. You could just simply place a call to the <code>Dispose()</code> method yourself wherever needed, but this makes it easier. In short, this:</p> <pre><code>using (var X = new MyObject()) { // Code goes here } </code></pre> <p>is equivalent to this:</p> <pre><code>var X = new MyObject(); try { // Code goes here } finally { if ( X != null ) X.Dispose(); } </code></pre> <p>Again - it's a shorthand for a piece of code that ensures, that no matter what happens, the <code>Dispose()</code> method will get called. Even when your code throws an exception, or you <code>return</code> out of the method, the <code>Dispose()</code> method will get called. This ensures that you don't accidentally leave files open or something.</p> <p>In general, if you ever use an object that implements the <code>IDisposable</code> interface, place it in a <code>using</code> block.</p> http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe/1769359#1769359 0 Answer by Vilx- for How not to scare programmers using Visual Source Safe :-) Vilx- 2009-11-20T09:34:48Z 2009-11-20T09:34:48Z <p>Not a direct answer (as I'm an advocate of SVN myself), but take a look at Wikipedia's entries for <a href="http://en.wikipedia.org/wiki/List_of_revision_control_software" rel="nofollow">List of revision control software</a> and <a href="http://en.wikipedia.org/wiki/Comparison_of_revision_control_software" rel="nofollow">Comparison of revision control software</a>. It will give you something to investigate while you wait for answers here and you might find something little-known that just fits the bill for you. :)</p> http://stackoverflow.com/questions/1716036/net-windows-forms-datagridview-have-to-click-combobox-column-three-times-to-ge 1 .NET Windows Forms datagridview - have to click combobox column three times to get focus Vilx- 2009-11-11T15:43:12Z 2009-11-19T22:07:47Z <p>I'm making a Windows Forms application which has a standard <code>DataGridView</code> in it. The <code>DataGridView</code> has several <code>DataGridViewComboBoxColumn</code>s in it. And they are a pain to work with. To get one of them to open up (as in, drop down the list), you have to click the cell at least 3 (!!!) times. Seems that the first click ends the editing of the previous cell; The second click activates the cell; and only the third click gets sent to the combobox itself. User interface nightmare, especially when you have to enter a lot of data through these comboboxes.</p> <p>Is there any workaround?</p> <p><strong>Added:</strong> I just tried it in a blank solution. Just a single form with a single datagridview. The same issue. My colleagues are having the same problem, so I can't be the only one with this. Is there no standard workaround?</p> http://stackoverflow.com/questions/1763543/ternary-operator-associativity-in-c-can-i-rely-on-it 6 Ternary operator associativity in C# - can I rely on it? Vilx- 2009-11-19T14:11:40Z 2009-11-19T20:35:07Z <p>Ahh, don't you just love a good ternary abuse? :) Consider the following expression:</p> <pre><code>true ? true : true ? false : false </code></pre> <p>For those of you who are now utterly perplexed, I can tell you that this evaluates to <strong>true</strong>. In other words, it's equivalent to this:</p> <pre><code>true ? true : (true ? false : false) </code></pre> <p>But is this reliable? Can I be certain that under some circumstances it won't come to this:</p> <pre><code>(true ? true : true) ? false : false </code></pre> <p>Some might say - <em>well, just add parenthesis then or don't use it altogether - after all, it's a well known fact that ternary operators are evil!</em></p> <p>Sure they are, but there are some circumstances when they actually make sense. For the curious ones - I'm wring code that compares two objects by a series of properties. It would be pretty nice if I cold write it like this:</p> <pre><code>obj1.Prop1 != obj2.Prop1 ? obj1.Prop1.CompareTo(obj2.Prop1) : obj1.Prop2 != obj2.Prop2 ? obj1.Prop2.CompareTo(obj2.Prop2) : obj1.Prop3 != obj2.Prop3 ? obj1.Prop3.CompareTo(obj2.Prop3) : obj1.Prop4.CompareTo(obj2.Prop4) </code></pre> <p>Clear and concise. But it does depend on the ternary operator associativity working like in the first case. Parenthesis would just make spaghetti out of it.</p> <p>So - is this specified anywhere? I couldn't find it.</p> http://stackoverflow.com/questions/516469/ie6-performance-with-css-expressions 0 IE6 performance with CSS expressions Vilx- 2009-02-05T15:50:10Z 2009-11-19T09:35:07Z <p>We are developing a web application that will be sold to many clients. There is already one client (a bank) which has decided that it will buy the product once it is ready. Unfortunately due to some miscommunication it came out rather late that the only browser they use is IE6. The application was already started with the thought in mind that it does not need to support anything else below IE7. The results are pretty good too - it's fully useable on IE7/FF/Opera/Safari. Haven't tested on Chrome, but expect little problems there. Unfortunately there is now the IE6 requirement after all...</p> <p>The application isn't too far developed yet, and the design is pretty much OK, so the change isn't that horrible. Still, it'll take some work.</p> <p>A nice thing about IE6 is that it supports two nonstandard and very helpful features. First is conditional comments, which lets me include some CSS/JS files only for IE6. Second is CSS expressions. That is, things like this:</p> <pre><code>input { background-color: expression(this.type='text'?'silver':''); } </code></pre> <p>In essence it binds CSS values to JavaScript expressions. This allows to easily emulate many CSS features that IE6 does not support natively, and could lighten my burden considerably.</p> <p>Unfortunately IE is infamous for its JavaScript performance. I'm worried that using too many of these expressions might slow it down to a crawl. I also have no idea what computers the bank is using. Since it's a pretty big one, I'd expect a wide variety in all their branch offices. I don't expect to use anything much there - some simple math, ternary operators and looking at this element's/parent element's properties. Still there would be a couple dozen of these in the IE6_override.CSS file.</p> <p>Can this be a problem?</p> <p><strong>Added:</strong> Blah, this was what I was afraid of. OK, will see how much I can use other hacks to get around the shortcomings. Thanx, people!</p> http://stackoverflow.com/questions/1761751/what-browsers-support-alpha-channel-in-colors 0 What browsers support Alpha channel in colors? Vilx- 2009-11-19T08:28:42Z 2009-11-19T08:51:01Z <p>Since I'm always sticking to CSS 2, it was a (pleasant) surprise for me today to find out that CSS 3 supports alpha channels in colors. That allows for a nice range of effects. But - which browsers (and from what version) support this? Is it safe to use this today, or are we better off by still making a 1x1px png image and adding the IE6-filter-hack?</p> http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052 0 Answer by Vilx- for Semantic html5. Back to the 90s ? Vilx- 2009-11-18T16:03:09Z 2009-11-18T16:03:09Z <p>I too hate the way that W3C is going with their specs. There are many things that I don't like, and this "semantics" fad is one of them. (Others include taking forever to complete their specs and leaving too many important details for the browsers to implement as they choose)</p> <p>Most of all I don't like it because it makes my work as a web developer more difficult. I often have to make a choice whether to make the webpage "semantically correct" or "visually/aesthetically pleasing". The latter wins of course, because that is what the users want, but as a result validations start failing and the whole thing gets quite non-semantic (tables for layout and other things).</p> <p>Another issue at which I frown is that they have officialy declared that the "class" attribute is for semantics, but then they used it for visual presentation selectors in CSS.</p> <p>Bottom line - <strong>DON'T MIX SEMANTICS AND VISUAL REPRESENTATION</strong>. If you use some mechanism for describing semantics (like tag names, attribute values, or what not else), then don't use it for funcional/visual purposes and vice versa.</p> <p>If I would design HTML, I would simply add an attribute "semantic" which could (like the "class" attribute) be added to any tag. Then there would be a number of predefined values like all those headers/footers/articles/quotes/etc.</p> <p>Tags would define functionality. Basically you could reduce HTML tags to just a handful, like "div", "table/tr/td", "a", "img", "form", "input" and "select". I probably missed a few but this is the bulk. Visual styling would be accomplished through CSS.</p> <p>This way the three areas - semantics, visual representation, and functionality - would be completely independent and wouldn't clash in real life solutions.</p> <p>Of course, I don't think W3C is interested in practical solutions...</p> http://stackoverflow.com/questions/1755657/what-form-is-dll-what-makes-it-processor-dependant/1755940#1755940 0 Answer by Vilx- for What form is DLL & what makes it processor dependant Vilx- 2009-11-18T13:24:27Z 2009-11-18T13:24:27Z <p>First of all, <strong>everything</strong> in a computer is in the form of "0's &amp; 1's" . The fact that the computer can display some of these as text, pictures, sounds, 3D models, etc. is just a matter of how you interpret them. But down there, at the metal, it's all just "0's &amp; 1's" (also known as bits). Note though that they are always grouped together in groups of 8, and these are called "bytes". It's really for the sake of efficiency, because operating with every bit individually would be too tedious. Actually, todays computers don't even operate on single bytes anymore (or rather - they do it very rarely). Mostly you operate with 4 or 8 bytes at a time, depending on whether you have a 32-bit or 64-bit CPU (that's in layman's terms, it's actually a bit more complicated than that).</p> <p>As for a .DLL file - like an .EXE file, it contains bytes that describe instructions that a CPU can execute. The CPU takes these bytes directly from the .DLL/.EXE and executes them without any further modifications. That's why these files are CPU-specific. In different CPU architectures the same combination of bytes means different things, so a .DLL/.EXE will run correctly only on the CPU for which it was designed. On other CPUs these bytes will mean some other instructions, and when run, the program will most likely do some utter nonsense and crash immediately.</p> <p>The assembly commands you mentioned also deserve an explanation. "Assembler" is not a language that a CPU can understand. It's a language a human can understand. It was created because writing directly in machine code (the bytes that the CPU actually understands) is very difficult. What you get is utter gibberish on the screen (try opening some .EXE file in Notepad!) but every bit has to be precisely set for it to work. </p> <p>So assembly language is basically the same thing, except these instructions are written in text that humans can read. For every machine code that a CPU can understand, there is am instruction with a human-friendly name. An assembly compiler simply reads these instructions and replaces them with the bytes that represent the actual instructions for the CPU to execute. It's a 1:1 operation. Every command in assembly language matches a single machine instruction (again, in layman's terms).</p> <p>So you see, there isn't even a single assembly language. Every CPU architecture has its own assembly language, because they each have different instructions.</p> <p>Note though that all this applies to native .DLL/.EXE files. .NET files are different - they don't contain machine code, but rather instructions for an abstract, nonexistent CPU. It's like Java bytecodes. When a .NET .DLL/.EXE is run, the .NET runtime translates it from the abstract instructions to the instructions that the specific CPU can understand. They use a lot of tricks to make this very fast, so these files run almost as fast as simple .DLL/.EXE files.</p> <p>Does this clear things up? :)</p> http://stackoverflow.com/questions/1749462/when-should-we-create-a-new-method/1749473#1749473 2 Answer by Vilx- for When should we create a new method? Vilx- 2009-11-17T15:04:30Z 2009-11-17T15:04:30Z <p>I think that this is a very subjective question with no real answer. Different situations demand different solutions, and there will not be a single recipe of "when to create a new method". It depends.</p> http://stackoverflow.com/questions/1749408/dynamically-reassemble-a-picture-in-javascript/1749415#1749415 4 Answer by Vilx- for Dynamically reassemble a picture in javascript Vilx- 2009-11-17T14:56:31Z 2009-11-17T15:02:09Z <p>It's called "interlacing" and is a feature of JPG and PNG file formats. GIF also supports it, albeit not so well.</p> <p>It really depends on how you save your images. Most decent image editors will have a checkbox which allows you to specify whether to produce interlaced or non-interlaced images. Some (like Photoshop) even allow you to specify how many passes to do for a JPG file.</p> <p>The idea behind the feature is exactly this - so that you would get a picture over the wire as fast as possible. It would be blurry at first, but you would at least have something. The finer details would come later.</p> <p>Interlaced pictures are a little bit larger than non-interlaced pictures with the same content.</p> <p><strong>Added:</strong> In laymans terms, think of it like this - instead of one picture, the JPG file will contain three - small one, medium, and full size. At first the small one is downloaded and then displayed really stretched. Then the medium one gives more details (but is still stretched), and finally the full picture arrives. There can be more than 3 pictures as well.</p> http://stackoverflow.com/questions/1749258/lightweight-java-database-with-maven-plugin-for-starting-stopping/1749390#1749390 0 Answer by Vilx- for Lightweight Java database with Maven plugin for starting/stopping? Vilx- 2009-11-17T14:51:58Z 2009-11-17T14:51:58Z <p>I've no idea whether it supports what you need, but SQLite is so immensely popular that it seems to have integration plugins with about anything. Check it out.</p> http://stackoverflow.com/questions/1749229/direct-x-in-c-game-programming/1749284#1749284 7 Answer by Vilx- for Direct-X in C++ Game Programming. Vilx- 2009-11-17T14:31:14Z 2009-11-17T14:31:14Z <p>DirectX is a library (a large collection of classes, really) that allows you to "talk" to the video adapter, sound card, keyboard, mouse, joystick, etc. It allows you to do it much more efficiently then other "standard" Windows functions. This is important because games need all the performance gain you can get - and DirectX has plenty to offer in this regard. Especially when it comes to graphics programming, because it has functions that enable you to use the 3D acceleration features of your graphics card. Windows doesn't have such functions by default.</p> <p>The DirectX SDK contains:</p> <ul> <li>Documentation for all the features of DirectX;</li> <li>Tutorials in the C++ language to get you started if you don't know anything;</li> <li>Sample applications;</li> <li>The necessary .h and .lib files to add DirectX support to your program;</li> <li>The debug version of DirectX (I think, I'm not so sure about this one)</li> <li>The DirectX redist that you can include with your own programs.</li> </ul> <p>If you're not up to speed with C++ then starting with DirectX development will be quite difficult, as either of these things has a pretty big learning curve.</p> <p>Btw - you did download the latest version from Microsoft webpage, not a 5 years old copy from some web guy, right?</p> http://stackoverflow.com/questions/1749090/help-me-with-some-c-code/1749110#1749110 4 Answer by Vilx- for Help me with some c++ code Vilx- 2009-11-17T14:03:36Z 2009-11-17T14:03:36Z <p>Better get someone who knows this stuff. What you're asking isn't exactly rocket science, but is still pretty easy to get wrong if done by an inexperienced person.</p> http://stackoverflow.com/questions/1748999/c-how-do-i-insert-a-tab/1749035#1749035 1 Answer by Vilx- for C# @"" how do i insert a tab? Vilx- 2009-11-17T13:52:05Z 2009-11-17T13:52:05Z <p>When using the @ syntax, all character escapes are disabled. So to get a tab or a newline you will have to insert a literal TAB or a newline. It's easy - just hit the TAB or ENTER button on your keyboard. Note, that you might need to change the behavior of TAB ir Visual Studio if it is set to enter spaces instead of literal TAB characters.</p> http://stackoverflow.com/questions/1748719/c-anonymous-delegate/1748736#1748736 1 Answer by Vilx- for C# - Anonymous delegate Vilx- 2009-11-17T13:04:43Z 2009-11-17T13:04:43Z <p>They are delegates to anonymous methods. This is one way to make anonymous methods, which was available since .NET 2.0. With .NET 3.0 you can also use lambda expressions which are simpler to write (but compile to the same code). I suppose that's what you meant with "anonymouse methods". But really, they are one and the same thing.</p> http://stackoverflow.com/questions/990462/generating-zip-files-with-php-apache-on-the-fly-in-high-speed 2 Generating ZIP files with PHP + Apache on-the-fly in high speed? Vilx- 2009-06-13T10:10:11Z 2009-11-17T00:54:25Z <p>To quote some <a href="http://rads.stackoverflow.com/amzn/click/0123790506" rel="nofollow">famous words</a>:</p> <blockquote> <p>“Programmers… often take refuge in an understandable, but disastrous, inclination towards complexity and ingenuity in their work. Forbidden to design anything larger than a program, they respond by making that program intricate enough to challenge their professional skill.”</p> </blockquote> <p>While solving some mundane problem at work I came up with this idea, which I'm not quite sure how to solve. I know I won't be implementing this, but I'm very curious as to what the best solution is. :)</p> <p><hr></p> <p>Suppose you have this big collection with JPG files and a few odd SWF files. With "big" I mean "a couple thousand". Every JPG file is around 200KB, and the SWFs can be up to a few MB in size. Every day there's a few new JPG files. The total size of all the stuff is thus around 1 GB, and is slowly but steadily increasing. Files are VERY rarely changed or deleted.</p> <p>The users can view each of the files individually on the webpage. However there is also the wish to allow them to download a whole bunch of them at once. The files have some metadata attached to them (date, category, etc.) that the user can filter the collection by.</p> <p>The ultimate implementation would then be to allow the user to specify some filter criteria and then download the corresponding files as a single ZIP file.</p> <p>Since the amount of criteria is big enough, I cannot pre-generate all the possible ZIP files and must do it on-the-fly. Another problem is that the download can be quite large and for users with slow connections it's quite likely that it will take an hour or more. Support for "resume" is therefore a must-have.</p> <p>On the bright side however the ZIP doesn't need to compress anything - the files are mostly JPEGs anyway. Thus the whole process shouldn't be more CPU-intensive than a simple file download.</p> <p>The problems then that I have identified are thus:</p> <ul> <li>PHP has execution timeout for scripts. While it can be changed by the script itself, will there be no problems by removing it completely?</li> <li>With the resume option, there is the possibility of the filter results changing for different HTTP requests. This might be mitigated by sorting the results chronologically, as the collection is only getting bigger. The request URL would then also include a date when it was originally created and the script would not consider files younger than that. Will this be enough?</li> <li>Will passing large amounts of file data through PHP not be a performance hit in itself?</li> </ul> <p>How would you implement this? Is PHP up to the task at all? <hr> <strong>Added:</strong></p> <p>By now two people have suggested to store the requested ZIP files in a temporary folder and serving them from there as usual files. While this is indeed an obvious solution, there are several practical considerations which make this infeasible.</p> <p>The ZIP files will usually be pretty large, ranging from a few tens of megabytes to hundreads of megabytes. It's also completely normal for a user to request "everything", meaning that the ZIP file will be over a gigabyte in size. Also there are many possible filter combinations and many of them are likely to be selected by the users.</p> <p>As a result, the ZIP files will be pretty slow to generate (due to sheer volume of data and disk speed), and will contain the whole collection many times over. I don't see how this solution would work without some mega-expensive SCSI RAID array.</p> http://stackoverflow.com/questions/1741604/do-you-use-the-outer-keyword-when-writing-left-right-joins-in-sql 5 Do you use the OUTER keyword when writing left/right JOINs in SQL? Vilx- 2009-11-16T11:28:59Z 2009-11-16T14:06:43Z <p>I often see people who write SQL like this:</p> <pre><code>SELECT * from TableA LEFT OUTER JOIN TableB ON (ID1=I2) </code></pre> <p>I myself write simply:</p> <pre><code>SELECT * from TableA LEFT JOIN TableB ON (ID1=I2) </code></pre> <p>To me the "OUTER" keyword is like line noise - it adds no additional information, just clutters the SQL. It's even optional in most RDBMS that I know. So... why do people still write it? Is it a habit? Portability? (Are your SQL's really portable anyway?) Something else that I'm not aware of?</p> http://stackoverflow.com/questions/1742238/how-to-write-this-t-sql-where-condition 0 How to write this T-SQL WHERE condition? Vilx- 2009-11-16T13:35:55Z 2009-11-16T13:44:42Z <p>I've got two tables:</p> <pre><code>TableA Col1 Col2 TableB Col3 Col4 </code></pre> <p>I want to join them together:</p> <pre><code>SELECT * from TableA join TableB ON (...) </code></pre> <p>Now, in place of <code>...</code> I need to write an expression that evaluates to:</p> <ol> <li>If Col3 is not null, then true iif Col1==Col3; otherwise</li> <li>If Col3 is null, then true iif Col2==Col4</li> </ol> <p>What would be the most elegant way to do this?</p> http://stackoverflow.com/questions/1739890/oracle-cyclic-foreign-key-references-issues/1741371#1741371 1 Answer by Vilx- for Oracle cyclic foreign key references issues. Vilx- 2009-11-16T10:41:38Z 2009-11-16T10:41:38Z <p>Silly idea - why not just have a single table "Couples" with columns "Husband_Name" and "Wife_Name" that each have a unique constraint? Seems to me like this satisfies all the requirements. :)</p> http://stackoverflow.com/questions/1741039/line-count-path-problem/1741082#1741082 0 Answer by Vilx- for line count path problem Vilx- 2009-11-16T09:35:53Z 2009-11-16T09:35:53Z <p>This is not a very safe way of doing things. <s>If two users submitted files with the same filename, they would overwrite each other.</s> This limits the user to a unique filename, which after a while of running a system becomes a problem. Not to mention that the user would be quite puzzled if he ever got such a message. </p> <p>A much better solution is to generate your own filename for every file. You could make a long random string, or maybe take the <code>mysql_insert_id()</code> for the inserted record in mt_upload table. Then you would also not need to mess around with regexps, and the whole thing would be much simpler. In the mt_upload table you can keep the old filename if you want to show it to the user or something.</p> http://stackoverflow.com/questions/1738696/php-ide-with-best-code-completion 4 PHP IDE with best code completion? Vilx- 2009-11-15T20:21:58Z 2009-11-16T03:27:18Z <p>Despite what <a href="http://www.charlespetzold.com/etc/DoesVisualStudioRotTheMind.html" rel="nofollow">some might say</a>, I believe that code completion (aka Intellisense) is the second best invention when it comes to code editors (the first being syntax coloring). It really makes coding easier because I don't have to worry whether I named the function <code>CalculateReportSums</code>, <code>ReportSumsCalculate</code> or simply <code>GetReportSums</code>.</p> <p>Unfortunately I have not yet found a code editor which would satisfactory implement this feature for PHP. And by "satisfactory" I mean "as good as Visual Studio for C#".</p> <p>My first choice of text editor is Notepad++, but that only has a list of PHP's built-in functions, and it only appears after you hit Ctrl+SPACE. I've also tried Eclipse+PDT, which is better, but still often has hiccups, sometimes fails altogether for no apparent reason (no list available), and always appears only when I pause typing (setting the timeout to some small value causes the list not to appear altogether).</p> <p>So - is there something better out there? Something that would be aware of all the variables in the current scope, that would be able to follow <code>include()</code>s, and would display the list in real-time as I type?</p> <p>I know that PHP is a dynamic language and a perfect code-completion is impossible in principle (because you don't know what variables will be there until runtime), but it should still be possible to implement it to a fairly good degree - much better than what I've seen so far.</p> <p><strong>Added:</strong> To add a few minor points - I want the CC to be instantaneous, like in Visual Studio. I type a character, and the list shows at the same instant. I type another character and the list becomes half the size before I can even blink. Near-zero CPU usage, instantaneous results (all hail the Gods of caching!).</p> <p>Also - I'm fine with documenting my functions and even variables in a special way. I prefer PHPLint syntax (because then I can check my code with it later), but other syntaxes will do as well. Forcing to do this is also good for your commenting discipline. :)</p> http://stackoverflow.com/questions/1799896/does-there-exist-a-digital-image-steganography-algorithm-which-would-be-resistant Comment by Vilx- on Does there exist a digital image steganography algorithm which would be resistant to image manipulation? Vilx- 2009-11-26T08:56:59Z 2009-11-26T08:56:59Z Of course. I'm not a fan of DRM. :) http://stackoverflow.com/questions/1799896/does-there-exist-a-digital-image-steganography-algorithm-which-would-be-resistant/1800079#1800079 Comment by Vilx- on Does there exist a digital image steganography algorithm which would be resistant to image manipulation? Vilx- 2009-11-25T21:48:06Z 2009-11-25T21:48:06Z I suppose that if one knew what algorithm was being used and was determined to deliberately remove (or cripple) the watermark, it would indeed be very difficult to stop him. However the vast majority of image thieves are simple users that don't think much about these things (or so I believe - I don't have any data). It would be already a good step forward to protect against them. http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript Comment by Vilx- on Calculating difference between username and email in javascript Vilx- 2009-11-25T11:55:02Z 2009-11-25T11:55:02Z Another question - why is tes.ter bad but tester6 good? They both differ by exactly one character. Can you be more specific (formal) about what is &quot;good&quot; and what is not? http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783163#1783163 Comment by Vilx- on Examples of vulnerable PHP code? Vilx- 2009-11-23T14:25:24Z 2009-11-23T14:25:24Z Not to mention storing passwords in plaintext. http://stackoverflow.com/questions/1782861/php-doesnt-handle-stack-overflow/1782904#1782904 Comment by Vilx- on PHP doesn't handle stack overflow? Vilx- 2009-11-23T13:02:54Z 2009-11-23T13:02:54Z Sweet. Can't wait until production upgrades to PHP 5.3 then. :P http://stackoverflow.com/questions/1782861/php-doesnt-handle-stack-overflow Comment by Vilx- on PHP doesn't handle stack overflow? Vilx- 2009-11-23T13:02:13Z 2009-11-23T13:02:13Z As I said - it should handle it like any other unhandled runtime error (such as an uncaught exception). It should give some error message (can you say &quot;stack overflow&quot;?) and return a 500 HTTP status code. http://stackoverflow.com/questions/1782861/php-doesnt-handle-stack-overflow/1782974#1782974 Comment by Vilx- on PHP doesn't handle stack overflow? Vilx- 2009-11-23T13:00:25Z 2009-11-23T13:00:25Z That's not the point. Sure I can code with many safeguards of my own. But bugs are inevitable, and sooner or later there will be a StackOverflow as well. Most likely the recursion won't be intended, like one function calling another which in turn calls the first one. Having a nondescript segfault in this case doesn't help at all. http://stackoverflow.com/questions/1782861/php-doesnt-handle-stack-overflow Comment by Vilx- on PHP doesn't handle stack overflow? Vilx- 2009-11-23T12:31:41Z 2009-11-23T12:31:41Z No doubt. Especially because PHP doesn't have a compiler. :p http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779730#1779730 Comment by Vilx- on Does version control let you work simultaneously on two different versions of a project? Vilx- 2009-11-22T20:01:44Z 2009-11-22T20:01:44Z Look... I don't think there is a very definitive answer here about when to use conditional compilation and when to use branches. It's pretty subjective and either approach can work. All I'm saying is that in <b>my</b> opinion conditional compilation would be more suited for the OP's needs than branches. http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779730#1779730 Comment by Vilx- on Does version control let you work simultaneously on two different versions of a project? Vilx- 2009-11-22T19:58:56Z 2009-11-22T19:58:56Z This isn't the case. If you actually have parallel versions of the product, then by all means go for branches! We do that too at my workplace. Same thing goes for version branches, ahead branches, etc. But the merging will be done by hand every time. http://stackoverflow.com/questions/1779736/regular-expression-not-working-when-provided-in-double-quotes-in-javascript Comment by Vilx- on regular expression not working when provided in double quotes in javascript Vilx- 2009-11-22T19:49:23Z 2009-11-22T19:49:23Z Is that JQuery you are using? $() is not a standard function, so dig up the documentation of whatever it is and see what it says there about the .attr() function. http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779730#1779730 Comment by Vilx- on Does version control let you work simultaneously on two different versions of a project? Vilx- 2009-11-22T19:45:51Z 2009-11-22T19:45:51Z Well, that still doesn't mean it's a best practice. :) Although, to be honest, I'm not very competent on source control best practices. Still, seems to me that conditional compilation is way more suited for this job than source control. http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779517#1779517 Comment by Vilx- on multiplication program using recursion(in C) Vilx- 2009-11-22T19:34:07Z 2009-11-22T19:34:07Z Nope. XD Whenever I give an answer to a homework, I either give it in pseudocode, give it incomplete, or give it so twisted and &quot;clever&quot; that the person who asks for it has no chance of explaining how it works (if he/she decides to give it as his/her own). :) http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779488#1779488 Comment by Vilx- on multiplication program using recursion(in C) Vilx- 2009-11-22T18:57:19Z 2009-11-22T18:57:19Z See my other answer. http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779488#1779488 Comment by Vilx- on multiplication program using recursion(in C) Vilx- 2009-11-22T18:51:53Z 2009-11-22T18:51:53Z Hello? <b>Unsigned</b> int?