User X-Istence - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:09:12Z http://stackoverflow.com/feeds/user/13986 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811640/imagemagick-convert-pdf-to-png/1811645#1811645 3 Answer by X-Istence for Imagemagick convert pdf to png X-Istence 2009-11-28T05:10:40Z 2009-11-28T05:10:40Z <p>What your command is currently attempting to do is execute a program named /usr/local/lib/ImageMagick which I am guessing is not what you were intending. If that is the path to ImageMagick and you want to use the convert utility you need to modify your command to the following:</p> <pre><code>/usr/local/lib/ImageMagick/convert images/a.pdf images/a.png </code></pre> <p>At which point it should work without any issues! You may want to dig further into what the convert command can do for you!</p> http://stackoverflow.com/questions/86943/eagle-cad-parts-library 1 Eagle CAD parts library X-Istence 2008-09-17T19:52:34Z 2009-11-27T08:29:31Z <p>I am currently using Eagle CAD 5.x and I am unable to use older parts libraries that were created for the 4.x version of Eagle CAD. Does anyone know of a way to convert them to the new format that is required by the new version?</p> <p>I am looking for the Parallax SX28/SX48 parts, they are in the Scenix library that can be downloaded from <a href="http://www.cadsoft.de/cgi-bin/download.pl?page=/home/cadsoft/html_public/download.htm.en&amp;dir=eagle/userfiles/libraries" rel="nofollow">Eagle Library download site</a>. </p> <p>Any hints or ideas would be appreciated!</p> http://stackoverflow.com/questions/86943/eagle-cad-parts-library/1807421#1807421 0 Answer by X-Istence for Eagle CAD parts library X-Istence 2009-11-27T08:29:31Z 2009-11-27T08:29:31Z <p>I figured out what the issue was. Eagle CAD 5.x for Mac OS X does not have the same library import code that the Windows version does. Because of the way that files were saved in 4.x of Eagle the import code on Mac OS X does not know how to handle the file format, while the one on Windows does.</p> <p>The fix is simple, on a Windows machine open the library, and save the library. It will update its format to the newer format which may then be used on Mac OS Xs version of Eagle CAD.</p> http://stackoverflow.com/questions/1804387/why-is-there-a-for-preamble-in-facebooks-json-responses/1804400#1804400 5 Answer by X-Istence for Why is there a for(;;); preamble in facebooks JSON responses? X-Istence 2009-11-26T15:41:25Z 2009-11-26T15:41:25Z <p>See this StackOverflow post: <a href="http://stackoverflow.com/questions/856045/how-to-restrict-json-access">How to restrict JSON access?</a></p> <p>In particular this comment within that thread: <a href="http://stackoverflow.com/questions/856045/how-to-restrict-json-access/856084#856084">for/while loops in JSON responses</a></p> <p><hr></p> <p>Basically this is used so that attackers can't get the URL and include it on their page and have JavaScript now put the variables on the page because as soon as the request has been serviced the browser will go into an infinite loop not allowing other JavaScrip access to said variables which would potentially allow attackers to use your browser to get information that is meant to stay private.</p> http://stackoverflow.com/questions/1804338/list-doesnt-display-inline-ie/1804375#1804375 1 Answer by X-Istence for list doesnt display inline IE? X-Istence 2009-11-26T15:37:33Z 2009-11-26T15:37:33Z <p>You are putting list-style-type on your div but not on your ul element. list-style-type is not inherited from non-list items in IE.</p> http://stackoverflow.com/questions/1381739/mac-os-x-custom-application-keeping-bouncing-in-the-dock/1381740#1381740 0 Answer by X-Istence for MAC OS X Custom Application Keeping Bouncing in the Dock X-Istence 2009-09-04T21:46:16Z 2009-09-04T22:02:10Z <p>As far as I am aware there is no way to disable the annoying double Java bounce without making your Java application a first class citizen on Mac OS X (much like NetBeans, or Eclipse). As for making certain programs not show in the dock, there are .plist modifications that can be made so that the program does not show up in the dock. See <a href="http://www.macosxhints.com/article.php?story=20010701191518268" rel="nofollow">http://www.macosxhints.com/article.php?story=20010701191518268</a></p> http://stackoverflow.com/questions/1371103/php-session-id-not-matching/1371656#1371656 0 Answer by X-Istence for php session id not matching. X-Istence 2009-09-03T06:08:16Z 2009-09-03T06:08:16Z <p>Sessions on PHP have always caused issues for me, these days I have moved onto the Zend Framework which has a <code>Zend_Session</code> component that takes care of most of the issues for me and I have to do less thinking. Take a look and see if that would work for you as well!</p> http://stackoverflow.com/questions/1370130/zendnavigation-caching/1371651#1371651 0 Answer by X-Istence for Zend_Navigation caching X-Istence 2009-09-03T06:05:51Z 2009-09-03T06:05:51Z <p>After reading this question, I took a quick glance at the <code>Zend_Navigation</code> code and it does not seem that there should be any inherent issues with caching it using serialisation. However looking at the Zend_Navigation documentation I found the following:</p> <blockquote> <p>The toArray() method converts the container and the pages in it to an array. This can be useful for serializing and debugging. - <a href="http://framework.zend.com/manual/en/zend.navigation.containers.html#zend.navigation.containers.other" rel="nofollow">Zend Navigation Containers: Other</a></p> </blockquote> <p>You may want to create the Zend_Navigation object, use the toArray() function to create the array and cache that. Re-creating the pages from an array should be fairly inexpensive, although you may want to do some testing.</p> <p>Also, if possible, file a bug report with the Zend Framework maintainers so that they can take a look at it. </p> <p><code>Zend_Navigation</code> although an interesting component, and arguably a useful one is not something I use much. For big websites having 10,000+ objects in memory is not a smart idea, and the way certain items are implemented in <code>Zend_Navigation</code> makes it slow and unwieldy. Many developers using the Zend Framework have found other ways of accomplishing the same goals.</p> http://stackoverflow.com/questions/1371460/state-machines-tutorials/1371512#1371512 3 Answer by X-Istence for state machines tutorials X-Istence 2009-09-03T05:06:36Z 2009-09-03T05:06:36Z <p>State machines are not something that inherently needs a tutorial to be explained or even used. What I suggest is that you take a look at the data and how it needs to be parsed.</p> <p>For example, I had to parse the data protocol for a <a href="http://nearspace.0x58.com/index.php?title=Flight%5FComputer" rel="nofollow">Near Space balloon flight computer</a>, it stored data on the SD card in a specific format (binary) which needed to be parsed out into a comma seperated file. Using a state machine for this makes the most sense because depending on what the next bit of information is we need to change what we are parsing.</p> <p>The code is written using C++, and is available as <a href="http://nearspace.0x58.com/launches/Tools/ParseFCU.html" rel="nofollow">ParseFCU</a>. As you can see, it first detects what version we are parsing, and from there it enters two different state machines.</p> <p>It enters the state machine in a known-good state, at that point we start parsing and depending on what characters we encounter we either move on to the next state, or go back to a previous state. This basically allows the code to self-adapt to the way the data is stored and whether or not certain data exists at all even.</p> <p>In my example, the GPS string is not a requirement for the flight computer to log, so processing of the GPS string may be skipped over if the ending bytes for that single log write is found.</p> <p>State machines are simple to write, and in general I follow the rule that it should flow. Input going through the system should flow with certain ease from state to state.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/88148#88148 1 Answer by X-Istence for What should a developer know before building a public web site? X-Istence 2008-09-17T22:00:33Z 2009-08-18T17:59:11Z <p>If you are going to accept user input, learn input validation. This is the biggest thing that programmers make mistakes on, they accept user input in random location and it allows script kiddies to come along and remote include a file that then gives them full control over your local machine.</p> <p>"Be lenient in what you accept, but strict in what you output"</p> <p>However, don't trust any user generated input in any way shape or form. Don't trust it!</p> http://stackoverflow.com/questions/807979/efficient-huffman-tree-search-while-remembering-path-taken 0 Efficient Huffman tree search while remembering path taken X-Istence 2009-04-30T16:53:38Z 2009-08-03T22:53:28Z <p>As a follow up question related to my <a href="http://stackoverflow.com/questions/759707/efficient-way-of-storing-huffman-tree">question regarding efficient way of storing huffman tree's</a> I was wondering what would be the fastest and most efficient way of searching a binary tree (based on the Huffman coding output) and storing the path taken to a particular node.</p> <p>This is what I currently have:</p> <ul> <li>Add root node to queue</li> <li>while queue is not empty, pop item off queue <ul> <li>check if it is what we are looking <ul> <li>yes: Follow a head pointer back to the root node, while on each node we visit checking whether it is the left or right and making a note of it.</li> <li>break out of the search</li> </ul></li> <li>enqueue left, and right node</li> </ul></li> </ul> <p>Since this is a Huffman tree, all of the entries that I am looking for will exist. The above is a breadth first search, which is considered the best for Huffman trees since items that are in the source more often are higher up in the tree to get better compression, however I can't figure out a good way to keep track of how we got to a particular node without backtracking using the head pointer I put in the node.</p> <p>In this case, I am also getting all of the right/left paths in reverse order, for example, if we follow the head to the root, and we find out that from the root it is right, left, left, we get left, left, right. or 001 in binary, when what I am looking for is to get 100 in an efficient way.</p> <p>Storing the path from root to the node as a separate value inside the node was also suggested, however this would break down if we ever had a tree that was larger than however many bits the variable we created for that purpose could hold, and at that point storing the data would also take up huge amounts of memory.</p> http://stackoverflow.com/questions/1145078/mysql-random-rows-sorted-by-a-column-name 1 MySQL random rows sorted by a column name X-Istence 2009-07-17T18:58:20Z 2009-07-20T20:33:49Z <h2>Original Question:</h2> <p>I am currently using Zend Framework with <code>Zend_Db_*</code>, and I am selecting three random rows from a table:</p> <pre><code>$category-&gt;getTable()-&gt;select()-&gt;order(new Zend_Db_Expr('RAND()'))-&gt;limit('3') </code></pre> <p>Where <code>$category</code> is a <code>Zend_Db_Table_Row</code>. I would like to grab three random rows, but have those three rows ordered by the column named <code>name</code>.</p> <p>Changing the <code>-&gt;order()</code> to the following had no effect:</p> <pre><code>-&gt;order(array(new Zend_Db_Expr('RAND()'), 'name ASC')) </code></pre> <p>As the entries are still showing up un-ordered, and still random.</p> <p>Zend Framework solutions appreciated, but I can adapt other solutions to fit within my project.</p> <p><hr /></p> <p>I am aware of the scaling issues with using RAND(), the database will never get big enough for this to become an issue, the day it does I won't have to worry about maintaining it, the robots will, as I'll be long dead! :-P</p> <p><hr /></p> <h2>Answer</h2> <p>For those wondering how this was ultimately completed using Zend_Db_Select, this is what it came down to use a sub-select within the Zend_Db_Select (I was using <code>$category-&gt;findDefault_Model_projects()</code> to find the dependent rowset, but that does not allow me to use the select() as a subselect until <a href="http://framework.zend.com/issues/browse/ZF-6461" rel="nofollow">ZF-6461</a> fixes the issue, I am stuck with what I have):</p> <pre><code>$projects = new Default_Model_Projects(); $subselect = $projects-&gt;select()-&gt;order(new Zend_Db_Expr('RAND()'))-&gt;limit('3')-&gt;where('cid = ?', $category-&gt;id, Zend_Db::INT_TYPE); $db = $projects-&gt;getAdapter(); $select = $db-&gt;select()-&gt;from(array("c" =&gt; new Zend_Db_Expr("({$subselect})")))-&gt;order('name'); $stmt = $select-&gt;query(); $projects = $stmt-&gt;fetchAll(); </code></pre> <p>The generated SQL is:</p> <pre><code>SELECT `c`.* FROM (SELECT `projects`.* FROM `projects` WHERE (cid = 1) ORDER BY RAND() LIMIT 3) AS `c` ORDER BY `name` ASC </code></pre> <p>From there $projects contains the standard row set which can be iterated over much like any other database queries, the only thing it does not do is stick it in a table specific row/rowset class, which could have its downsides.</p> http://stackoverflow.com/questions/1145152/concat-and-sql/1145212#1145212 0 Answer by X-Istence for CONCAT and SQL X-Istence 2009-07-17T19:29:24Z 2009-07-17T19:29:24Z <p>Something like </p> <pre><code>SELECT *, CONCAT(column1, column2) AS s FROM table WHERE column3 = s </code></pre> http://stackoverflow.com/questions/1145132/how-safe-is-it-to-send-a-plain-text-password-using-ajax/1145144#1145144 1 Answer by X-Istence for How safe is it to send a plain text password using AJAX? X-Istence 2009-07-17T19:11:43Z 2009-07-17T19:11:43Z <p>This is just as safe as having a login form that is not SSL secured be sent over the wire, like almost all forums out there do!</p> http://stackoverflow.com/questions/977213/relationships-in-zenddbtableabstract 0 Relationships in Zend_DB_Table_Abstract X-Istence 2009-06-10T17:58:24Z 2009-06-14T11:03:48Z <p>I'm using the default framework code that was created with the Zend Framework Application tool, I added some autoloader magic so that any classes named <code>Default_&lt;*&gt;_&lt;*&gt;</code> would automatically be loaded from the correct directory, in this case <code>Default_Model_TableName</code>.</p> <p>application/models/ProjectCategories.php:</p> <pre><code>&lt;?php class Default_Model_ProjectCategories extends Zend_Db_Table_Abstract { protected $_name = 'categories'; protected $_dependentTables = array('Projects'); } </code></pre> <p>application/models/Projects.php:</p> <pre><code>&lt;?php class Default_Model_Projects extends Zend_Db_Table_Abstract { protected $_name = 'projects'; protected $_referenceMap = array( 'Category' =&gt; array( 'columns' =&gt; 'cid', 'refTableClass' =&gt; 'ProjectCategories', 'refColumns' =&gt; 'id', 'onUpdate' =&gt; self::CASCADE, 'onDelete' =&gt; self::CASCADE, ) ); } </code></pre> <p>What I am attempting to do is the following:</p> <pre><code>&lt;?php $categories = new Default_Model_ProjectCategories(); $category = $categories-&gt;find('1'); $category-&gt;findProjects(); </code></pre> <p>At which point I get an error thrown at me that it is unable to find Projects.php, and or that the file might not have contained a class named Projects.</p> <p>At that point I place Projects.php in the include path that was set up by the framework (/../library/) and the file is found, but now I lose my whole directory structure, and naming because I had to rename <code>Default_Model_Projects</code> to <code>Projects</code>. I am able to get everything to work if I place the file back in its original location, and change</p> <pre><code>protected $_dependentTables = array('Projects'); </code></pre> <p>to</p> <pre><code>protected $_dependentTables = array('Default_Model_Projects'); </code></pre> <p>but this also means that my <code>-&gt;findProjects()</code> now becomes <code>-&gt;findDefault_Model_Projects()</code>.</p> <p>Is there a way to tell it that when I am looking for <code>findProjects()</code> that it has to instantiate <code>Default_Model_Projects</code>? Is this something that is missing from Zend Framework, or am I attempting to shoehorn something in a way that it does not belong? How have you solved this issue?</p> http://stackoverflow.com/questions/977247/why-does-the-following-program-segfault/977270#977270 1 Answer by X-Istence for Why does the following program segfault? X-Istence 2009-06-10T18:07:47Z 2009-06-10T18:07:47Z <p>Ehm, you are assigning arr with 0, that is, if your compiler is nice enough to throw in a return 0; for you in that getArray() function, else it is undefined behaviour.</p> http://stackoverflow.com/questions/759707/efficient-way-of-storing-huffman-tree 4 Efficient way of storing Huffman tree X-Istence 2009-04-17T09:20:19Z 2009-06-02T22:04:28Z <p>I am writing a Huffman encoding/decoding tool and am looking for an efficient way to store the Huffman tree that is created to store inside of the output file.</p> <p>Currently there are two different versions I am implementing.</p> <ol> <li>This one reads the entire file into memory character by character and builds a frequency table for the whole document. This would only require outputting the tree once, and thus efficiency is not that big of a concern, other than if the input file is small.</li> <li>The other method I am using is to read a chunk of data, about 64 kilobyte in size and run the frequency analysis over that, create a tree and encode it. However, in this case before every chunk I will need to output my frequency tree so that the decoder is able to re-build its tree and properly decode the encoded file. This is where the efficiency does come into place since I want to save as much space as possible.</li> </ol> <p>In my searches so far I have not found a good way of storing the tree in as little space as possible, I am hoping the StackOverflow community can help me find a good solution!</p> http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why/873946#873946 4 Answer by X-Istence for What PHP framework would you choose for a new application and why? X-Istence 2009-05-17T05:14:31Z 2009-05-17T05:14:31Z <p>As a follow-up to <a href="http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why/2659#2659">Flubba</a>, I just wanted to point out that the Zend Framework has matured a lot since 1.5/1.0 (Docs and Framework itself), the current version is 1.8.1 and is an absolute blast to work with. I was able to get version 1.8.1 up and running within minutes and had a project going with the template I wanted and the various bits and pieces within the first day. The second day I started playing with <a href="http://framework.zend.com/manual/en/zend.form.html" rel="nofollow">Zend_Form</a> to create new forms and to have them output as well as using the validators to make sure we got valid data and then using <a href="http://framework.zend.com/manual/en/zend.mail.html" rel="nofollow">Zend_Mail</a> to send emails with attachments to satisfy project goals.</p> <p>Had I instead done this all by hand using standard PHP it would have taken me much longer, and would have made it harder to keep up with the changing and moving goals for the project (my boss keeps wanting new things after seeing how fast I added what he previously wanted).</p> <p>There are also plenty of tutorials out there now using Zend Framework and showing the various powerful features, <a href="http://framework.zend.com/docs/quickstart" rel="nofollow">the Zend Frameowrk Quickstart</a> is a fairly good starting point, it is the one I used to get started, from there reading the documentation is fairly easy.</p> <p>The documentation is easy to follow, contains many concrete examples on how to accomplish various tasks, but at the same time there is a lot of flexibility in how to use the various components and that choice is left up to the programmer.</p> <p>Tutorials:<br /> Rob Allen: <a href="http://akrabat.com/zend-framework-tutorial/" rel="nofollow">Tutorial: Getting Started with the Zend Framework 1.8</a><br /> Maugrim The Reaper's Blog: <a href="http://blog.astrumfutura.com/archives/367-Example-Zend-Framework-Blog-Application-Tutorial-Parts-1-8-Revisited.html" rel="nofollow">Example Zend Framework Blog Application Tutorial: Parts 1-8 Revisited</a></p> <p>Starters:<br /> Damien Mathieu: <a href="http://github.com/dmathieu/zendry/tree/master" rel="nofollow">A skeleton to build a Zend Framework application as DRY as possible</a></p> <p>Zend Framework has come a long way from the previous versions, you are still able to pick and choose from most of the available "classes" and use them stand-alone but it is becoming a very viable framework to start off development with on new projects. It is becoming a full featured web framework that can stand up next to <a href="http://cakephp.org/" rel="nofollow">Cake PHP</a>, <a href="http://www.symfony-project.org/" rel="nofollow">Symfony</a>, <a href="http://codeigniter.com/" rel="nofollow">CodeIgniter</a> and the many others that exist!</p> <p>Zend Framework, while still one of the younger frameworks for PHP out there has some awesome potential, it is quick moving and bug fixes are being put into the framework almost daily. I recently had an issue with how modules were being bootstrapped and after reading through the bug reports I noticed that they had released a new version that day to fix those exact bugs I had been seeing!</p> http://stackoverflow.com/questions/871795/how-to-know-where-a-form-came-from/871806#871806 1 Answer by X-Istence for How to know where a form came from? X-Istence 2009-05-16T05:55:52Z 2009-05-16T05:55:52Z <p>You can attempt to use the referral header set in HTTP requests, do note however that not all browsers set these correctly, or users have them turned off, or that they are very easily spoofed.</p> <p>Without a hidden field containing an unique identifier that is used to identify the form for that one single submission there is no good way of identifying whether the form is being forged or not.</p> http://stackoverflow.com/questions/869708/top-moleskine-journal-techniques-or-hacks-to-help-you-as-a-developer-with-dai/871803#871803 1 Answer by X-Istence for Top Moleskine (Journal) Techniques or "Hacks" to help you as a developer with daily tasks or projects. X-Istence 2009-05-16T05:52:48Z 2009-05-16T05:52:48Z <p>I personally find that using Google Notebook to keep small ideas, links and other things together allow me to easily remember to do certain tasks as well as helping me find that one thing I was looking at months ago for a certain tricky bug.</p> <p>The other thing that I do is that I blog. Writing ones ideas and thoughts down for the rest of the world to peruse at their leisurely time gives me a chance to clearly think out the ideas again to present them in a fashion that is understandable by the people I am targeting, make it as clear as possible, simplifying certain ideas and thoughts, and generally since I am looking at something in a new light I can find new ideas and tricks and tips.</p> http://stackoverflow.com/questions/871435/odd-incorrect-semaphore-behavior-on-os-x/871794#871794 1 Answer by X-Istence for Odd/Incorrect Semaphore Behavior on OS X X-Istence 2009-05-16T05:47:33Z 2009-05-16T05:47:33Z <pre><code>$ g++ sem-testing.cc -Wall $ ./a.out sem_getvalue: Function not implemented $ man sem_getvalue No manual entry for sem_getvalue </code></pre> <p>You are using a function that is not currently implemented in Mac OS X, and the integer you are printing out contains the default data that the integer was initialised with which was probably random data that was still in memory. Had you zero'd it out, by setting it with <code>int value = 0;</code> you might have caught this mistake sooner.</p> <p>This is the code I used (thanks to <a href="http://stackoverflow.com/questions/871435/odd-incorrect-semaphore-behavior-on-os-x/871501#871501">bdonlan</a>):</p> <pre><code>#include &lt;iostream&gt; #include &lt;fcntl.h&gt; #include &lt;stdio.h&gt; #include &lt;semaphore.h&gt; int main() { sem_t* test; test = sem_open("test", O_CREAT, 0, 1); if (test == SEM_FAILED) { perror("sem_open"); return 1; } int value; if (sem_getvalue(test, &amp;value)) { perror("sem_getvalue"); return 1; } printf("Semaphore initialized to %d\n", value); } </code></pre> http://stackoverflow.com/questions/870757/should-we-care-if-a-prospective-hire-understand-big-o-notation/870903#870903 0 Answer by X-Istence for Should we care if a prospective hire understand Big O notation? X-Istence 2009-05-15T21:13:52Z 2009-05-15T21:13:52Z <p>One more semester to go and I will be graduating with a degree in Software Engineering: Computer Programming, and Big O was required in the Data Structures classes. Those classes were only required for programmers though, not for web programming or web development, as such I am not surprised that people coming out of school with a "CS" degree for web development have not learned about Big O notation.</p> http://stackoverflow.com/questions/846659/how-can-i-put-a-database-under-git-version-control/846665#846665 10 Answer by X-Istence for How can I put a database under git (version control)? X-Istence 2009-05-11T03:52:49Z 2009-05-11T03:52:49Z <p>Take a database dump, and version control that instead. This way it is a flat text file.</p> <p>Personally I suggest that you keep both a data dump, and a schema dump. This way using diff it becomes fairly easy to see what changed in the schema from revision to revision.</p> <p>If you are making big changes, you should have a secondary database that you make the new schema changes to and not touch the old one since as you said you are making a branch.</p> http://stackoverflow.com/questions/846364/popular-open-source-projects-using-zend-framework/846370#846370 3 Answer by X-Istence for Popular open source projects using Zend Framework X-Istence 2009-05-11T00:33:41Z 2009-05-11T00:33:41Z <p>What I have personally found is that the Zend Framework is primarily being used to build internal websites, much like CakePHP and Symfony. They are the open source project, and they are then being used to build great apps.</p> <p>Not everyone wants to let people know what backend they are using, or what they are using it for. Zend Framework, and other frameworks stay in the background and help the developer of the website build a great application. </p> http://stackoverflow.com/questions/830921/css-styling-forms-ie-6-7-bug 0 CSS Styling Forms -- IE 6/7 bug X-Istence 2009-05-06T18:10:31Z 2009-05-06T18:58:25Z <p>I am developing a website using forms and one of the browsers being targeted is unfortunately IE 6 and 7. I am having an issue with CSS and IE's rendering of form elements that are styled.</p> <p>I have written a test case, and it is as such (also available online at <a href="http://xistence.osnn.net/testcases/ie67fieldset/" rel="nofollow">http://xistence.osnn.net/testcases/ie67fieldset/</a>):</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt; &lt;head&gt; &lt;title&gt;IE [6|7] Wha?&lt;/title&gt; &lt;style type="text/css"&gt; html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; } /* remember to define focus styles! */ :focus { outline: 0; } body { line-height: 1; color: black; background: white; } #req fieldset { border: 0; border-top: 1px solid #000; padding: 0em 1em 0em 1em; } #req legend + label { margin-top: 0.5em; } #req legend { font-size: 1.2em; } #req label { display: block; background: none; } #req input, #req textarea { position: relative; display: block; left: 200px; top: -1em; margin-bottom: -0.3em; } #req input[type="text"], #req textarea { width: 300px; } #req textarea { height: 3.6em; } #req input[type="text"], #req textarea { border: 1px solid #0a0; } #req label.required + input[type="text"], #req label.required + textarea { border: 1px solid #a00; } #req input[type="submit"] { position: relative; top: 0; margin: 0; left: 200px; margin-top: 0.5em; } #req input[type="hidden"] { display: none; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="req"&gt; &lt;fieldset&gt; &lt;legend&gt;Contact Information&lt;/legend&gt; &lt;label for="name" class="required"&gt;Name: &lt;/label&gt; &lt;input type="text" id="name" name="name"&gt;&lt;/input&gt; &lt;label for="phone" class="required"&gt;Phone Number: &lt;/label&gt; &lt;input type="text" id="phone" name="phone"&gt;&lt;/input&gt; &lt;label for="email"&gt;Email: &lt;/label&gt; &lt;input type="text" id="email" name="email"&gt;&lt;/input&gt; &lt;/fieldset&gt; &lt;fieldset&gt; &lt;legend&gt;Personal Info&lt;/legend&gt; &lt;label for="sports"&gt;Sports:&lt;/label&gt; &lt;input type="text" id="sports" name="sports"&gt;&lt;/input&gt; &lt;label for="spentonline"&gt;Hours spent online: &lt;/label&gt; &lt;input type="text" id="spentonline" name="spentonline"&gt;&lt;/input&gt; &lt;label for="moreinfo"&gt;Tell us about yourself: &lt;/label&gt; &lt;textarea id="moreinfo" name="moreinfo"&gt;&lt;/textarea&gt; &lt;/fieldset&gt; &lt;fieldset&gt; &lt;input type="submit" value="Submit" /&gt; &lt;/fieldset&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I have also taken two screen shots, one of IE 7 and one of IE 8, IE 7 and IE 6 agree on this styling so I have not bothered to take a screen shot of IE 6.</p> <p>IE [6|7]: <a href="http://xistence.osnn.net/testcases/ie67fieldset/ie67what.png" rel="nofollow">http://xistence.osnn.net/testcases/ie67fieldset/ie67what.png</a><br /> IE 8: <a href="http://xistence.osnn.net/testcases/ie67fieldset/ie8-correct.png" rel="nofollow">http://xistence.osnn.net/testcases/ie67fieldset/ie8-correct.png</a></p> <p>Has anyone seen this bug before? Where did I go wrong? What do I have to remove to make it work in IE 6/7 without having extra lines going through my input boxes. The extra lines are removed when the border-top is gone on the fieldset, but that is not a solution since doing so removes the whole visual separation.</p> <p><hr /></p> <p>It is fixed. the margin-bottom on the textarea and input[type="text"] was causing IE 6/7 to have a rendering bug. Removed those and all is well. I guess I can deal with the extra space between the elements on the page!</p> http://stackoverflow.com/questions/831081/detect-ffmpeg/831086#831086 1 Answer by X-Istence for Detect FFMPEG? X-Istence 2009-05-06T18:44:47Z 2009-05-06T18:44:47Z <p>You answered your own question, you can run the command and if it comes back negative you know it is not installed, or you can check the default paths the user has set for possible ffmpeg binaries.</p> http://stackoverflow.com/questions/830940/ie8-issue-div-breaks-line-even-though-its-floated/831074#831074 2 Answer by X-Istence for IE8 issue: div breaks line even though its floated X-Istence 2009-05-06T18:40:24Z 2009-05-06T18:40:24Z <p>Add float: left to the right_div as well.</p> <p>If it is anything similar to the examples shown by <a href="http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm" rel="nofollow">Matthew James Taylor</a> and his <a href="http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm" rel="nofollow">Perfect 2 Column Left Menu</a> take a look at how he is doing it and maybe copy it!</p> <p><hr /></p> <p>IE has in the past also had the issue that it took height and width to mean height-min and width-min, thus still allowing boxes to resize eventhough they had specific limits set. See <a href="http://www.webcredible.co.uk/user-friendly-resources/css/internet-explorer.shtml" rel="nofollow">Webcredible's article</a>, most notably number 2 on their list!</p> http://stackoverflow.com/questions/646272/style-form-elements-in-zend-framework-with-a-default-style/830896#830896 0 Answer by X-Istence for Style form elements in Zend Framework with a default style X-Istence 2009-05-06T18:01:56Z 2009-05-06T18:01:56Z <p>Instead of setting classes on each different type of object use CSS to style the elements:</p> <pre><code>input[type="submit"] { /* Here goes the stuff that you put in your submit class */ } input[type="text"] { /* here goes the stuff you put in your textinput class */ } textarea { /* here goes the stuff for a text area */ } </code></pre> <p>This will do what you want it to do and you don't have to sub-class the Zend Framework default helpers. Also, it will output less HTML so your pages will be smaller and the CSS can be re-used for each and every input element on the page.</p> http://stackoverflow.com/questions/828453/html-site-development-divs-vs-uls-for-navigation-and-menus/828485#828485 4 Answer by X-Istence for HTML site development: div's vs ul's for navigation and menus X-Istence 2009-05-06T07:49:26Z 2009-05-06T07:49:26Z <p>I personally use ul/li for all of my menu needs as it makes it clear to even an unstyled browser (Links for example) that it is a menu of some sort and that they are various links that lead to different parts on a website.</p> <p>Not only that, but the markup is remarkably easy and allows for very interesting things to be done using ul, li, and a to make awesome menu's with CSS with various options, CSS sprite backgrounds.</p> <p>Using divs makes this possible as well, but makes the intent less clear. With a browser that does proper CSS layout you won't notice a difference and the only one that will know is you and the user that does a view-source.</p> <p>It may make a difference if you need to parse the dom using javascript, it may not...</p> http://stackoverflow.com/questions/826798/internet-explorer-ignores-really-small-heights-set-in-css/826842#826842 0 Answer by X-Istence for Internet Explorer ignores really small heights set in CSS X-Istence 2009-05-05T20:44:37Z 2009-05-05T20:44:37Z <p>Depending on the version of Internet Explorer, it will use height as if it is min-height and grow the box however big it feels like growing the box.</p> http://stackoverflow.com/questions/1811640/imagemagick-convert-pdf-to-png/1811645#1811645 Comment by X-Istence on Imagemagick convert pdf to png X-Istence 2009-11-28T16:33:48Z 2009-11-28T16:33:48Z So try /usr/local/bin/convert instead of the above command and see if that works. http://stackoverflow.com/questions/1811640/imagemagick-convert-pdf-to-png/1811645#1811645 Comment by X-Istence on Imagemagick convert pdf to png X-Istence 2009-11-28T16:33:11Z 2009-11-28T16:33:11Z Do note that on their Wiki they state a different path for ImageMagick: <a href="http://wiki.lunarpages.com/Special_Server_Paths" rel="nofollow">wiki.lunarpages.com/Special_Server_Paths</a> http://stackoverflow.com/questions/1811640/imagemagick-convert-pdf-to-png/1811645#1811645 Comment by X-Istence on Imagemagick convert pdf to png X-Istence 2009-11-28T16:27:25Z 2009-11-28T16:27:25Z When you run exec() it will run in whatever the current working directory is. In this case in gallery. Exec should be giving you back any errors, so instead of doing an if() statement with just yes and no, echo exec(...) instead so you get to see the error. http://stackoverflow.com/questions/1804387/why-is-there-a-for-preamble-in-facebooks-json-responses/1804400#1804400 Comment by X-Istence on Why is there a for(;;); preamble in facebooks JSON responses? X-Istence 2009-11-26T15:58:15Z 2009-11-26T15:58:15Z Nope, since you can't use XMLHttprequest or any of those functions since you are not getting the content from the same domain. Since it is not in the same domain you have to use a script node to get the content loaded into the current page, which will immediately cause the JavaScript engine to go into an infinite loop. http://stackoverflow.com/questions/1804338/list-doesnt-display-inline-ie Comment by X-Istence on list doesnt display inline IE? X-Istence 2009-11-26T15:36:16Z 2009-11-26T15:36:16Z Made it even easier to read ... http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/958411#958411 Comment by X-Istence on What is your best programmer joke? X-Istence 2009-10-19T18:12:20Z 2009-10-19T18:12:20Z @Daniel: You can't declare count inside the for loop until C99. test.c: In function ‘main’: test.c:4: error: ‘for’ loop initial declaration used outside C99 mode http://stackoverflow.com/questions/1458694/how-do-i-check-if-the-same-tag-was-already-in-database-with-php-and-mysql Comment by X-Istence on How do I check if the same tag was already in database with PHP and Mysql? X-Istence 2009-09-22T07:59:06Z 2009-09-22T07:59:06Z What error are you getting? What does your table look like? What else have you tried? http://stackoverflow.com/questions/1452545/shifting-a-circular-array Comment by X-Istence on Shifting A Circular Array X-Istence 2009-09-21T01:56:52Z 2009-09-21T01:56:52Z Why do you have to shift the circular array? Since it is circular the position the items are in don't matter! http://stackoverflow.com/questions/692208/how-to-run-a-php-script-in-cron/692243#692243 Comment by X-Istence on How to run a php script in cron X-Istence 2009-09-17T19:38:34Z 2009-09-17T19:38:34Z @cemkalyoncu: Some systems ship a seperate php-cli that contains extra stuff like readline, and others. Can come in handy on the command line. http://stackoverflow.com/questions/1371460/state-machines-tutorials/1371512#1371512 Comment by X-Istence on state machines tutorials X-Istence 2009-09-03T20:38:16Z 2009-09-03T20:38:16Z @Chris: We had a budget of $2000 to work with, and we have so far successfully launched two balloons. The most expensive part was the helium to fill the latex balloons which were the second most expensive part. http://stackoverflow.com/questions/1371460/state-machines-tutorials/1371512#1371512 Comment by X-Istence on state machines tutorials X-Istence 2009-09-03T05:32:29Z 2009-09-03T05:32:29Z @Chris: Near Space is defined as anything above 60,000 ft, our balloon got to 92,999 ft. At some point the latex balloon starts to become so large because of the decompression (the gas keeps expanding the balloon) that the balloon pops, at which point the near space craft free-falls back to earth (we attach a parachute off course), see the linked Wiki for more information about our Near Space efforts and Google around, it is an absolutely awesome hobby! http://stackoverflow.com/questions/1371517/disable-grey-border-on-anchor-a-elements-on-focus Comment by X-Istence on Disable grey border on anchor (<a>) elements on focus... X-Istence 2009-09-03T05:11:54Z 2009-09-03T05:11:54Z Do you have an example of what is happening? http://stackoverflow.com/questions/1371460/state-machines-tutorials/1371484#1371484 Comment by X-Istence on state machines tutorials X-Istence 2009-09-03T05:08:01Z 2009-09-03T05:08:01Z This is oversimplifying state machines, and not that great of an example. http://stackoverflow.com/questions/1371474/what-is-an-algorithm-to-diff-the-two-strings-in-the-same-way-that-so-does-on-the Comment by X-Istence on What is an Algorithm to Diff the Two Strings in the Same Way that SO Does on the Version Page? X-Istence 2009-09-03T04:56:48Z 2009-09-03T04:56:48Z I don't know whether this should belong on meta or not, since it is both. http://stackoverflow.com/questions/1354691/php-get-and-post-in-functions Comment by X-Istence on PHP: $_GET and $_POST in functions? X-Istence 2009-08-30T19:25:44Z 2009-08-30T19:25:44Z What is your real question? The only sentence (although flawed) with a question mark at the end does not make any sense. $_GET and $_POST are global, they can be used anywhere. Is it good coding practice, maybe, maybe not.