User stalepretzel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:19:17Z http://stackoverflow.com/feeds/user/1615 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/396789/is-web-browser-discrimination-okay 9 Is Web Browser "Discrimination" Okay? stalepretzel 2008-12-28T22:39:04Z 2009-12-18T05:46:53Z <p>Is it acceptable to add "special," but unnecessary, content based on a user's web browser? For example, is it okay to display this: </p> <p><img src="http://farm4.static.flickr.com/3207/3145519128%5Faf9b4ed2f7.jpg" alt="******.com works better with modern browsers like Firefox"> </p> <p>at the top of my webpage for all IE users?</p> http://stackoverflow.com/questions/386914/how-would-i-implement-a-simple-site-search-with-php-and-mysql 6 How would I implement a simple site search with php and mySQL? stalepretzel 2008-12-22T18:05:53Z 2009-12-07T15:34:28Z <p>I'm creating a site that allows users to submit quotes. How would I go about creating a (relatively simple?) search that returns the most relevant quotes?</p> <p>For example, if the search term was "turkey" then I'd return quotes where the word "turkey" appears twice before quotes where it only appears once.</p> <p>(I would add a few other rules to help filter out irrelevant results, but my main concern is that.) </p> http://stackoverflow.com/questions/501079/how-do-i-make-an-os-x-application-react-when-a-file-picture-etc-is-dropped-on-i 4 How do I make an OS X application react when a file, picture, etc is dropped on its dock icon? stalepretzel 2009-02-01T16:16:09Z 2009-11-18T06:50:52Z <p>Some applications, like Photoshop, allow users to drag a picture from a web browser, or drag a file from the filesystem, onto the application's icon in the dock. Doing this opens the file in that application.</p> <p>How is this done? I'd like to use Cocoa and Objective-C, but I'm interested in any solutions in any languages. </p> http://stackoverflow.com/questions/13678/textual-versus-graphical-programming-languages 15 Textual versus Graphical Programming Languages stalepretzel 2008-08-17T15:39:57Z 2009-10-18T06:26:57Z <p>I am part of a high school robotics team, and there is some debate about which language to use to program our robot. We are choosing between C (or maybe C++) and LabVIEW. There are pros for each language.</p> <p>C(++):</p> <ul> <li>Widely used</li> <li>Good preparation for the future (most programming positions require text-based programmers.)</li> <li>We can expand upon our C codebase from last year</li> <li>Allows us to better understand what our robot is doing.</li> </ul> <p>LabVIEW</p> <ul> <li>Easier to visualize program flow (blocks and wires, instead of lines of code)</li> <li>Easier to teach (Supposedly...)</li> <li>"The future of programming is graphical." (Think so?)</li> <li>Closer to the Robolab background that some new members may have.</li> <li>Don't need to intimately know what's going on. Simply tell the module to find the red ball, don't need to know how.</li> </ul> <p>This is a very difficult decision for us, and we've been debating for a while. Based on those pros for each language, and on the experience you've got, <strong>what do you think the better option is?</strong> Keep in mind that we aren't necessarily going for pure efficiency. We also hope to prepare our programmers for a future in programming.</p> <p>Also:</p> <ul> <li><strong>Do you think that graphical languages such as LabVEIW are the future of programming?</strong></li> <li><strong>Is a graphical language easier to learn than a textual language?</strong> I think that they should be about equally challenging to learn.</li> <li>Seeing as we are partailly rooted in helping people learn, <strong>how much should we rely on prewritten modules, and how much should we try to write on our own?</strong> ("Good programmers write good code, great programmers copy great code." But isn't it worth being a good programmer, first?)</li> </ul> <p>Thanks for the advice!</p> <p><hr /></p> <p>Edit: I'd like to emphasize this question more: The team captain thinks that LabVIEW is better for its ease of learning and teaching. <strong>Is that true?</strong> I think that C could be taught just as easily, and beginner-level tasks would still be around with C. I'd really like to hear your opinions. <strong>Is there any reason that typing while{} should be any more difficult than creating a "while box?"</strong> <strong>Isn't it just as intuitive that program flows line by line, only modified by ifs and loops, as it is intuitive that the program flows through the wire, only modified by ifs and loops!?</strong></p> <p>Thanks again!</p> <p><hr /></p> <p>Edit: I just realized that this falls under the topic of "language debate." I hope it's okay, because it's about what's best for a specific branch of programming, with certain goals. If it's not... I'm sorry...</p> http://stackoverflow.com/questions/403754/how-are-operating-systems-made 22 How are Operating Systems "Made"? stalepretzel 2008-12-31T18:43:42Z 2009-10-08T15:02:11Z <p>Creating an OS seems like a <strong>massive</strong> project. How would anyone even get started?</p> <p><strong>For example, when I pop Ubuntu into my drive, how can my computer just <em>run</em> it?</strong> (This, I guess, is what I'd really like to know.)</p> <p>Or, looking at it from another angle, what is the least amount of bytes that could be on a disk and still be "run" as an OS?</p> <p>(I'm sorry if this is vague. I just have <em>no idea</em> about this subject, so I can't be very specific. I pretend to know a fair amount about how computers work, but I'm utterly clueless about this subject.)</p> http://stackoverflow.com/questions/1355524/which-syntax-and-architecture-of-assembly-is-most-useful-to-know 7 Which syntax and architecture of assembly is most useful to know? stalepretzel 2009-08-31T02:12:50Z 2009-08-31T20:00:34Z <p>I've always wanted to learn assembly, but there seems to be a jungle of assembly-related information out there that is difficult to interpret. I haven't just been able to google "learn assembly" and get going.</p> <p>First, there are two types of syntax: Intel and AT&amp;T. What's the difference? Why are there still two in use? When would I need to use one versus the other?</p> <p>Second, there's a multitude of chips out there. Intel vs AMD, 32-bit versus 64-bit, x86 vs other architectures... even x86 is really a whole <em>family</em> of chips. So, how can I know whether the assembly I'm learning from a certain web page will work for my machine?</p> <p>There exist even more variations (operating system even plays a role in determining how code will run.</p> <p><strong>So, the big question is, with all these variables, how can I know what type I should learn? What's most common? How is it possible for people to "know assembly" when there are all of these variations?</strong></p> http://stackoverflow.com/questions/1352244/how-do-i-perform-an-additional-action-only-on-the-first-iteration-of-a-loop 1 How do I perform an additional action only on the first iteration of a loop? stalepretzel 2009-08-29T20:03:57Z 2009-08-30T06:35:17Z <p>I know how to do this... I'll give example code below. But I can't shake the feeling that there's a clever way to accomplish what I want to do without using a variable like <code>$isfirstloop</code>.</p> <pre><code>$isfirstloop = true; foreach($arrayname as $value) { if ($isfirstloop) { dosomethingspecial(); $isfirstloop = false; } dosomething(); } </code></pre> <p>Is there any way to execute <code>dosomethingspecial()</code> only on the first loop, while executing <code>dosomething()</code> on every loop, without introducing a variable like <code>$isfirstloop</code>?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1352598/how-can-i-tell-what-line-a-file-resource-is-currently-on-in-php 0 How can I tell what line a file resource is currently "on" in PHP? stalepretzel 2009-08-29T23:00:45Z 2009-08-30T01:31:33Z <p>Using PHP, it's possible to read off the contents of a file using <code>fopen</code> and <code>fgets</code>. Each time <code>fgets</code> is called, it returns the next line in the file.</p> <p>How does <code>fgets</code> <em>know</em> what line to read? In other words, how does it know that it last read line 5, so it should return the contents of line 6 this time? Is there a way for me to access that line-number data?</p> <p>(I know it's possible to do something similar by reading the entire contents of the file into an array with <code>file</code>, but I'd like to accomplish this with <code>fopen</code>.)</p> http://stackoverflow.com/questions/1175347/how-can-i-select-and-upload-multiple-files-with-html-and-php-using-http-post 1 How can I select and upload multiple files with HTML and PHP, using HTTP POST? stalepretzel 2009-07-24T01:13:35Z 2009-08-20T11:57:04Z <p>I have experience doing this with single file uploads using <code>&lt;input type="file"&gt;</code>. However, I am having trouble doing uploading more than one at a time.</p> <p>For example, I'd like to be able to select a series of images, then upload them to the server, all at once.</p> <p><em>It would be great to use a single file input control, if possible.</em></p> <p>Does anyone know how to accomplish this? Thanks!</p> http://stackoverflow.com/questions/132930/32-vs-64-bits-whats-the-big-deal 33 32 vs 64 bits... what's the big deal? stalepretzel 2008-09-25T12:14:00Z 2009-08-05T06:52:42Z <p>Why is it considered to be such a big deal to have a 64-bit computer? Why does it "change everything?" Why do applications need to be designed differently between 32- and 64-bit platforms?</p> <p>And, on OS X, how do you find which one you have!?</p> http://stackoverflow.com/questions/1219627/how-can-i-read-write-from-to-a-file-byte-by-byte-with-php5 1 How can I read/write from/to a file, byte by byte, with PHP5? stalepretzel 2009-08-02T19:33:13Z 2009-08-02T19:50:19Z <p>I've worked with reading and writing text files with PHP. Now, I'd like to read and write binary files. I've not found any useful resources/tutorials for doing this with PHP5. Is it possible? How?</p> <p>Specifically, I'll be searching for specific 2-byte patterns.</p> <p>If it matters, I'm on a Mac (OS X 10.4 Tiger).</p> http://stackoverflow.com/questions/1175375/how-does-an-os-affect-how-assembly-code-runs 7 How does an OS affect how assembly code runs? stalepretzel 2009-07-24T01:22:51Z 2009-07-26T10:36:50Z <p>I'm hoping to learn assembly language for x86. I'm on a Mac, and I'm assuming most x86 tutorials/books use code that's meant for Windows.</p> <p>How does the OS that code is run on affect what the code does, or determine whether the code even works? Could I follow a Windows-based tutorial, and modify a few commands to make it work for Mac with relative ease? More generally, is there anything tricky that a Mac assembly programmer, specifically, should know? Thanks!</p> http://stackoverflow.com/questions/382309/how-important-are-constraints-like-not-null-and-foreign-key-if-ill-always-contro 7 How important are constraints like NOT NULL and FOREIGN KEY if I'll always control my database input with php? stalepretzel 2008-12-19T21:47:46Z 2009-07-25T10:58:51Z <p>I am trying to create a column in a table that's a FOREIGN KEY, but in MySQL that's more difficult than it should be. It would require me to go back and make certain changes to an already-in-use table. So I wonder, <strong>how necessary is it for MySQL to be sure that a certain value is appropriate? Couldn't I just do that with a language like php, which I'm using to access this database <em>anyway</em>?</strong></p> <p>Similarly with NOT NULL. If I only access this database with php, couldn't I simply have php ensure that no null value is entered?</p> <p><strong>Why should I use MySQL to do enforce these constraints, when I could just do it with PHP?</strong></p> <p><hr /></p> <p>I realize that NOT NULL is a very stupid part to neglect for the above reasons. But MySQL doesn't enforce foreign keys without a serious degree of monkeying around.</p> <p>In your opinion, would it still be bad to use the "fake" foreign keys, and simply check if the values to be entered are matched in other tables, with PHP?</p> http://stackoverflow.com/questions/395739/do-you-name-your-arrays-plurally-or-singularly 3 Do you name your arrays plurally or singularly? stalepretzel 2008-12-28T03:10:44Z 2009-07-17T19:40:48Z <p>When I'm naming array-type variables, I often am confronted with a dilema: Do I name my array plurally or singularly?</p> <p>For example, let's say I have an array of names: In PHP I would say: <code>$names=array("Alice","Bobby","Charles");</code> However, then lets say I want to reference a name in this array. For Bobby, I'd say: <code>$names[1]</code>. However, this seams counterintuitive. I'd rather call Bobby <code>$name[1]</code>, because Bobby is only one name.</p> <p>So, you can see a slight discrepancy. Are there conventions for naming arrays?</p> http://stackoverflow.com/questions/137523/where-can-i-find-tools-for-learning-assembler-on-os-x 4 Where can I find tools for learning assembler on OS X? stalepretzel 2008-09-26T03:03:32Z 2009-07-08T16:13:59Z <p>I'd like to learn assembler. However, there are very few resources for doing assembler with OS X.</p> <p>Is there anyone out there who has programmed in assembly on a Mac? Where did you learn?</p> <p>And, is there any reason I shouldn't be doing assembly? Do I risk (significantly) crashing my computer irreparably?</p> http://stackoverflow.com/questions/380057/foreign-key-not-working-in-mysql-why-can-i-insert-a-value-thats-not-in-the-for 0 Foreign key not working in MySQL: Why can I INSERT a value that's not in the foreign column? stalepretzel 2008-12-19T03:51:04Z 2009-06-24T14:01:51Z <p>I've created a table in MySQL:</p> <pre><code>CREATE TABLE actions ( A_id int NOT NULL AUTO_INCREMENT, type ENUM('rate','report','submit','edit','delete') NOT NULL, Q_id int NOT NULL, U_id int NOT NULL, date DATE NOT NULL, time TIME NOT NULL, rate tinyint(1), PRIMARY KEY (A_id), CONSTRAINT fk_Question FOREIGN KEY (Q_id) REFERENCES questions(P_id), CONSTRAINT fk_User FOREIGN KEY (U_id) REFERENCES users(P_id)); </code></pre> <p>This created the table I wanted just fine (although a "DESCRIBE actions;" command showed me that the foreign keys were keys of type MUL, and I'm not sure what this means). However, when I try to enter a Q_id or a U_id that does not exist in the questions or users tables, <strong>MySQL still allows these values.</strong></p> <p><strong>What did I do wrong? How can I prevent a table with a foreign key from accepting invalid data?</strong></p> <p><hr /></p> <p>If I add TYPE=InnoDB to the end, I get an error:</p> <p>ERROR 1005 (HY000): Can't create table './quotes/actions.frm' (errno: 150)</p> <p>Why might that happen?</p> <p><hr /></p> <p>I'm told that it's important to enforce data integrity with functional foreign keys, but also that InnoDB should not be used with MySQL. What do you recommend?</p> http://stackoverflow.com/questions/132955/how-do-i-set-a-task-to-run-every-so-often 3 How do I set a task to run every so often? stalepretzel 2008-09-25T12:20:01Z 2009-05-12T20:39:46Z <p>How do I have a script run every, say 30 minutes? I assume there are different ways for different OSs. I'm using OS X.</p> http://stackoverflow.com/questions/804761/whats-wrong-with-this-mysql-installation-after-a-messy-uninstallation 0 What's wrong with this MySQL installation (after a messy uninstallation)? [closed] stalepretzel 2009-04-29T23:29:19Z 2009-04-30T00:35:12Z <p>I've gotten myself into some big problems installing MySQL on my Mac OS X 10.4. I had a server up and running before, but I essentially deleted (to the trash bin) all of the MySQL files from my computer in order to re-install (don't ask!). I'm trying to install MySQL 5.1.33 now, and things aren't going well. I've been messing around with some files and folder permissions trying to fix things, and now I'm utterly lost. </p> <p>I compiled from source, and everything is in /usr/local/mysql. I edited my.cnf to look like this: </p> <pre><code>[mysqld] socket=/Private/tmp/mysql.sock [client] socket=/Private/tmp/mysql.sock user = mysql </code></pre> <p>Now, when I run mysql (when I'm in /usr/local/mysql/bin, I do ./mysql to be sure I'm running the right program), it tells me that it can't connect to mysql through /Private/tmp/mysql.sock. I've looked at that location, and the file indeed isn't there. When I run ./mysqld, it tells me that it cannot bind to port 3306, because it's already in use.</p> <p>So, it seems I've still got something of that old server left. I run "mysqladmin shutdown" (ver batim, not the one from this new installation), and it tells me it cannot connect through /Private/tmp/mysql.sock! Furthermore, I can't run "mysqld" on the command line, because the command is not found. </p> <p>It is probably apparent that I'm confused beyond confusion. Can anybody help me get my new system up and running? </p> http://stackoverflow.com/questions/124549/dll-information 3 DLL information stalepretzel 2008-09-23T23:33:39Z 2009-04-12T00:30:08Z <p>How exactly do dlls work? There seems to be an awful lot of them, but I don't know what they are or how they work.</p> <p>So, what's the deal with them?</p> http://stackoverflow.com/questions/598841/how-to-get-started-building-a-web-browser/599318#599318 1 Answer by stalepretzel for How to get started building a web browser? stalepretzel 2009-03-01T05:40:20Z 2009-03-01T05:40:20Z <p>As everyone else has already said, a web browser is a huge project. You've got to worry about tcp/ip&amp;sockets, rendering html, using css, creating a DOM model, executing javascript, dealing with malformed markup and code, and handling all types of files before you can even think about all the things people expect from a browser (ie bookmarks, history, private browsing, security, etc.) It's a huge project.</p> <p>That being said, it can be done. My suggestion would be to go look at the source of Firefox. I know that you said you want to build a browser from scratch, but it would be very helpful to <em>learn</em> from an open-source project, first.</p> <p>I would download the Firefox source, and slowly strip it down. In other words, I would take the source and <em>remove</em> all bookmarking functionality. Then, I'd remove the ability to handle addons. Then, I'd delete all code regarding saving files. I would continue this process until I got a <em>very</em> basic web browser. I'd look over that code.</p> <p>Then, I'd start building my own. I'd take the knowledge I'd gained from taking apart Firefox, and I'd put it into building a new browser.</p> <p>A <em>whole lot of luck</em> to you!</p> http://stackoverflow.com/questions/539138/learning-php-and-web-programming-for-intermediate-programmers/539172#539172 4 Answer by stalepretzel for Learning PHP and web-programming for intermediate programmers stalepretzel 2009-02-11T22:35:20Z 2009-02-11T22:35:20Z <p>Use <a href="http://www.w3schools.com" rel="nofollow">http://www.w3schools.com</a>. They've got a great tutorial for beginning and intermediate php programmers. Also, the <a href="http://www.php.net/docs.php" rel="nofollow">PHP Manual</a> is fantastic.</p> http://stackoverflow.com/questions/196608/harder-better-faster-stronger-techniques-for-an-image-based-captcha 2 Harder, Better, Faster, Stronger... Techniques for an image-based CAPTCHA? stalepretzel 2008-10-13T03:05:32Z 2009-02-09T14:47:21Z <p>There are lots of non-image-based CAPTCHA ideas floating around. But what about the old-fashioned way?</p> <p>What are the elements of a good image CAPTCHA? What visual elements are hard for computers, but easier for humans? What about mistakes, elements that are easier for computers than they are for humans? What are good techniques for increasing the <em>speed</em> of a CAPTCHA generator?</p> <p>Here's an example of a CAPCHA I've been working on. It generates the functions for two sine waves, then stretches a text between them. It lays that over a background drawn from a pool of images. <img src="http://farm4.static.flickr.com/3178/2936174357_fc9e92b881_m.jpg?iwonderwhollnoticethis" alt="Image-based CAPTCHA" /></p> <p>How could this be improved? (Specifically, I'm using PHP GD.) Things that come to mind are:</p> <ul> <li>Change the color of the text, possibly making it multicolored.</li> <li>Add "scratches" or marks that mildly obscure the text.</li> <li>Add to the distortion so that it's affected by sine waves horizontally as well. </li> </ul> <p><strong>What goes into a superb image CAPTCHA?</strong></p> <p><hr /></p> <p>Edit: I know that there are some very worthy third-party CAPTCHA resources. I'm looking for attributes that <em>make</em> them good. I'd like to use my own CAPTCHAs, just for the purpose of self-improvement. So, you can talk about reCAPTCHA, but it's not exactly what I'm looking for.</p> <p>Also, it has been brought up that not only the image, but also the <em>experience</em> matters, so feel free to comment on that.</p> http://stackoverflow.com/questions/394113/ensuring-mysql-connection-works-in-php-function 3 Ensuring MySQL connection works in PHP function stalepretzel 2008-12-26T18:35:58Z 2009-02-03T13:17:15Z <p>I have code with the following form:</p> <pre><code>&lt;?php function doSomething{ //Do stuff with MySQL $con-&gt;tralalala(); } $con = connectToDatabase;//This would actually be a line or two. doSomething(); ?&gt; </code></pre> <p>This (type of) code doesn't work, because doSomething() doesn't have a connection to the database. Can anyone explain why not? I create the $con connection <em>before</em> I call doSomething(). So why does the function act as if there's no connection?</p> <p>Is there any way to fix this, short of passing the connection into the function like doSomething($con)?</p> http://stackoverflow.com/questions/482008/how-to-use-an-aliased-column-in-a-mysql-where-clause 0 How to use an aliased column in a MySQL WHERE clause? stalepretzel 2009-01-27T01:08:37Z 2009-01-27T01:23:05Z <p>I have a MySQL query like this:</p> <pre><code>SELECT *, SUM(...some SQL removed for brevety) AS Occurrences FROM some_table AS q WHERE criterion="value" GROUP BY q.P_id ORDER BY Occurrences DESC LIMIT 10; </code></pre> <p>I want to restrict the results to rows where Occurrences>0. This seems very simple to me, but I can't seem to make it work. No matter what I try, WHEREs or HAVINGs, whenever I try to add this restriction I get NO ROWS in return. I'm positive that there is data in my table that should be returned. Does anyone know how to accomplish what I'm doing?</p> <p><hr /></p> <p>I've tried this, but it still doesn't work. Any ideas why it still won't work?</p> <pre><code>SELECT *, SUM(...some SQL removed for brevety) AS Occurrences FROM some_table AS q WHERE criterion="value" HAVING SUM(...some SQL removed for brevety)&gt;0 GROUP BY q.P_id ORDER BY Occurrences DESC LIMIT 10; </code></pre> http://stackoverflow.com/questions/482008/how-to-use-an-aliased-column-in-a-mysql-where-clause/482032#482032 1 Answer by stalepretzel for How to use an aliased column in a MySQL WHERE clause? stalepretzel 2009-01-27T01:19:37Z 2009-01-27T01:19:37Z <p>Ah, I've found the place for it.</p> <p>The statement is now:</p> <pre><code>SELECT *, SUM(...some SQL removed for brevety) AS Occurrences FROM some_table AS q WHERE criterion="value" GROUP BY q.P_id HAVING SUM(...some SQL removed for brevety)&gt;0 ORDER BY Occurrences DESC LIMIT 10; </code></pre> <p>It seems to be working fine with ORDER BY Occurrences,</p> http://stackoverflow.com/questions/474095/why-does-this-jquery-work-differently-after-i-move-to-a-different-page-then-hit-t 3 Why does this jQuery work differently after I move to a different page then hit the back button? stalepretzel 2009-01-23T19:13:10Z 2009-01-23T20:06:22Z <p>I'm making a simple navigation menu for a site. You create an <code>ul</code> with id <code>menu</code>, and should be pretty simple from there. I have some simple css to give all the <code>li</code>s the correct background image, then some jQuery to change the look of an <code>li</code> when the user mouses over. It works pretty well, but there's one problem. When the user clicks on a link <em>directly</em>, rather than clicking in the box around it, and then uses the browser's back button, things go wrong. When the user hovers over <em>this</em> time, the entire li goes completely blank, but it's fine once the user mouses away. Does anyone know what may cause this strange behavior? (Note, every once in a while, mousing over causes a <code>li</code> to flicker, especially if it's one of the bottom two <code>li</code>s. I thought this was normal, but maybe it could be helpful in diagnosing the problem.)</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Menu Test&lt;/title&gt; &lt;style type="text/css"&gt; ul#menu{width: 185px; margin: auto; text-align: center; color: #fff; list-style-type: none;} ul,li,h2{padding: 5px 0 0 0; margin: 0;} li h2{height: 49px; background: url('top.png'); vertical-align: middle;} li.link{height: 30px; background: url('link.png');} li.link a{color: white; text-decoration: none;} li.bottom{height: 25px; background: url('bottom.png');} &lt;/style&gt; &lt;script src="jquery.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ $(".link").mouseover(function(){ //highlight on mouseover $(this).css({background: "url('file:///Users/J/Desktop/DHTML/Menu/linkselect.png')"}); }) $(".link").mouseout(function(){ //un-highlight on mouseout $(this).css({background: "url('./link.png')"}); }) $(".link").click(function(){ //go to site on click, even if click isn't on link window.location = $(this).find("a").attr("href"); }) }) &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;ul id="menu"&gt; &lt;li&gt;&lt;h2&gt;Menu&lt;/h2&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://google.com/"&gt;Google&lt;/a&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://norwegianrecycling.multiply.com/"&gt;Norwegian Recycling&lt;/a&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://www.jquery.com/"&gt;jQuery&lt;/a&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://www.apple.com/"&gt;Apple&lt;/a&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://www.ubuntu.com"&gt;Ubuntu&lt;/a&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://www.firefox.com/"&gt;Firefox&lt;/a&gt;&lt;/li&gt; &lt;li class="link"&gt;&lt;a href="http://www.youtube.com/"&gt;YouTube&lt;/a&gt;&lt;/li&gt; &lt;li class="bottom"&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/458556/php-sessions-with-html/458587#458587 1 Answer by stalepretzel for PHP sessions with HTML stalepretzel 2009-01-19T18:16:07Z 2009-01-19T18:16:07Z <p>You can't put php into .html files without playing around with your server's configuration files. You should only put php into .php files.</p> <p>If you have a lot of .html files, you can simply rename them to .php files. It's okay to put pure html into <code>something.php</code>. So, you should make sure that all of your files end with .php, and then you can put any session logic you want into them.</p> http://stackoverflow.com/questions/456302/how-to-determine-if-two-web-pages-are-the-same/457886#457886 0 Answer by stalepretzel for How to determine if two web pages are the same? stalepretzel 2009-01-19T15:07:35Z 2009-01-19T15:07:35Z <p>You could try to use HTTP headers like If-Modified-Since, or some other cache-related headers. Also, it may be helpful to look at a site-map file to see how often search engines are expected to check back.</p> <p>My other attempt (maybe to be used in conjunction) would be to make a list of all <code>id</code>s and <code>class</code>es found in <code>div</code>s on the page. If these lists don't match up, it's likely that there's been a reasonably noticeable change. Otherwise, they're probably very similar.</p> <p>EDIT: You might also compare the <code>src</code>s of <code>img</code> elements.</p> http://stackoverflow.com/questions/457797/best-way-to-recognize-a-filetype-in-php/457861#457861 1 Answer by stalepretzel for Best way to recognize a filetype in php stalepretzel 2009-01-19T15:00:28Z 2009-01-19T15:00:28Z <p>Look at "magic numbers." The first few bytes of files usually identify what type of file it is. For example, the firts few bytes of a GIF are either 47 49 46 38 37 61 or 47 49 46 38 39 61, ASCII for GIF89a or GIF87a. There are many other "magic numbers." See <a href="http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files" rel="nofollow">http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files</a></p> <p>EDIT: I believe this is more reliable than MIME functions on PHP.</p> http://stackoverflow.com/questions/438886/is-there-a-way-to-password-protect-html-pages-without-using-a-server-side-languag/438922#438922 0 Answer by stalepretzel for Is there a way to password protect HTML pages without using a server side language? stalepretzel 2009-01-13T13:23:02Z 2009-01-13T13:23:02Z <p>If there was one and only one password for EVERYbody, you could try a public key-type approach. You could provide a simple script for performing RSA decryption (you'd need to do the original encryption somewhere where you have access to some type of programming software). Then, you could supply the content as an encrypted string. You'd display a password box, the user would type the password,then the string would be decrypted according to the password. If the password is correct, the string will decrypt correctly, and the page will show. Otherwise, the page will look like a bunch of garbage. Be careful, though, because this client-side method would be very vulnerable to brute-force.</p> http://stackoverflow.com/questions/1352598/how-can-i-tell-what-line-a-file-resource-is-currently-on-in-php Comment by stalepretzel on How can I tell what line a file resource is currently "on" in PHP? stalepretzel 2009-08-30T02:59:31Z 2009-08-30T02:59:31Z Correct, @Crazy Joe Malloy. File() certainly would be easier, though. http://stackoverflow.com/questions/1352598/how-can-i-tell-what-line-a-file-resource-is-currently-on-in-php/1352799#1352799 Comment by stalepretzel on How can I tell what line a file resource is currently "on" in PHP? stalepretzel 2009-08-30T02:58:07Z 2009-08-30T02:58:07Z It works, but I specifically asked for a solution that used fopen(), not file(). :o http://stackoverflow.com/questions/1352587/code-golf-morse-code Comment by stalepretzel on Code Golf: Morse code stalepretzel 2009-08-29T23:07:26Z 2009-08-29T23:07:26Z In my opinion, this isn't a good candidate for code golf. Unless you use some type of external table, this is best accomplished by just &quot;mapping.&quot; In other words, <code>string&#95;replace([A,B,C,D,..., ],[.-,-...,-.-.,-..,...,/])</code> with some negligible code to space the letters out. -1 http://stackoverflow.com/questions/1352244/how-do-i-perform-an-additional-action-only-on-the-first-iteration-of-a-loop/1352254#1352254 Comment by stalepretzel on How do I perform an additional action only on the first iteration of a loop? stalepretzel 2009-08-29T20:57:24Z 2009-08-29T20:57:24Z Exactly what I was looking for. It seems so simple, yet I've never come up with it. Thanks so much! http://stackoverflow.com/questions/137730/how-do-i-upload-a-html-form-with-a-username-password-multiple-file-uploads-and/137758#137758 Comment by stalepretzel on How do I upload a HTML form with a username, password, multiple file uploads and then process it with PHP? stalepretzel 2009-07-24T01:10:40Z 2009-07-24T01:10:40Z It's okay to ask on SO even if Google has results. Most questions here can be answered with a google search and a little knowledge. So what? -1, especially because this is a comment, not an answer. http://stackoverflow.com/questions/818203/does-anyone-know-of-a-good-library-for-mapping-a-persons-name-to-his-or-her-sex/818231#818231 Comment by stalepretzel on Does anyone know of a good library for mapping a person's name to his or her sex? stalepretzel 2009-05-03T23:00:40Z 2009-05-03T23:00:40Z This is great. Seems to be just what the asker needs. Ambiguous names could have the gender &quot;guessed&quot; based on frequency of Male versus frequency of Female. http://stackoverflow.com/questions/804761/whats-wrong-with-this-mysql-installation-after-a-messy-uninstallation/804771#804771 Comment by stalepretzel on What's wrong with this MySQL installation (after a messy uninstallation)? stalepretzel 2009-04-30T00:37:48Z 2009-04-30T00:37:48Z I'd like to put my environment together piece by piece. I've used MAMP before, so I can always go back. However, I'd like to just fix MySQL right now. http://stackoverflow.com/questions/623776/does-php-have-a-function-to-detect-the-os-its-running-on/623789#623789 Comment by stalepretzel on Does PHP have a function to detect the OS it's running on? stalepretzel 2009-03-08T16:24:43Z 2009-03-08T16:24:43Z We're looking for the server, not the browser. http://stackoverflow.com/questions/482008/how-to-use-an-aliased-column-in-a-mysql-where-clause/482026#482026 Comment by stalepretzel on How to use an aliased column in a MySQL WHERE clause? stalepretzel 2009-01-27T01:20:13Z 2009-01-27T01:20:13Z Ah, that works. It's working fine to have the results ordered by the alias, though. http://stackoverflow.com/questions/405320/how-do-i-make-jquery-modify-only-one-div-instead-of-all-divs-of-the-same-class/405330#405330 Comment by stalepretzel on How do I make jQuery modify only one div, instead of all divs of the same class? stalepretzel 2009-01-01T19:19:29Z 2009-01-01T19:19:29Z Beautiful. Very helpful. http://stackoverflow.com/questions/262657/the-coolest-server-names/267452#267452 Comment by stalepretzel on The Coolest Server Names stalepretzel 2008-12-29T05:39:04Z 2008-12-29T05:39:04Z HEADERS! Oh, what? http://stackoverflow.com/questions/262657/the-coolest-server-names/262980#262980 Comment by stalepretzel on The Coolest Server Names stalepretzel 2008-12-29T05:28:13Z 2008-12-29T05:28:13Z BE CAREFUL WITH THOSE NUMBERS! http://stackoverflow.com/questions/396789/is-web-browser-discrimination-okay Comment by stalepretzel on Is Web Browser "Discrimination" Okay? stalepretzel 2008-12-29T00:21:13Z 2008-12-29T00:21:13Z I considered that, but I figured that many SO users deal with Web Development, and this is related to that, so I let 'er loose. http://stackoverflow.com/questions/396789/is-web-browser-discrimination-okay/396885#396885 Comment by stalepretzel on Is Web Browser "Discrimination" Okay? stalepretzel 2008-12-29T00:12:26Z 2008-12-29T00:12:26Z I understand where you're coming from. I would really like to encourage the browser, but I don't want to seem like a snob. Maybe what I'll do is to provide a &quot;hide this alert&quot; link to hide it for the rest of the session. http://stackoverflow.com/questions/396789/is-web-browser-discrimination-okay/396795#396795 Comment by stalepretzel on Is Web Browser "Discrimination" Okay? stalepretzel 2008-12-29T00:10:04Z 2008-12-29T00:10:04Z That's what I figure. On the other hand, it's not a professional site, mostly for my friends. I have included a link to the FF website, and I'll probably link to some snippet on my own site as well.