User Kris - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T06:38:40Zhttp://stackoverflow.com/feeds/user/18565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1755504/c-how-to-programatically-get-version-number-of-a-dll/1755514#17555143Answer by Kris for C#, how to programatically get version number of a DLL?Kris2009-11-18T11:57:42Z2009-11-18T11:57:42Z<pre><code>Assembly assembly = Assembly.LoadFrom("MyAssembly.dll");
Version ver = assembly.GetName().Version;
</code></pre>
http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755308#17553083Answer by Kris for PHP - Open TXT file, add +1 to contents when link clickedKris2009-11-18T11:15:07Z2009-11-18T11:41:09Z<p>If you forego any validity checking you could do it with something as simple as:</p>
<pre><code>file_put_contents($theCounterFile, file_get_contents($theCounterFile)+1);
</code></pre>
<p><strong>Addition:</strong></p>
<p>There's talk about concurrency in this thread and it should be noted that it is a good idea to use a database and transactions to deal with concurrency, I'd highly recommend against writing a bunch of plumbing code to do this in a file.</p>
<p>If you've ever had, or think you might ever have two requests for the resource in the same second you should look into <a href="http://php.net/PDO" rel="nofollow">PDO</a> with <a href="http://dev.mysql.com" rel="nofollow">mysql</a>, or PDO with <a href="http://www.sqlite.org" rel="nofollow">SQLite</a> instead of a file, use transactions (and <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb.html" rel="nofollow">InnoDB</a> or better if you're going for mysql).</p>
<p>But really, even if you get two requests in the same microsecond (highly unlikely), chances of locking the file are slim as it will not be kept open and the two requests will probably not be handled parallel enough to lock anyway. Reality check: how many hits on the same resource do you get on average in the same minute?...</p>
http://stackoverflow.com/questions/1709533/php-how-do-i-remove-an-element-from-a-multidemision-array/1709644#17096442Answer by Kris for PHP: How do i remove an element from a multidemision array?Kris2009-11-10T17:20:23Z2009-11-10T17:20:23Z<p>You're not enumerating over indices, but values there, to unset an array index, you have to unset it by index, not by value. </p>
<p>Also, If your array index is actually the productID you can eliminate the loop altogether:</p>
<pre><code>public function RemoveItem($productID)
{
if (isset($this->shopcart[$productID]))
{
unset($this->shopcart[$productID]);
}
}
</code></pre>
<p>Your example doesn't show how you are adding items to <code>$this->shopcart</code>, but this may or may not be an option for you depending on the needs of your project. (i.e. not if you need to have seperate instances of the same productid in the cart).</p>
http://stackoverflow.com/questions/1709379/replace-spaces-in-invalid-xml-file/1709565#17095650Answer by Kris for Replace Spaces in InValid XML FileKris2009-11-10T17:08:08Z2009-11-10T17:08:08Z<p>If you never have any attributes inside the tags you could:</p>
<ol>
<li>figure out all the element names</li>
<li>determine their malformed open and close tag equivalent.</li>
<li>replace all malformed tags with their wellformed equivalent in the entire document</li>
</ol>
<p>But if my employer gave me that stuff and said it was XML, I'd know it was time to switch jobs.</p>
http://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-working/1709353#17093530Answer by Kris for My VIEW in MySQL its not working.Kris2009-11-10T16:40:51Z2009-11-10T16:40:51Z<p>There's no <code>ordreid</code> (or <code>orderid</code>) column in <code>invoice</code> to join against. The script is still very much incomplete by the way, no function <code>fc_return_fee</code> or test data, so testability is very limited.</p>
<p>What is the error message mysql is giving you?</p>
http://stackoverflow.com/questions/1022579/whats-so-great-about-textmate/1701765#17017650Answer by Kris for What's so great about TextMate?Kris2009-11-09T15:31:35Z2009-11-10T16:07:09Z<p>Textmate basically has all the power of <insert your favorite unix editor here> with a nice Mac OS X UI wrapped around it and a great plugin system using bundles, of which hundreds are available and most are either good or awesome.</p>
http://stackoverflow.com/questions/1702972/how-do-i-check-if-a-node-has-no-siblings/1703010#17030102Answer by Kris for How do I check if a node has no siblings?Kris2009-11-09T18:56:12Z2009-11-09T18:56:12Z<p>you could count the number of childnodes in the items parent after filtering out the whitespace nodes. (which you probably don't want, but are also probably messing up your expected result).</p>
<p>I can't put it in actual java real quick because i'm not familiar enough with it, but it should be pretty straightforward.</p>
http://stackoverflow.com/questions/1702899/whats-a-duo-file/1702973#17029730Answer by Kris for What's a .duo file?Kris2009-11-09T18:50:53Z2009-11-09T18:50:53Z<p>Seems to be <a href="http://www.file-extensions.org/duo-file-extension" rel="nofollow">database related</a></p>
http://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1702958#17029581Answer by Kris for Site slows for individual users, but they can switch browsers?Kris2009-11-09T18:47:56Z2009-11-09T18:47:56Z<p>Sounds pretty much like you have some sort of session locking issue. You state that even removing cookies doesn't help, which makes session locks seem less plausible, but I don't have any details on your implementation so it's still possible.</p>
<p>I have two questions i'd need answered to gain some insight into the problem.</p>
<ol>
<li><p>Do you have a session open while streaming content <em>and</em> attempting to read from or write to the session on a different request?</p></li>
<li><p>Have you've implemented your own sessions?</p></li>
</ol>
<p>If you're answering yes or maybe to question 1, that's probably the root of your problem then.</p>
<p>If you're answering yes to question two, does the problem persist if you switch session management to standard php? You could have a bug in your session handling.</p>
http://stackoverflow.com/questions/1702693/how-can-i-send-all-php-errors-run-on-one-page-to-an-email/1702736#17027363Answer by Kris for How can I send all php errors run on one page to an email?Kris2009-11-09T18:12:00Z2009-11-09T18:25:23Z<p>you'll need to setup an <a href="http://php.net/set%5Ferror%5Fhandler" rel="nofollow">error handler</a> and <a href="http://php.net/register%5Fshutdown%5Ffunction" rel="nofollow">register a shutdown function</a> to do the mailing. in a very oversimplified example that could look something like this:</p>
<pre><code><?php
$__errors = array();
function my_error_handler($code, $message, $file, $line) {
global $__errors;
$__errors[] = sprintf('"%s" (%s line %s)', $message, $file, $line);
}
set_error_handler( 'my_error_handler', E_ALL );
function send_rror_log() {
global $__errors;
if ( count( $__errors ) > 0 ) {
foreach ( $__errors as $error ) {
$body . $error . "\n";
}
mail( 'to@example.com', 'error log', $body );
}
}
register_shutdown_function( 'send_error_log' );
?>
</code></pre>
http://stackoverflow.com/questions/1702762/how-to-create-an-empty-file-in-the-command-line/1702777#17027770Answer by Kris for How to create an empty file in the command line?Kris2009-11-09T18:20:13Z2009-11-09T18:20:13Z<pre><code>echo "" > filename
</code></pre>
<p>I believe this works on windows/dos, but my last hands-on experience with either is quite a while ago. I do know for a fact that it works on basically any posix compliant OS.</p>
http://stackoverflow.com/questions/1697643/php5-what-is-the-cost-of-rtti-get-class-name-and-etc-in-php5/1701694#17016942Answer by Kris for PHP5 - What is the cost of RTTI (get class' name and etc.) in PHP5?Kris2009-11-09T15:20:36Z2009-11-09T15:20:36Z<p>In general, if you are using PHP, performance should not be your biggest worry, write good looking code first (ie. readable and maintainable, self documenting etc.) then profile and optimize as needed. If you begin by worrying about speed, PHP is probably not the way to go.</p>
<p>But to answer your question... get_class has pretty decent performance, i think it's pretty well optimized inside the zend engine. trying to call a non-existing function and dealing with the error is <strong>much</strong> more expensive. (it is a fatal error to call a non existent function, you do not get to catch it unless you write a bunch of glue code in your base object)</p>
<p>Here's a bit of benchmarking to show some of the different methods of determining the ability to run a method.</p>
<p>benchmark.php:</p>
<pre><code><?php
class MyClass {
public function Hello() {
return 'Hello, World!';
}
}
function test_get_class( $instance ) {
$t = get_class( $instance );
}
function test_is_callable( $instance ) {
$t = is_callable( $instance, 'Hello' );
}
function test_method_exists( $instance ) {
$t = method_exists( $instance, 'Hello' );
}
function test_just_call( $instance ) {
$result = $instance->Hello();
}
function benchmark($iterations, $function, $args=null) {
$start = microtime(true);
for( $i = 0; $i < $iterations; $i ++ ) {
call_user_func_Array( $function, $args );
}
return microtime(true)-$start;
}
$instance = new MyClass();
printf( "get_class: %s\n", number_format(benchmark( 100000, 'test_get_class', array( $instance ) ), 5) );
printf( "is_callable: %s\n", number_format(benchmark( 100000, 'test_is_callable', array( $instance ) ), 5) );
printf( "method_exists: %s\n", number_format(benchmark( 100000, 'test_method_exists', array( $instance ) ), 5) );
printf( "just_call: %s\n", number_format(benchmark( 100000, 'test_just_call', array( $instance ) ), 5) );
?>
</code></pre>
<p>results:</p>
<pre><code>get_class: 0.78946
is_callable: 0.87505
method_exists: 0.83352
just_call: 0.85176
</code></pre>
http://stackoverflow.com/questions/1701440/averaging-a-total-in-mysql/1701463#17014637Answer by Kris for Averaging a total in mySQLKris2009-11-09T14:47:32Z2009-11-09T14:47:32Z<p>Total per person:</p>
<pre><code>SELECT person_id, SUM(miles) FROM table GROUP BY person_id
</code></pre>
<p>Average</p>
<pre><code>SELECT SUM(miles) / COUNT(DISTINCT person_id) FROM table
</code></pre>
<p>These should work</p>
http://stackoverflow.com/questions/1699796/best-way-to-do-multiple-constructors-in-php/1701337#17013374Answer by Kris for Best way to do multiple constructors in PHPKris2009-11-09T14:33:09Z2009-11-09T14:33:09Z<p>I'd probably do something like this:</p>
<pre><code><?php
class Student
{
public function __construct() {
// allocate your stuff
}
public static function withID( $id ) {
$instance = new self();
$instance->loadByID( $id );
return $instance;
}
public static function withRow( array $row ) {
$instance = new self();
$instance->fill( $row );
return $instance;
}
protected function loadByID( $id ) {
// do query
$row = my_awesome_db_access_stuff( $id );
$this->fill( $row );
}
protected function fill( array $row ) {
// fill all properties from array
}
}
?>
</code></pre>
<p>Then if i want a Student where i know the ID:</p>
<pre><code>$student = Student::withID( $id );
</code></pre>
<p>Or if i have an array of the db row:</p>
<pre><code>$student = Student::withRow( $row );
</code></pre>
<p>Technically you're not building multiple constructors, just static helper methods, but you get to avoid a lot of spaghetti code in the constructor this way.</p>
http://stackoverflow.com/questions/1691229/how-does-im-remember-password-securely/1691413#1691413-1Answer by Kris for how does IM remember password securely?Kris2009-11-07T00:24:45Z2009-11-08T00:16:35Z<p>just hash it the same way in your client app as you do on the server, you can eliminate the need to ever send the actual password that way.</p>
<p>obviously you'll have to hash your hash again when sending, otherwise the hash becomes tha password, but you can do the same on the server. Use some random token inside the authentication message.</p>
<p><strong>Additions</strong> It's really not as hard to grok as the comments make it seem:</p>
<p>If you take the original password (plaintext) concatenate it with something like a MAC address, or email address, or username, or whatever you can reproduce on the server, you are salting the password and storing a relatively secure hash. </p>
<p>Upon authentication you do not just send this hash because that would defeat the purpose of the hashing process entirely, you randomly generate a nonce and concatenate that with the first hash before hashing again. then on the server, you get the nonce and the new hash, which you use to validate your server side hash, hence validating the originally entered plaintext password, without ever storing or transfering it.</p>
http://stackoverflow.com/questions/1691390/php-mysqlifetchfield-data-type/1691403#16914030Answer by Kris for PHP mysqli_fetch_field data typeKris2009-11-07T00:22:09Z2009-11-07T00:22:09Z<p>I think that'll only give you some flags; nullable or not etc.</p>
<p>You might be better off querying INFORMATION_SCHEMA.COLUMNS to get that sort of details.</p>
http://stackoverflow.com/questions/1691361/whats-a-good-rule-of-thumb-for-max-dropdown-list-options/1691383#16913830Answer by Kris for what's a good rule of thumb for max dropdown list optionsKris2009-11-07T00:16:55Z2009-11-07T00:16:55Z<p>Anything over 10 items is probably "a lot" but not immediately too much, that all depends on the context of your application.</p>
<p>As for the second part of your question, you might have some success with the drill-down approach, where you have multiple methods of drilling down to a final choice, perhaps you can define groups in one dropdown and elements in the next, filling the second dropdown based on the coice made in the first.</p>
<p>Search can be a big help too, especially if done asynchronously (think AJAX) and the dropdown can be changed to a combobox.</p>
http://stackoverflow.com/questions/1687279/can-we-pass-parameter-to-a-view-in-sql/1687533#16875330Answer by Kris for can we pass parameter to a view in sql?Kris2009-11-06T13:16:02Z2009-11-06T13:16:02Z<p>A view is nothing more than a predifined 'SELECT' statement. So the only real answer would be: No, you cannot.</p>
<p>I think what you really want to do is create a stored procedure, where in principle you can use any valid SQL to do whatever you want, including accept parameters and select data.</p>
<p>It seems likely that you really only need to add a where clause when you select from your view though, but you didn't really provide enough details to be sure.</p>
http://stackoverflow.com/questions/1683673/there-is-some-way-to-do-this-string-extraction-faster/1684772#16847720Answer by Kris for There is some way to do this string extraction faster?Kris2009-11-06T01:09:31Z2009-11-06T01:09:31Z<pre><code><?php
$iterations = 100000;
$fullhost = 'subdomain.domain.tld';
$start = microtime(true);
for($i = 0; $i < $iterations; $i++)
{
$vhost = substr($fullhost, 0, strpos($fullhost, '.'));
}
$total = microtime(true) - $start;
printf( 'extracted %s from %s %d times in %s seconds', $vhost, $fullhost, $iterations, number_format($total,5));
?>
</code></pre>
<p>extracted subdomain from subdomain.domain.tld 100000 times in 0.44695 seconds</p>
<p>But that was while encoding video, so it will likely be faster under better circumstances.</p>
http://stackoverflow.com/questions/1683843/is-sql-injection-a-risk-today/1684679#16846791Answer by Kris for Is SQL injection a risk today?Kris2009-11-06T00:45:16Z2009-11-06T00:45:16Z<p>As I've mentioned several times on stackoverflow before, I am a strong supporter of PDO, just stop using the old fashioned mysql, do yourself <strong>and your clients</strong> a big favor and learn PDO (it's really easy) and take advantage of prepared statements and bound parameters. Even if you do not need prepared statements performance wise, you still get the security benefits. </p>
<p>Also, I will recommend crashing your entire app in the clients face if magic quotes is set to on. It's just a drain on resources designed to protect the dumb and annoy the smart. (it uses more cpu than escaping manually, because it encodes everything, even when you don't need it) </p>
http://stackoverflow.com/questions/1684593/what-is-a-resonable-maximum-db-rows-for-built-in-gridview-paging/1684610#16846101Answer by Kris for What is a resonable maximum DB rows for built-in GridView paging?Kris2009-11-06T00:24:34Z2009-11-06T00:24:34Z<p>Can you profile with test data? If so I highly recommend just trying increasing amounts of rows until it becomes too slow for you. By doing so you will probably gain some insight you cannot get any other way than trying yourself.</p>
<p>Having said that, I personally never just bind from the database, I always have a glue object that manages the datasource and gets exactly what is needed for the page. It might very well not be worth spending the time on that for you though.</p>
http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268294#2682944Answer by Kris for When writing code do you wrap text or not?Kris2008-11-06T11:02:06Z2009-11-02T09:33:55Z<p>I never let the IDE do that for me because it's annoying. If one statement becomes too long or complicated to fit on one line of reasonable length, I'll wrap it myself thank you very much. This happens with largish format strings etc.</p>
http://stackoverflow.com/questions/927474/any-netbeans-features-that-will-make-my-day5Any netbeans features that will make my day?Kris2009-05-29T18:31:20Z2009-10-22T14:52:32Z
<p>Hi all, </p>
<p>I've recently gotten quite fond of <a href="http://www.netbeans.org/" rel="nofollow">netbeans</a> for my php work because of the XDebug integration. It has made me all but forget about <a href="http://www.macromates.com" rel="nofollow">textmate</a> (which imho still beats netbeans for the little things) </p>
<p>What do you think is the one awesome netbeans feature I should know about, and more importantly why and how do I use it?</p>
<p>I'm asking this to optimize my skills in the use of the IDE and based on the idea that what works well for others might just work for me (and hopefully others).</p>
http://stackoverflow.com/questions/1586225/how-to-delete-multiple-rows-in-sql-server/1586238#15862381Answer by Kris for How to delete multiple rows in SQL Server Kris2009-10-18T22:36:22Z2009-10-18T22:36:22Z<p>ON DELETE CASCADE on the foreign key?</p>
http://stackoverflow.com/questions/1586094/convert-bitmap-files-into-jpeg-using-the-gd-library-in-php/1586221#15862210Answer by Kris for Convert Bitmap Files into JPEG using the GD library in PHPKris2009-10-18T22:32:37Z2009-10-18T22:32:37Z<p>Off the top of my head:</p>
<pre><code>function convert_to_jpeg( $input_path, $output_path )
{
$image = imagecreatefromstring(file_get_contents($input_path));
imagejpeg($image, $output_path);
imagedestroy($image);
}
</code></pre>
<p>That'll take any format GD can handle as input, and output a jpeg file. I don't know what version of GD you folks are using, but mine handles .bmp perfectly and so did the version we used at the previous company I worked for. (on Mac OS X 10.6 and CentOS 5 respectively)</p>
<p><b>edit</b>: forgot imagedestroy! ouch!</p>
http://stackoverflow.com/questions/1569559/c-vs-java-for-game-programming/1569577#15695771Answer by Kris for C vs. Java for game programmingKris2009-10-14T23:34:51Z2009-10-14T23:34:51Z<p>I think it's mostly because c lets developers squeeze every last little bit of performance out of hardware, whereas Java doesn't, it's not low level enough for things like high end 3d video renderers. Basically c lets you squeeze out a couple more frames per second in your next gen shooter.</p>
http://stackoverflow.com/questions/927474/any-netbeans-features-that-will-make-my-day/1511400#15114001Answer by Kris for Any netbeans features that will make my day?Kris2009-10-02T19:36:35Z2009-10-02T19:36:35Z<p>I've found another great snip of genius i wanted to share:</p>
<p>you can do custom code folding (not really related to php, just netbeans)</p>
<p>just put this into a code file:</p>
<pre><code>// <editor-fold defaultstate="collapsed" desc="getters and setters">
some boring code you don't need to see every time here
// </editor-fold>
</code></pre>
<p>That'll behave similar to <code>#region</code>s in visual studio or <code>pragma mark</code>s in xcode. but unlike <code>region</code>s, it doesn't screw up the working of your code, it's really just a comment!</p>
http://stackoverflow.com/questions/1366313/possible-to-compile-asp-net-to-machine-code/1366327#13663271Answer by Kris for Possible to Compile ASP.NET to Machine Code?Kris2009-09-02T07:50:03Z2009-09-02T07:50:03Z<p>While it is actually possible to make a .net independent executable from a .net project postbuild using tools from for example www.xenocode.com, I don't know if that holds true for ASP.NET projects, I also doubt there will be any real performance benefits after the first load of any resource.</p>
http://stackoverflow.com/questions/1347955/pdo-and-nested-fetching/1348009#13480090Answer by Kris for PDO and nested fetchingKris2009-08-28T16:11:05Z2009-08-28T16:11:05Z<p>Sounds like what you are trying to accomplish is getting related data for the record you're looking at, why not just JOIN them in at the first query? The database will be better at connecting the dots internally than any amount of code can do externally.</p>
<p>But to answer your question, I don't see the harm in opening another connection to the same DSN, most likely thing to happen is that you get another instance of the PDO object pointing to the same actual connection. Also, but depending on the amount of data you're expecting you could just fetchAll and loop over a php array.</p>
http://stackoverflow.com/questions/873432/netbeans-php-code-completion4NetBeans PHP code completionKris2009-05-16T22:12:14Z2009-08-27T02:42:36Z
<p>Hi folks,</p>
<p>Rrecently I started using <a href="http://download.netbeans.org/netbeans/6.7/beta/" rel="nofollow">NetBeans 6.7 beta</a> for PHP development instead of <a href="http://macromates.com/" rel="nofollow">Textmate</a> and <a href="http://www.bluestatic.org/software/macgdbp/" rel="nofollow">MacGDBp</a>. I am rather amazed with it's feature set and most everything worked out of the box, or was easily configured to my liking.</p>
<p>I am having an issue with the code completion features though; they work for build-in functions, <a href="http://nl.php.net/spl" rel="nofollow" title="Standard PHP Library">SPL</a> and some of my code, but not all of my code, specifically, it never works for any methods in my classes, regardless of PHPDoc comments.</p>
<p>I can't seem to find any decent questions, let alone answers about this specific subject anywhere. It looks like everybody else who has problems with the code completion just hasn't enabled the auto-popup feature.</p>
<p><strong>So the big question is:</strong></p>
<p>Is there <em>any way</em> to influence the code completion cache, or something i have to add to my code to make it work? I'd really like to have code completion for the methods I write.</p>
<p><strong>PS</strong>: i have tried several older versions of netbeans, they all exhibit the same problem.</p>
<p><strong>edit</strong>: I've put a .zip up of my current test project. <a href="http://develop.theredhead.nl/~kris/stackoverflow/develop.theredhead.nl.zip" rel="nofollow">get it here</a>. It's a very young project, think a day and a half.</p>
<p><strong>edit2</strong>: Below is a screenshot of what i'm looking at. As you can see, it fails to complete pretty much anything, nor does it see the PHPDoc documentation.</p>
<p><img src="http://develop.theredhead.nl/~kris/stackoverflow/netbeans-code-completion-fail-screenshot.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1755416/how-can-i-parse-the-following-text-file/1755433#1755433Comment by Kris on How can I parse the following text file?Kris2009-11-18T12:04:54Z2009-11-18T12:04:54Zstreets don't have padding whereas persons do.http://stackoverflow.com/questions/1755512/iphone-device-test-issueComment by Kris on iPhone device test IssueKris2009-11-18T12:01:55Z2009-11-18T12:01:55ZIt's iPhone, not I-phone. I know google is pretty good with spelling errors like that these days but it's still a good idea to spell things correctly.http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755308#1755308Comment by Kris on PHP - Open TXT file, add +1 to contents when link clickedKris2009-11-18T11:41:36Z2009-11-18T11:41:36Zouch gumbo, you are absolutely correct!http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755308#1755308Comment by Kris on PHP - Open TXT file, add +1 to contents when link clickedKris2009-11-18T11:29:14Z2009-11-18T11:29:14Zyes it will fail, if you need something viable for concurrency use a database, not a text file.http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755342#1755342Comment by Kris on PHP - Open TXT file, add +1 to contents when link clickedKris2009-11-18T11:28:04Z2009-11-18T11:28:04Zwhy on earth would you want to write all that plumbing yourself, just to reqd and write an int?http://stackoverflow.com/questions/1755298/php-open-txt-file-add-1-to-contents-when-link-clicked/1755331#1755331Comment by Kris on PHP - Open TXT file, add +1 to contents when link clickedKris2009-11-18T11:23:58Z2009-11-18T11:23:58ZSQLite is very obviously a much better idea than using a text file.http://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1702958#1702958Comment by Kris on Site slows for individual users, but they can switch browsers?Kris2009-11-12T05:05:43Z2009-11-12T05:05:43ZI'm afraid you'll just have to selectively open and close the session, personally i have my own DB based sessions, but just a backend to PHP's $_SESSION, and that'll still lock if you do it wrong.http://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-working/1709353#1709353Comment by Kris on My VIEW in MySQL its not working.Kris2009-11-10T16:50:20Z2009-11-10T16:50:20Zthen you probably need to add some code to the end of your view: GROUP BY shopid, accept_datehttp://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-workingComment by Kris on My VIEW in MySQL its not working.Kris2009-11-10T16:45:45Z2009-11-10T16:45:45Z@mmoreds, most likely: yeshttp://stackoverflow.com/questions/1709190/my-view-in-mysql-its-not-workingComment by Kris on My VIEW in MySQL its not working.Kris2009-11-10T16:29:20Z2009-11-10T16:29:20ZI don't have any of your base tables to test against, but at first glance it seems like it should work. Maybe you can post a small but complete sql script to recreate the required tables and insert some test data? I'd be happy to take a look.http://stackoverflow.com/questions/1709161/how-do-i-prevent-duplicate-headers-when-dealing-with-threads-in-phpComment by Kris on How do I prevent duplicate headers when dealing with threads in PHP?Kris2009-11-10T16:19:58Z2009-11-10T16:19:58ZI can't tell you anything useful without a proper code samplehttp://stackoverflow.com/questions/1702739/site-slows-for-individual-users-but-they-can-switch-browsers/1702958#1702958Comment by Kris on Site slows for individual users, but they can switch browsers?Kris2009-11-10T16:10:10Z2009-11-10T16:10:10ZIt's not just multiple tabs that cause multiple open requests, just loading any two or more resources at the same time, tabs by themselves aren't very likely to do that, unless you're also doing some AJAX.http://stackoverflow.com/questions/1022579/whats-so-great-about-textmate/1701765#1701765Comment by Kris on What's so great about TextMate?Kris2009-11-10T16:07:42Z2009-11-10T16:07:42Zwhoops, I never noticed the editor cutting that par, edited accordinglyhttp://stackoverflow.com/questions/1702899/whats-a-duo-file/1702955#1702955Comment by Kris on What's a .duo file?Kris2009-11-09T18:51:45Z2009-11-09T18:51:45Z@Blaenk: you beat me to it. upvote deserved.http://stackoverflow.com/questions/1702762/how-to-create-an-empty-file-in-the-command-line/1702777#1702777Comment by Kris on How to create an empty file in the command line?Kris2009-11-09T18:27:08Z2009-11-09T18:27:08Zmaybe you could put "@echo off" on the line before creating the file to circumvent that?