User kavoir.com - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T22:54:28Zhttp://stackoverflow.com/feeds/user/49318http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1378827/why-is-there-a-warning-of-permission-denied-but-successfully-opened-the-file-anyw3Why is there a warning of permission denied but successfully opened the file anyway?kavoir.com2009-09-04T12:02:36Z2009-10-29T16:38:59Z
<p>I tried to open a file with fopen() function in PHP and it output warning of failure to open stream: permission denied. You know that warning / error you encounter when apache doesn't have enough privileges to open a particular file.</p>
<p>However despite the warning message being displayed, my PHP script successfully opened the file and wrote a string into it. It doesn't make sense.</p>
<p>So what is matter? I can put a @ immediately before fopen() but still it's weird and I want to know why PHP behaves this way. Is there something I didn't configure right?</p>
<pre><code>class XMLDB {
private $file = null;
private $xml = null;
private $defs = array();
private $recs = array();
// private members above, public members below
public function __construct($xmlfile) {
if (!file_exists($xmlfile)) {
die('XML file does not exist.');
}
$this -> file = $xmlfile;
$this -> xml = simplexml_load_file($this -> file);
$this -> iniVocab();
$this -> iniData();
}
</code></pre>
<p>... /* lots of private and public functions */</p>
<pre><code> public function commit() {
$xmlfile = fopen($this -> file, 'w'); // this is causing the warning
$doc = new DOMDocument('1.0');
$doc -> preserveWhiteSpace = false;
$doc -> loadXML($this -> xml -> asXML());
$doc -> formatOutput = true;
fwrite($xmlfile, $doc->saveXML());
}
public function __destruct() {
$this -> commit();
/* comment this line out and there won't be any warnings,
/* therefore it should trace back to here. So I found out that
/* it's when I use die() that eventually calls __destruct()
/* which in turn calls commit() to trigger this fopen warning. */
}
}
</code></pre>
<p>EDIT: So every first time I try to write something to the opened file, it's all right. Then if the class tries to commit all changes to the file again when the page is unloaded, that is, the object to be destroyed, it calls the __destruct() method and $this -> commit() to write the changes to the file - this is when the error occurs and it refuses to write to the file and pomping out the permission denied message. It's weird.</p>
http://stackoverflow.com/questions/1530871/a-few-questions-concerning-this-article-about-design-principles1A few questions concerning this article about design principleskavoir.com2009-10-07T10:52:22Z2009-10-07T11:45:19Z
<p>At here:
<a href="http://www.jwz.org/doc/worse-is-better.html" rel="nofollow">http://www.jwz.org/doc/worse-is-better.html</a></p>
<ol>
<li>So according to the worse-is-better philosophy, implementation simplicity is the most important, above all?</li>
<li>Does implementation refer to inner logic or?</li>
<li>What does "especially worthless is consistency of interface" mean? I thought consistency in interface is pretty important.</li>
</ol>
<p>Thank you all for the insightful points!</p>
http://stackoverflow.com/questions/1216175/mysql-count-records-from-one-table-and-then-update-another0MySQL: Count records from one table and then update anotherkavoir.com2009-08-01T08:33:34Z2009-08-01T08:38:35Z
<p>Got 2 tables / entities, very straightforward scenario.</p>
<p>Table <strong>poets</strong> - Columns: id, poet, nation</p>
<p>Table <strong>nations</strong> - Columns: id, nation, count</p>
<p>Basically, <strong>nations</strong> to <strong>poets</strong> has a mapping of one to many, naturally. For example, there are 1000 poets from 60 nations. Each poet in <strong>poets</strong> is assigned to a nation by the nation field which contains the id of one of the nations in <strong>nations</strong>.</p>
<p>The count field of <strong>nations</strong> contains the number of poets in <strong>poets</strong> from this nation.</p>
<p>My question is how to use just one SQL query to count the number of poets by nation in <strong>poets</strong> and then update the corresponding count of that nation?</p>
<p>I tried:</p>
<pre><code>UPDATE poets, nations SET nations.count = COUNT(poets.id) GROUP BY poets.nation HAVING poets.nation = nations.id
</code></pre>
<p>But it gives #1064 error. Also tried to combine WHERE clause somewhere but it still refuses to work.</p>
<p>Any idea?</p>
http://stackoverflow.com/questions/657488/what-happens-if-there-are-too-many-files-under-a-single-directory-in-linux5What happens if there are too many files under a single directory in Linux?kavoir.com2009-03-18T09:13:57Z2009-07-02T07:57:30Z
<p>If there are like 1,000,000 individual files (mostly 100k in size) in a single directory, flatly (no other directories and files in them), is there going to be any compromises in efficiency or disadvantages in any other possible ways?</p>
http://stackoverflow.com/questions/406316/how-to-pass-a-variable-data-from-javascript-to-php-and-vice-versa-2How to pass a variable / data from javascript to php and vice versa?kavoir.com2009-01-02T08:39:08Z2009-05-10T00:19:19Z
<p>It bothers me just now and got it solved. Just want to know how you'd do it.</p>
http://stackoverflow.com/questions/788518/how-to-switch-between-2-css-colors-with-jquery0How to switch between 2 CSS colors with jQuery?kavoir.com2009-04-25T08:19:15Z2009-04-26T02:09:16Z
<p>I want a string of text to change color from default to #c30 when I click a button somewhere on the page, and it changes back to default when I click the button again.</p>
<p>My code looks like this:</p>
<pre><code>$("#button").click(function() {
var anno = $(#text);
if (anno.css('color') == '#c30') {
anno.css('color', '');
} else {
anno.css('color', '#c30');
}
});
</code></pre>
<p>But it doesn't seem to work on FF3. Works in IE though. Any idea?</p>
http://stackoverflow.com/questions/772471/how-to-make-a-chat-room-script-with-php1How to make a chat room script with PHP?kavoir.com2009-04-21T13:01:47Z2009-04-21T17:08:08Z
<p>Several visitors connect to <a href="http://site.com/chat.php" rel="nofollow">http://site.com/chat.php</a></p>
<p>They each can write and send a text message to chat.php and it displays instantly on everyone's browser (<a href="http://site.com/chat.php" rel="nofollow">http://site.com/chat.php</a>)</p>
<p>Do I have to use a database? I mean, is AJAX or PHP buffer capabilities enough for such a chat room on sessions?</p>
<p>How can sessions of different users share data from each other?</p>
<p>Any idea or insights will be appreciated, thanks!</p>
<p>Edit: Thanks for the links. But what I want is the way to push data to a client browser. Is constantly refreshing client browser (AJAX or not) the only way? Also the challenge here is how different users, for example, 2, 1 on 1, share chat texts? How do you store them? And how do you synchronize the texts between the 2 clients? Not using a database preferably.</p>
<p>Edit 2: Actually <a href="http://lumichat.com/yshout5/example/" rel="nofollow">YShout</a> mentioned by Peter D does this job pretty well. It doesn't seem to keep refresh the browser. But I don't understand how it pushes new messages to existing user's window.</p>
http://stackoverflow.com/questions/760333/why-microsoft-suddenly-cancelled-the-research-program-of-intentional-programming1Why Microsoft suddenly cancelled the research program of Intentional Programming? [closed]kavoir.com2009-04-17T13:05:20Z2009-04-17T13:26:10Z
<p>Very fascinating idea it is but why did Microsoft cease the program and Simonyi leave to form his own software plant to further this methodology?</p>
http://stackoverflow.com/questions/751704/javascript-prototype-function-not-overriding-the-original-one0JavaScript prototype function not overriding the original onekavoir.com2009-04-15T13:31:45Z2009-04-15T13:59:15Z
<p>Learning javascript when I came across the concept of prototype. I succeeded in adding new methods to the <strong>cat</strong> class but failed in overriding the original <strong>talk</strong> method.</p>
<pre><code>function cat(name) {
this.name = name;
this.talk = function() {
alert( this.name + " : I'm a girl!" )
}
}
cat.prototype.talk = function() {
alert( this.name + " : I'm a dude!" )
}
cat1 = new cat("felix")
cat1.talk()
</code></pre>
<p>Why doesn't this alert the new text?</p>
http://stackoverflow.com/questions/741172/mysql-large-table-performance-issues-when-paging-with-php1MySQL large table performance issues when paging with PHPkavoir.com2009-04-12T02:09:45Z2009-04-12T02:21:14Z
<p>Have a huge mysql table with like 300,000 records and wanted to page the records in PHP (not the point here though) with a query in this manner:</p>
<pre><code>SELECT * FROM `table` LIMIT 250000, 100
</code></pre>
<p>It could be majorly slow in the latter part of the records, especially when near the end of the table (LIMIT start very large). My guess is MySQL has to count all the way down to exactly 250000 before scooping the results to me?</p>
<p>So how to work around this or any other approach for paging that could be much faster? Thanks!</p>
http://stackoverflow.com/questions/705952/how-to-set-up-a-proxy-server0How to set up a proxy server? [closed]kavoir.com2009-04-01T15:00:59Z2009-04-01T15:25:18Z
<p>I have an SSH account with a web hosting company, is there any way I can utilize this to set up my own socks server? I mean so that I can set up the proxy settings in IE: a proxy server IP address (apparently, my host) and a port in order to browse the web anonymously through my hosting server from my personal computer?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/658208/does-fieldset-have-to-be-in-a-form0Does fieldset have to be in a form?kavoir.com2009-03-18T13:17:29Z2009-03-23T16:07:59Z
<p>I dont know anything about DTD.</p>
<p><a href="http://www.bls.gov/oco/ocos292.htm" rel="nofollow">http://www.bls.gov/oco/ocos292.htm</a></p>
<p>See how fieldset is used outside of form on this page and it's cool! I love the style!</p>
http://stackoverflow.com/questions/673445/rock-solid-web-hosting-not-overselled-in-any-way-1Rock solid web hosting not OVERSELLED in ANY way? [closed]kavoir.com2009-03-23T13:54:08Z2009-03-23T14:00:46Z
<p>I'm currently with dreamhost and they are generally good enough for the price they are charging but the recent performance fluctuations and downtimes have worn my patience out on them. I'd like to change.</p>
<p>Did some research and I have narrowed down my choices:</p>
<ul>
<li>pair.com </li>
<li>slicehost.com </li>
<li>linode.com</li>
<li>liquidweb.com</li>
</ul>
<p>A lot many other hosting companies there with bad reviews. Above are some with the least negative reviews so far on the web that I can find. Not to say they are the best, just that's the best I can do.</p>
<p>Any recommendations? I'd like managed server (slicehost and linode are not, I know, just they have been recommended by practically everyone with them) as I'm not a sys admin kind of developer. I can only do simple lamp stuff. My budget is around $50 per month but willing to pay for uptime and server performance as high as $80.</p>
http://stackoverflow.com/questions/394698/html-table-cellspacing-or-padding-just-top-bottom/673306#6733060Answer by kavoir.com for HTML Table cellspacing or padding just top / bottomkavoir.com2009-03-23T13:09:02Z2009-03-23T13:09:02Z<p>This might be a little better:</p>
<p>td {
padding:2px 0;
}</p>
http://stackoverflow.com/questions/525168/why-is-u-evil-while-strong-and-em-is-not10Why is <u> evil while <strong> and <em> is not?kavoir.com2009-02-08T04:46:27Z2009-02-17T22:30:00Z
<p>Well I know it's not evil just not as pretty in semantics as <code><strong></code> and <code><em></code> right?</p>
<p>However, with <code><b></code> becoming more <em>semantic</em> as <code><strong></code> and <code><i></code> as <code><em></code>, why isn't there a semantic twin for <code><u></code>?</p>
<p><strong>In styling:</strong></p>
<p>So there's a CSS style text-decoration:underline for <code><u></code>, but isn't there one font-weight:bold for <code><strong></code> already? Thus goes <code><em></code> too.</p>
<p><strong>In semantics:</strong></p>
<p><code><strong></code> is semantic for what? Strongly emphasized text?
<code><em></code> is semantic for what? Emphasized text?
Anything fundamentally different from each other and mutually exclusive? No.
Why can't there be another way to emphasize text? You know, like the way <code><u></code> does and makes up a semantic twin for it too - I guess it's just <code><strong></code> and <code><em></code> are already well implemented in all major browsers before the <code><b></code> and <code><i></code> become obselete.</p>
<p>I know, now that it's officially become standards, you just have to go with it. Or please have your say: is there a compelling reason to make <code><u></code> out of view?</p>
http://stackoverflow.com/questions/133051/what-is-the-difference-between-visibilityhidden-and-displaynone/525202#5252020Answer by kavoir.com for What is the difference between visibility:hidden and display:nonekavoir.com2009-02-08T05:28:04Z2009-02-08T05:28:04Z<p>Thanks <a href="http://stackoverflow.com/users/37020/orip">orip</a> for the correction. I've gone furtherer than necessary. It's indeed still in the DOM available for javascript manipulations. My fault.</p>
<p>Just write an article about this, should clarify the question:</p>
<p><a href="http://www.kavoir.com/2009/02/css-difference-between-opacity0-visibilityhidden-and-displaynone.html" rel="nofollow">http://www.kavoir.com/2009/02/css-difference-between-opacity0-visibilityhidden-and-displaynone.html</a></p>
http://stackoverflow.com/questions/511721/how-to-supply-a-value-to-the-javascript-method-date-settime-from-php0How to supply a value to the javascript method Date.setTime() from PHP?kavoir.com2009-02-04T15:02:36Z2009-02-05T00:09:45Z
<p>Is it time()?
Is it time().substr(microtime(), 2, 2)?
Is it time().substr(microtime(), 2, 3)?</p>
<p>Kind of lost with the following snippet.</p>
<pre><code>function updateClock ( ) {
var timeStamp = <?php echo time().substr(microtime(), 2, 2);?>;
var currentTime = new Date ( );
currentTime.setTime( timeStamp );
...
...
}
</code></pre>
<p>My goal is to use server time and start ticking from there on client browser window. The code above either returns the current client computer time or sometime in 1973. I guess I'm not getting the right time stamp format for setTime()?</p>
<p>Thanks!</p>
<ul>
<li>1000</li>
</ul>
<p>I tried that but the web page still shows my local time after I upload the js.php (rendering the javascript code) to my server. My server is approx 12 hours different in time from me. My guess is that does php takes client side time into account running time() ? I mean browsers do send request time to apache right? </p>
<p>I copied the time() * 1000 returned value from the web page run on my server and pasted it into a local page:</p>
<pre><code><script type="text/javascript">
var d = new Date();
d.setTime(1233760568000);
document.write(d);
</script>
</code></pre>
<p>And it's indeed my local time. Thus the guess.</p>
<p>Is there anyway to specify time zone for time()?</p>
http://stackoverflow.com/questions/482972/whats-the-best-way-to-supply-download-of-a-digital-product-in-php2What's the best way to supply download of a digital product in PHP?kavoir.com2009-01-27T10:55:23Z2009-01-27T11:37:38Z
<p>Digital commercial products that customers pay for download link.</p>
<p>I have put all the zipped files (products) outside of web document root and buyers download them via a php script which is integrated with paypal IPN to make sure the downloader is a paying buyer. </p>
<p>Sort of like: <a href="http://www.mysite.com/download.php?buyer_id=xxx" rel="nofollow">http://www.mysite.com/download.php?buyer_id=xxx</a></p>
<p>Thus far it all works with only one problem. The zip files I download via the URL above is corrupted and can't be opened correctly with WinRAR. However, directly downloaded zip is fine.</p>
<p>My code:</p>
<pre><code>$path = WAREHOUSE_PATH.'/products/'.$identifier.'.zip';
$mm_type="application/octet-stream";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: " . $mm_type);
header("Content-Length: " .(string)(filesize($path)) );
header('Content-Disposition: attachment; filename="'.basename($path).'"');
header("Content-Transfer-Encoding: binary\n");
$fp = @fopen($path,"rb");
if ($fp) {
while(!feof($fp)) {
print(fread($fp, 1024*8));
flush();
if (connection_status()!=0) {
@fclose($fp);
die();
}
}
@fclose($fp);
}
</code></pre>
<p>What could be wrong? Thanks!</p>
<p>Problem solved: Thank you all for the tips. It turns out that the downloaded packages contains a few extra white spaces which shouldn't be there. Silly.</p>
http://stackoverflow.com/questions/475284/the-counterpart-of-mysqlirealescapestring0The counterpart of mysqli::real_escape_string?kavoir.com2009-01-24T01:23:51Z2009-01-24T02:31:07Z
<p>stripslashes() ? That's lame and so 4.0. What's the 5.0 counterpart of mysqli::real_escape_string that strips all slashes added for SQL queries?</p>
<p>Got some other questions:</p>
<ol>
<li><p>Tried to update a record and added a single quote in a text field, turns out phpMyAdmin escapes the string with single quotes instead of slashes - e.g. a single quote is escaped as '' (2 single quotes) instead of \' - what function is phpMyAdmin using or is it its own? So, mysql supports 2 approaches for escaping strings, namely slash and single quote?</p></li>
<li><p>Do I always have to unslash the string selected from mysql? Cause' you know it's slashed at insertion. But I thought I don't have to.</p></li>
</ol>
<p>Any ideas, thanks!</p>
http://stackoverflow.com/questions/434703/extended-css-sprites-not-working-with-hover3Extended css sprites not working with :hover?kavoir.com2009-01-12T07:24:52Z2009-01-14T18:26:44Z
<p>Hi, I just encountered this <a href="http://www.jennifersemtner.com/css/101/extending-css-spriting/" rel="nofollow">article</a> of an extention of css sprites that enables the spriting trick with foreground images . I <a href="http://www.kavoir.com/2009/01/extended-css-sprites-for-foreground-images-img.html" rel="nofollow">tried</a> to use the technique on :hover but it doesn't appear to work in IE and Opera. See my attempt to use this technique for a menu here: <a href="http://www.kavoir.com/examples/jenny-css-sprites/menu.html" rel="nofollow">http://www.kavoir.com/examples/jenny-css-sprites/menu.html</a></p>
<p>On FF and Safari, it works properly but just doesn't work at all in IE and Opera. Modified the code in a few ways but still doesn't work at all. Maybe it's impossible?</p>
<p>Tried to ask the author but she deleted my comment.</p>
<p>Any idea how to make this work on all browsers?</p>
<p>Update: Thanks for the answers but the :hover IS for , so I believe all IE browsers should work out the effects. Therefore the problem might very probably be about the clip property.</p>
<p>I just want to make sure if :hover works properly with clip on . Appears so far it doesn't.</p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418860#4188600Answer by kavoir.com for How do I convert XML to nested objects.kavoir.com2009-01-07T01:23:21Z2009-01-07T01:23:21Z<p>Just to add my bits though it's not about python.</p>
<p>In PHP, to transform any XML string or file into a network of nested objects and access the values in the native OO way, is to use <a href="http://www.php.net/simplexml" rel="nofollow">SimpleXML</a>.</p>
http://stackoverflow.com/questions/415305/element-gains-100-width-with-a-height-in-ie60Element gains 100% width with a height in IE6kavoir.com2009-01-06T03:02:31Z2009-01-06T04:32:16Z
<p>I'm trying to make a horizontal list of links with <ul> wherein all <a> is display:block and has a height. In IE6, it keeps getting 100% width after I set a height for <a>, making it a vertical list.</p>
<p>HTML:</p>
<pre><code><ul id="header">
<li><a href="#"><span>ST.KILDA ROAD MEDICAL CENTRE</span></a></li>
<li><a href="#"><span>Public Health Management</span></a></li>
<li><a href="#"><span>ST.KILDA ROAD PSYCHOLOGY SERVICES</span></a></li>
<li><a href="#"><span>OCCUPATIONAL ASSISTANCE SERVICE</span></a></li>
<li><a href="#"><span>ST.KILDA ROAD Sports &amp; Physio</span></a></li>
</ul>
</code></pre>
<p>CSS:</p>
<pre><code>#header {
height:1%;
overflow:hidden;
}
#header li {
float:left;
}
#header li a, #header li a span {
display:block;
height:28px;
}
</code></pre>
<p>The span is for some hover effect background image, I tried to remove it and its styling, problem remains.</p>
<p>Doctype is XHTML 1.0 Strict. Well I can get it working in IE6 with just padding but vertical padding is known to be differently implemented in Safari than it is by other browsers. </p>
<p>My question is if there's a way for me to retain height and display:block (because of background images) but without width (I want the item length to be flexible) for <a> and make a horizontal list in IE6. Thanks!</p>
http://stackoverflow.com/questions/46545/how-do-i-do-backups-in-mysql/397218#3972180Answer by kavoir.com for How do I do backups in MySQL? kavoir.com2008-12-29T06:08:06Z2008-12-29T06:08:06Z<p>Sound like you are talking about transaction roll back.</p>
<p>So in terms of what you need, if you have the logs containing all historical queries, isn't that the backup already? Why do you need an incremental backup which is basically a redundant copy of all the information in DB logs?</p>
<p>If so, why don't you just use mysqldump and do the backup every once a while?</p>
http://stackoverflow.com/questions/395721/what-do-you-use-to-debug-javascript-besides-firebug/395727#3957271Answer by kavoir.com for What do you use to debug JavaScript besides Firebug?kavoir.com2008-12-28T02:54:44Z2008-12-28T02:54:44Z<p><a href="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en" rel="nofollow">Internet Explorer Developer Toolbar</a> is definitely one that rocks on IE for web development debugging. It's better for DOM inspection and browsing than firebug in my opinion and much less powerful when it comes to javascript.</p>
<p><a href="http://www.google.com/chrome" rel="nofollow">Google Chrome</a> also comes with some handy little developer tools, especially for javascript, just use Page Control (the page icon beside address bar) -> Developer and you'll see a javascript debugger there.</p>
<p><a href="http://www.opera.com" rel="nofollow">Opera</a> has yet another developer menu: Tools -> Advanced -> Developer Tools (<a href="http://www.opera.com/dragonfly/" rel="nofollow">http://www.opera.com/dragonfly/</a>).</p>
<p>My favorite is a combination of IE developer toolbar for HTML+CSS and Firebug for JavaScript and other stuff that's a little more sophisticated.</p>
http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/395649#3956493Answer by kavoir.com for What is the easiest or fastest way to make CSS render the same in all browserskavoir.com2008-12-28T00:58:01Z2008-12-28T00:58:01Z<p>It is time consuming at first, especially if you are stilling learning the ropes of DIV+CSS. However after you've done enough practice and met enough of problems and got them all solved, you will have the knowledge of what WORKS and what DOESN'T WORK.</p>
<p>It is then you know how to write the most compatible style possible in the first place, thus saving all the time in degugging and rarely have any problems with any of the major modern browsers: IE6, IE7, FF2, FF3, Opera 9, Safari 3 Win / Mac.</p>
<p>Yes, it is possible and as easy as it can get. Practice and conquer them one by one, then you know how to do things right in the first attempt.</p>
<p>Well the only baffling monster should be IE6 I guess. It's inbrowser. Other than that, ff2, ff3, opera 9, safari win / mac, ie7, ie8 are relatively similar in the rendering engine, at least with much less bugs than it has with IE6.</p>
<p>I have a few best practices for you (one who has just begun their trip in CSS) in coding to get the max CSS compatibility:</p>
<ol>
<li>Use a <strong><a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/" rel="nofollow">reset</a></strong> first. It clears your mind and makes sure each step of your job.</li>
<li><strong>Don't use padding (left and right) and width on the same element</strong> unless you know well how that'll work out.</li>
<li>If an element is floated, give its parent <strong>overflow:hidden and height: 1%</strong> if the parent does not already have a height.</li>
<li><strong>Don't give an element both margin-top or margin-bottom</strong> but only margin-top or margin-bottom. Because margins of adjacent elements collapse into one another, making the positioning somewhat unpredictable for novices.</li>
<li>If an element is floated, give it <strong>display:inline</strong>.</li>
<li><strong>Don't rely on z-index</strong> unless your scripting needs it.</li>
<li>If anything weird happens in IE6, use <strong>height:1%</strong> on that element.</li>
</ol>
<p>According to my experiences, these are things that will really really help you in solving potential problems. Use them and they eliminate your chances of stumbling upon any time consuming problem by <strong>80%</strong>. Actually there are more trivial tips than these when dealing with specific tags but let's call it a day.</p>
http://stackoverflow.com/questions/395051/if-innerhtml-is-evil-then-whats-a-better-way-change-the-text-of-a-link/395071#3950713Answer by kavoir.com for If innerHTML is evil, then what's a better way change the text of a link?kavoir.com2008-12-27T15:03:19Z2008-12-27T15:03:19Z<p>Maybe it's just some standard addicts who reject the idea of innerHTML.</p>
<p>innerHTML is the practical standard because all browsers implement it though it's not a W3C standard.</p>
<p>Just use it. It works like a charm.</p>
http://stackoverflow.com/questions/5323/is-there-a-business-reason-for-striving-for-pure-css-layout/394955#394955-1Answer by kavoir.com for Is there a business reason for striving for pure CSS layout?kavoir.com2008-12-27T12:34:41Z2008-12-27T12:34:41Z<p>There definitely is. If you are still striving for it, you are not getting it right.</p>
<p>DIV+CSS layout is actually much easier than table layout in terms of maintainability and productivity. Just keep practicing it before it's too early to say that.</p>
<p>Table layout is good too it's just not meant for layouts and have exceptional drawbacks when it comes to minor tuning.</p>
http://stackoverflow.com/questions/1766/html-css-editor/394951#3949510Answer by kavoir.com for Html CSS Editorkavoir.com2008-12-27T12:30:14Z2008-12-27T12:30:14Z<p><a href="http://notepad-plus.sourceforge.net/" rel="nofollow">Notepad++</a> is definitely a great free tool to edit HTML+CSS.</p>
http://stackoverflow.com/questions/484/how-do-you-test-layout-design-across-multiple-browsers-oss/394826#3948260Answer by kavoir.com for How do you test layout design across multiple browsers/OSs?kavoir.com2008-12-27T09:14:57Z2008-12-27T09:14:57Z<p>Have 1 PC + 1 Mac.</p>
<p>PC: IE6, FF2, Opera 9.5, Safari Win on Windows XP + VPC of Windows Vista + IE7, FF3
Mac: Safari, IE</p>
<p>That's enough I believe.</p>
<p>Screenshots services are fine but they don't come handy when debugging.</p>
http://stackoverflow.com/questions/34120/html-scraping-in-php/394823#3948231Answer by kavoir.com for HTML Scraping in Php.kavoir.com2008-12-27T09:11:09Z2008-12-27T09:11:09Z<p>Using PHP for HTML scraping, I'd recommend cURL + regexp or cURL + some DOM parsers though I personally use cURL + regexp. If you have a profound taste of regexp, it's actually more accurate sometimes.</p>
http://stackoverflow.com/questions/1378827/why-is-there-a-warning-of-permission-denied-but-successfully-opened-the-file-anywComment by kavoir.com on Why is there a warning of permission denied but successfully opened the file anyway?kavoir.com2009-09-04T15:18:53Z2009-09-04T15:18:53ZSeems it's particularly about the use of fopen inside a class because when I try a plain php file with
<?php
$fh = fopen('test.txt', 'w');
fwrite($fh, 'test');
?>
to test fopen and fwrite to write to the same file, no warnings are given. I have just listed the class in the question description.http://stackoverflow.com/questions/1378827/why-is-there-a-warning-of-permission-denied-but-successfully-opened-the-file-anywComment by kavoir.com on Why is there a warning of permission denied but successfully opened the file anyway?kavoir.com2009-09-04T15:15:27Z2009-09-04T15:15:27ZApache 2. The file is assigned to the group of www-data which is Apache. Whether the permissions are 666 or 660 don't matter. The operation is successful but PHP still keeps giving out the warning.http://stackoverflow.com/questions/1378827/why-is-there-a-warning-of-permission-denied-but-successfully-opened-the-file-anywComment by kavoir.com on Why is there a warning of permission denied but successfully opened the file anyway?kavoir.com2009-09-04T15:11:28Z2009-09-04T15:11:28ZDebian 5.0 Lenny and PHP 5.2.6
It's really weird. I just tried to chmod 777 the file to be written to and PHP still pumps out the permission denied warning. Yet the operation is successful.http://stackoverflow.com/questions/1216175/mysql-count-records-from-one-table-and-then-update-another/1216185#1216185Comment by kavoir.com on MySQL: Count records from one table and then update anotherkavoir.com2009-08-01T08:42:37Z2009-08-01T08:42:37ZThanks, that works the trick!http://stackoverflow.com/questions/772471/how-to-make-a-chat-room-script-with-php/772515#772515Comment by kavoir.com on How to make a chat room script with PHP?kavoir.com2009-04-21T13:19:16Z2009-04-21T13:19:16ZDead on. That's the problem I need to address without a database: how the chat texts are synchronized and pushed to all the clients browsers?http://stackoverflow.com/questions/705952/how-to-set-up-a-proxy-server/705971#705971Comment by kavoir.com on How to set up a proxy server?kavoir.com2009-04-02T07:46:26Z2009-04-02T07:46:26ZThanks! That's absolutely helpful!http://stackoverflow.com/questions/705952/how-to-set-up-a-proxy-serverComment by kavoir.com on How to set up a proxy server?kavoir.com2009-04-02T00:27:01Z2009-04-02T00:27:01Zyeah, sucks doesn't ithttp://stackoverflow.com/questions/525168/why-is-u-evil-while-strong-and-em-is-not/525170#525170Comment by kavoir.com on Why is <u> evil while <strong> and <em> is not?kavoir.com2009-02-08T05:48:56Z2009-02-08T05:48:56ZGood one, never thought of this.http://stackoverflow.com/questions/525168/why-is-u-evil-while-strong-and-em-is-not/525177#525177Comment by kavoir.com on Why is <u> evil while <strong> and <em> is not?kavoir.com2009-02-08T05:48:15Z2009-02-08T05:48:15ZThanks sykora, very clarifying. Just I know <strong> and <em> impart meaing to the text while <u> doesn't. It's not where I have based my reasoning.
"... all we'd be doing is the same old thing, albeit with new names." I think this may be a good reason though.http://stackoverflow.com/questions/525168/why-is-u-evil-while-strong-and-em-is-notComment by kavoir.com on Why is <u> evil while <strong> and <em> is not?kavoir.com2009-02-08T05:43:10Z2009-02-08T05:43:10ZThanks for the edit, just new to this incredible community, people are fast in responding!http://stackoverflow.com/questions/434703/extended-css-sprites-not-working-with-hover/434726#434726Comment by kavoir.com on Extended css sprites not working with :hover?kavoir.com2009-01-12T15:15:36Z2009-01-12T15:15:36ZIE6 and IE7, and it doesn't work on either.http://stackoverflow.com/questions/395051/if-innerhtml-is-evil-then-whats-a-better-way-change-the-text-of-a-link/395071#395071Comment by kavoir.com on If innerHTML is evil, then what's a better way change the text of a link?kavoir.com2009-01-06T04:57:39Z2009-01-06T04:57:39Z<bite>me</bite>!
@PEZ All addicts reason for what they are addicted to as something useful.
@Trip...whatever Isn't that toy specific to just netscape?
http://stackoverflow.com/questions/395051/if-innerhtml-is-evil-then-whats-a-better-way-change-the-text-of-a-link/395055#395055Comment by kavoir.com on If innerHTML is evil, then what's a better way change the text of a link?kavoir.com2009-01-06T04:57:08Z2009-01-06T04:57:08Z@rob
Continental missiles are way faster than 747 only it doesn't come with a landing sequence for passengers, so you'd like to ride on one?