User Kevin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:54:27Z http://stackoverflow.com/feeds/user/40 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/665135/how-do-you-find-the-last-element-of-an-array-while-iterating-using-a-foreach-loop/1877792#1877792 0 Answer by Kevin for How do you find the last element of an array while iterating using a foreach loop in php ? Kevin 2009-12-09T23:52:31Z 2009-12-09T23:52:31Z <p>Here's another way you could do it:</p> <pre><code>$arr = range(1, 10); $end = end($arr); reset($arr); while( list($k, $v) = each($arr) ) { if( $n == $end ) { echo 'last!'; } else { echo sprintf('%s ', $v); } } </code></pre> http://stackoverflow.com/questions/1867774/intelligencia-urlrewriter-net-not-working-properly-on-iis-6 0 Intelligencia UrlRewriter.NET not working properly on IIS 6? Kevin 2009-12-08T15:39:29Z 2009-12-08T16:27:35Z <p>I'm having an issue getting the following syntax to work:</p> <pre><code>&lt;rewriter&gt; &lt;!-- This does NOTHING --&gt; &lt;if url="whywontthiswork\.aspx" rewrite="/default.aspx" /&gt; &lt;!-- This redirects correctly --&gt; &lt;redirect url="whywontthiswork\.aspx" to="/default.aspx" /&gt; &lt;/rewriter&gt; </code></pre> <p>As noted, the first rule does nothing no matter what I try. The X-Powered-By field on the response for that page request always says "ASP.NET". However, the second rewrite rule always works, and the X-Powered-By field on the response for that request is "ASP.NET,UrlRewriter.NET 2.0".</p> <p>I believe that IIS is configured properly because it is handling the request correctly for <code>&lt;redirect /&gt;</code>. The issue is that I don't have any ideas why the first rewrite rule would not execute.</p> <p>I have tried to search the documentation on <a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.NET</a>, but at this time, it seems their site if offline or no longer in service. Any ideas?</p> http://stackoverflow.com/questions/1867774/intelligencia-urlrewriter-net-not-working-properly-on-iis-6/1867956#1867956 0 Answer by Kevin for Intelligencia UrlRewriter.NET not working properly on IIS 6? Kevin 2009-12-08T16:08:20Z 2009-12-08T16:27:35Z <p>OK, sorry to answer my own question but I figured out the solution shortly after posting this. I most likely have a different version of UrlRewriter.NET than what was used when these rules were created. Updating the syntax to the following, solved the problem:</p> <pre><code>&lt;if url="whywontthiswork\.aspx"&gt; &lt;rewrite url="whywontthiswork\.aspx" to="/default.aspx" /&gt; &lt;/if&gt; </code></pre> <p><strong>Edit:</strong><br> I was able to confirm that our production environment was using Intelligencia.UrlRewriter version 1.7.0 but the assembly I was using was 2.0. </p> http://stackoverflow.com/questions/1842208/from-a-coders-perspective-what-kind-of-project-should-i-choose-python-over-php/1845431#1845431 1 Answer by Kevin for From a coder's perspective, what kind of project should I choose python over php for where both could do the job? Kevin 2009-12-04T07:36:58Z 2009-12-04T07:36:58Z <p>My company was contracted to build a web application last year, and the client specified that it should be done in Flex. Now, this application <em>should</em> have been a web application, but we had a unique opportunity to try something new.</p> <p>We had absolutely no idea what we were doing at the time, but it was a great learning experience. My advice would be to try something new when you get the chance, make mistakes, and continue to learn.</p> <p><em>Might be harder if you want to learn Python casually... Try getting someone to pay you for using it.</em></p> http://stackoverflow.com/questions/1837778/pass-variable-from-image-to-next-page/1841944#1841944 0 Answer by Kevin for Pass variable from image to next page Kevin 2009-12-03T18:34:34Z 2009-12-03T18:34:34Z <p>Instead of passing variables from the page to the image, you could set the random number generator seed to the same value on both scripts. Here is a full sample:</p> <pre><code>&lt;?php function randomcolor() { srand( $_SERVER['REQUEST_TIME'] ); $colors = array('red', 'green', 'blue', 'black', 'orange'); return $colors[ array_rand($colors) ]; } $color = randomcolor(); if(isset( $_GET['image'] )) { header('Content-type: image/png'); $im = imagecreate(75, 50); imagecolorallocate($im, 0xee, 0xee, 0xee); $black = imagecolorallocate($im, 0, 0, 0); imagestring($im, 2, 10, 10, $color, $black); imagepng($im); exit; } ?&gt; &lt;p&gt;color: &lt;?php echo $color; ?&gt;&lt;/p&gt; &lt;img src="test5.php?image=1" /&gt; </code></pre> <p>This is two separate requests being seeded with the <code>REQUEST_TIME</code>, which means <code>array_rand</code> will return the same value both times.</p> http://stackoverflow.com/questions/243878/vb-net-importing-classes 1 VB.NET Importing Classes Kevin 2008-10-28T16:09:52Z 2009-12-03T05:10:45Z <p><strong>Edit:</strong> This was accidentally posted twice. Original: <a href="http://stackoverflow.com/questions/243900/vb-net-importing-classes">http://stackoverflow.com/questions/243900/vb-net-importing-classes</a></p> <p>I've seen some code where a <em>Class</em> is imported, instead of a namespace, making all the static members/methods of that class available. Is this a feature of VB? Or do other languages do this as well?</p> <p>TestClass.vb</p> <pre><code>public class TestClass public shared function Somefunc() as Boolean return true end function end class </code></pre> <p>MainClass.vb</p> <pre><code>imports TestClass public class MainClass public sub Main() Somefunc() end sub end class </code></pre> <p>These files are in the App_Code directory. Just curious, because I've never thought of doing this before, nor have I read about it anywhere. </p> http://stackoverflow.com/questions/1817151/combining-xmlwriter-objects 1 Combining XmlWriter objects? Kevin 2009-11-29T23:33:21Z 2009-12-03T05:09:00Z <p>The way my application is structured, each component generates output as XML and returns an XmlWriter object. Before rendering the final output to the page, I combine all XML and perform an XSL transformation on that object. Below, is a simplified code sample of the application structure. </p> <p>Does it make sense to combine XmlWriter objects like this? Is there a better way to structure my application? The optimal solution would be one where I didn't have to pass a single XmlWriter instance as a parameter to each component.</p> <pre><code>function page1Xml() { $content = new XmlWriter(); $content-&gt;openMemory(); $content-&gt;startElement('content'); $content-&gt;text('Sample content'); $content-&gt;endElement(); return $content; } function generateSiteMap() { $sitemap = new XmlWriter(); $sitemap-&gt;openMemory(); $sitemap-&gt;startElement('sitemap'); $sitemap-&gt;startElement('page'); $sitemap-&gt;writeAttribute('href', 'page1.php'); $sitemap-&gt;text('Page 1'); $sitemap-&gt;endElement(); $sitemap-&gt;endElement(); return $sitemap; } function output($content) { $doc = new XmlWriter(); $doc-&gt;openMemory(); $doc-&gt;writePi('xml-stylesheet', 'type="text/xsl" href="template.xsl"'); $doc-&gt;startElement('document'); $doc-&gt;writeRaw( generateSiteMap()-&gt;outputMemory() ); $doc-&gt;writeRaw( $content-&gt;outputMemory() ); $doc-&gt;endElement(); $doc-&gt;endDocument(); $output = xslTransform($doc); return $output; } $content = page1Xml(); echo output($content); </code></pre> <p><hr></p> <p><strong>Update:</strong><br> I may abandon XmlWriter altogether and use DomDocument instead. It is more flexible and it also seemed to perform better (at least on the crude tests I created).</p> http://stackoverflow.com/questions/1817151/combining-xmlwriter-objects/1837786#1837786 0 Answer by Kevin for Combining XmlWriter objects? Kevin 2009-12-03T05:09:00Z 2009-12-03T05:09:00Z <p>I've never actually seen anyone combine XmlWriter objects this way and I don't think it is very efficient for what I am trying to do. I decided the best approach would be to use DOMDocument instead. The difference is: DOMDocument does not generate any XML until you output, whereas XmlWriter is basically a StringBuilder and is not as flexible. </p> http://stackoverflow.com/questions/1826503/php-get-all-method-names-from-an-object-with-name-bla/1826587#1826587 0 Answer by Kevin for PHP: get all method names from an object with name "bla_" Kevin 2009-12-01T14:36:32Z 2009-12-01T14:36:32Z <p>I would suggest something a bit more flexible such as this (unless the method names are dynamic or are unknown):</p> <pre><code>interface ITest { function blah_test(); function blah_test2(); } class Class1 implements ITest { function blah_test() { } function blah_test2() { } function somethingelse() { } } $obj = new Class1(); $methods = array_intersect( get_class_methods($obj), get_class_methods('ITest') ); foreach( $methods as $methodName ) { echo "$methodName\n"; } </code></pre> <p>Outputs:</p> <pre><code>blah_test blah_test2 </code></pre> http://stackoverflow.com/questions/1821663/notable-apps-written-in-c/1821691#1821691 1 Answer by Kevin for Notable apps written in C#? Kevin 2009-11-30T18:55:03Z 2009-11-30T18:55:03Z <p><a href="http://www.linqpad.net/" rel="nofollow">LINQPad</a></p> http://stackoverflow.com/questions/1818533/faking-method-attributes-in-php/1821022#1821022 2 Answer by Kevin for Faking method attributes in PHP? Kevin 2009-11-30T16:55:55Z 2009-11-30T16:55:55Z <p>Here's a method which may suit your needs. Each class that contains routes must implement an interface and then later loop through all defined classes which implement that interface to collect a list of routes. The interface contains a single method which expects an array of UrlRoute objects to be returned. These are then registered using your existing URL routing class.</p> <p>Edit: I was just thinking, the UrlRoute class should probably also contain a field for ClassName. Then <code>$oRouteManager->RegisterRoute($urlRoute->route, array($className, $urlRoute->method))</code> could be simplified to <code>$oRouteManager->RegisterRoute($urlRoute)</code>. However, this would require a change to your existing framework...</p> <pre><code>interface IUrlRoute { public static function GetRoutes(); } class UrlRoute { var $route; var $method; public function __construct($route, $method) { $this-&gt;route = $route; $this-&gt;method = $method; } } class Page1 implements IUrlRoute { public static function GetRoutes() { return array( new UrlRoute('page1/test/', 'test') ); } public function test() { } } class Page2 implements IUrlRoute { public static function GetRoutes() { return array( new UrlRoute('page2/someroute/', 'test3'), new UrlRoute('page2/anotherpage/', 'anotherpage') ); } public function test3() { } public function anotherpage() { } } $classes = get_declared_classes(); foreach($classes as $className) { $c = new ReflectionClass($className); if( $c-&gt;implementsInterface('IUrlRoute') ) { $fnRoute = $c-&gt;getMethod('GetRoutes'); $listRoutes = $fnRoute-&gt;invoke(null); foreach($listRoutes as $urlRoute) { $oRouteManager-&gt;RegisterRoute($urlRoute-&gt;route, array($className, $urlRoute-&gt;method)); } } } </code></pre> http://stackoverflow.com/questions/1799888/creating-html-templates-using-php/1800325#1800325 0 Answer by Kevin for Creating html templates using PHP Kevin 2009-11-25T22:21:09Z 2009-11-25T22:21:09Z <p>For this project I am working on, all views are XSL templates. Instead of passing variables to the view, I generate all the XML in the controller and transform it with the view. </p> <p>I like this structure because I can keep all my templates in one file, and arrange them anyway I want. It's also a standard template language which is very flexible and has tons of documentation. This has been working out really well so far.</p> <p>A really good example of this structure is the <a href="http://www.wowarmory.com/" rel="nofollow">WoW Armory</a> website (view the source).</p> http://stackoverflow.com/questions/1796882/php-dealing-with-get-and-post-arrays/1797060#1797060 1 Answer by Kevin for PHP - Dealing with GET and POST arrays Kevin 2009-11-25T13:55:56Z 2009-11-25T13:55:56Z <p>Here's a functional alternative which should work the same as the code you posted, but may be a little easier to understand:</p> <pre><code>function set_call_id( $val ) { $_SESSION['call_id'] = $val; } if( isset($_GET['id']) ) { set_call_id( $_GET['id'] ); pick_a_call(); } else if( isset($_POST["MM_update"]) ) { set_call_id( $_POST['call_id'] ); saving_call(); } else { set_call_id( time() . $_GET['operatore'] ); fresh_call(); } </code></pre> http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layout/1790281#1790281 1 Answer by Kevin for call a php controller with ajax (how to disable layout) Kevin 2009-11-24T14:04:44Z 2009-11-24T14:04:44Z <p>I usually create a separate controller to handle Ajax requests. For example, <code>/ajax/getusers/?page=2</code> may return the HTML for page two of a paginated users grid. I like this approach because it reminds me to keep my application logic and UI building logic separate.</p> <p>Alternatively, you could just pass in a querystring with each ajax request such as: <code>www.domain.com/controller/method/?ajax=1</code> and then hide your layout components when this is present.</p> http://stackoverflow.com/questions/264400/datalist-conditional-statements-in-itemtemplate 0 DataList, Conditional statements in <ItemTemplate>? Kevin 2008-11-05T05:28:24Z 2009-11-12T10:13:15Z <p>I am trying to do the following in ASP.NET 3.5. Basically, I am binding a LINQDataSource to a DataList. There is a property called "Deleted" and if it is true, I want to display different markup. The following code throws errors:</p> <pre><code>&lt;asp:DataList runat="server"&gt; &lt;ItemTemplate&gt; &lt;% If CBool(Eval("Deleted")) Then%&gt; ... &lt;% Else%&gt; ... &lt;% End If%&gt; &lt;/ItemTemplate&gt; &lt;/asp:DataList&gt; </code></pre> <p>Is this possible? If not, what are the alternatives?</p> http://stackoverflow.com/questions/1139391/how-to-test-controllers-with-codeigniter/1677707#1677707 1 Answer by Kevin for How to test controllers with CodeIgniter? Kevin 2009-11-05T01:03:10Z 2009-11-05T01:03:10Z <p>Alternatively, you could do this:</p> <pre><code>$CI =&amp; get_instance(); $CI = load_class('Loader'); class MockLoader extends CI_Loader { function __construct() { parent::__construct(); } } </code></pre> <p>Then in your controller do $this->load = new MockLoader().</p> http://stackoverflow.com/questions/1395485/visual-studio-publish-fails-on-bin-directory/1544454#1544454 0 Answer by Kevin for Visual Studio Publish fails on bin directory Kevin 2009-10-09T15:17:22Z 2009-10-09T15:17:22Z <p>There may be missing files in your project. This would cause the publish to fail since it cannot publish files that no longer exist.</p> http://stackoverflow.com/questions/1367965/visual-studio-shortcut-to-auto-add-event-delegate-methods 0 Visual Studio shortcut to auto-add event delegate methods Kevin 2009-09-02T14:14:56Z 2009-09-24T07:00:02Z <p>In C# adding event handler methods is very easy. You just type "object.event +=" and then press tab twice.</p> <p>Is there anything like this for VB projects?</p> <p><em>Note: This is for dynamically created controls or controls that are not declared WithEvents.</em></p> http://stackoverflow.com/questions/1120457/java-image-editor-which-renders-output-as-source-code 6 Java Image Editor which renders output as source code? Kevin 2009-07-13T16:13:53Z 2009-07-28T19:20:03Z <p>Alex explained what I'm looking for much better than I have:</p> <blockquote> <p>You want an existing program that allows you to draw a picture, captures what you do as you draw, and writes each action as a Java command. When you click the "Drawl Oval" tool and click at 0,0 and then at 50,50, it would generate the line g.drawOval(0,0,50,50).</p> </blockquote> <p>If anybody knows of a program such as this, let me know. Thanks.</p> <p><hr /></p> <p><em>Original question:</em></p> <p>I've been working with Java and custom drawing using the java.awt.Graphics library lately, but find it is taking too much time to write manually. Is there any simple graphics editor (like mspaint) which generates source code?</p> <p>Example:</p> <p>Drawing this: <img src="http://imgur.com/UEqRf.gif" alt="alt text" /></p> <p>Would generate:</p> <pre><code>public void update(Graphics g) { g.translate(0, 0); g.drawOval(0, 0, 50, 50); } </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/48/multiple-submit-buttons-on-a-form 7 Multiple submit buttons on a form Kevin 2008-08-01T13:01:17Z 2009-07-26T15:41:58Z <p>Let's say you create a Wizard in an HTML form. One button goes back and one goes forward. Since the "back" button appears first in the markup, when you press Enter it will use that button to submit the form. </p> <p>Ex:</p> <pre><code>&lt;form&gt;<br> &lt;input type="text" name="field1" /&gt; &lt;!-- put your cursor in this field and press Enter --&gt;<br><br> &lt;input type="submit" name="prev" value="Previous Page" /&gt; &lt;!-- This is the button that will submit --&gt;<br> &lt;input type="submit" name="next" value="Next Page" /&gt; &lt;!-- But this is the button that I WANT to submit --&gt;<br>&lt;/form&gt;<br></code></pre> <p>What I would LIKE to do, is get to decide which button is used to submit the form when a user presses Enter. That way, when you press Enter the Wizard will move to the next page, not the previous. Do you have to use tabindex to do this?</p> http://stackoverflow.com/questions/20198/how-does-the-asp-net-yellow-screen-of-death-display-code 8 How does the ASP.NET "Yellow Screen of Death" display code? Kevin 2008-08-21T15:14:44Z 2009-07-16T22:50:43Z <p>I thought .Net code gets compiled into MSIL, so I always wondered how do Yellow Screens produce the faulty code. If it's executing the compiled code, how is the compiler able to produce code from the source files in the error message?</p> <p>Feel free to edit this question/title, I know it doesn't really make sense.</p> http://stackoverflow.com/questions/1125833/locally-enclose-a-code-block-in-sql 0 Locally enclose a code block in SQL Kevin 2009-07-14T14:35:44Z 2009-07-15T10:52:05Z <p>In Java you can do the following to locally scope variables within a method:</p> <pre><code>public void blah() { { int a = 1; int b = 2; } { int a = 3; int b = 4; } } </code></pre> <p>I don't even know what the name for this technique is, I've only needed to use it once or twice. In my current situation, this may really come in handy with this SQL project.</p> <p>Is this even possible in SQL?</p> <p><hr /></p> <p>I'm using MS SQL Server... To give more context to the situation:</p> <p>We have several sql scripts stored as files which help perform various operations on a database. These scripts are fairly large and were designed to be run independently. Sometimes, we need to run several of these scripts together and deliver in a single file. </p> <p>Since most of these script have common variables we run into a conflict when joining these scripts together. Of course, it is easy to move all variable declaration to the beginning of the file, but the goal is to have this process automated.</p> http://stackoverflow.com/questions/26452/visual-studio-2005-shortcuts 3 Visual Studio 2005 Shortcuts Kevin 2008-08-25T17:25:33Z 2009-07-10T13:02:49Z <p>I'm trying to bind the following shortcut: <strong>Ctrl + W</strong> to close tabs</p> <p>How can you customize VS to add/change shortcuts? Also, what are the most useful shortcuts you guys have found?</p> http://stackoverflow.com/questions/554961/how-do-i-add-data-from-a-php-form-into-an-array/554971#554971 0 Answer by Kevin for How do I add data from a PHP form into an array? Kevin 2009-02-16T23:11:10Z 2009-02-16T23:11:41Z <pre><code>$files[] =$filename; </code></pre> <p>OR</p> <pre><code>array_push($files, $filename); </code></pre> http://stackoverflow.com/questions/687/keyboard-for-programmers/4734#4734 15 Answer by Kevin for Keyboard for programmers Kevin 2008-08-07T14:03:25Z 2009-02-04T05:18:48Z <p><img src="http://support.dell.com/support/edocs/acc/P76379/sk8135.jpg" alt="alt text" title=""></p> http://stackoverflow.com/questions/443648/php-range-function-in-net 0 PHP range() function in .NET? Kevin 2009-01-14T16:27:06Z 2009-01-14T16:35:42Z <p>I need to generate a list of sequential numbers. I know Ruby you can do 1..10 or PHP you can do range(1, 10). Anything like that in .Net already, or do I have to write it? Thanks.</p> http://stackoverflow.com/questions/424454/php-multiple-occurences-of-words-within-a-string/424688#424688 1 Answer by Kevin for PHP Multiple Occurences Of Words Within A String Kevin 2009-01-08T15:35:48Z 2009-01-08T15:37:24Z <p>No need for loops or arrays:</p> <pre><code>&lt;?php $needle = 'cat'; $haystack = 'cat in the cat hat'; if ( occursMoreThanOnce($haystack, $needle) ) { echo 'Success'; } function occursMoreThanOnce($haystack, $needle) { return strpos($haystack, $needle) !== strrpos($haystack, $needle); } ?&gt; </code></pre> http://stackoverflow.com/questions/137448/redundancy-in-c/424397#424397 0 Answer by Kevin for Redundancy in C#? Kevin 2009-01-08T14:22:06Z 2009-01-08T14:22:06Z <p>It's only "redundant" if you are comparing it to dynamically typed languages. It's useful for polymorphism and finding bugs at compile time. Also, it makes code auto-complete/intellisense easier for your IDE (if you use one).</p> http://stackoverflow.com/questions/407420/what-is-the-benefit-of-tableless-design-if-you-need-clearing-blocks-everywhere/407444#407444 -2 Answer by Kevin for What is the benefit of tableless design if you need clearing blocks everywhere? Kevin 2009-01-02T17:16:24Z 2009-01-02T20:22:40Z <p><a href="http://csszengarden.com/" rel="nofollow">CSS Zen Garden</a></p> http://stackoverflow.com/questions/81874/how-to-start-facebook-app/401004#401004 0 Answer by Kevin for How to start facebook app? Kevin 2008-12-30T18:10:09Z 2009-01-02T02:17:26Z <p>Here is a small app I wrote a while ago for FB. <a href="http://kevinx.net/fb/longcat.7z" rel="nofollow">http://kevinx.net/fb/longcat.7z</a></p> <p>It demonstrates how to install/uninstall an app, and how to add a box to a user's profile. I've also made some other small apps but honestly I lost interest in developing for FB.</p> http://stackoverflow.com/questions/1836387/strategy-for-developing-namespaced-and-non-namespaced-versions-of-same-php-code Comment by Kevin on Strategy for developing namespaced and non-namespaced versions of same PHP code Kevin 2009-12-04T07:44:00Z 2009-12-04T07:44:00Z Is the effort of rewriting your code to use namespaces worth it? http://stackoverflow.com/questions/1818533/faking-method-attributes-in-php/1844792#1844792 Comment by Kevin on Faking method attributes in PHP? Kevin 2009-12-04T07:20:16Z 2009-12-04T07:20:16Z Very cool. You got me interested in doing something similar to this for future projects. http://stackoverflow.com/questions/1845142/going-about-finding-a-rogue-in-php/1845320#1845320 Comment by Kevin on Going about finding a rogue <!----> in PHP Kevin 2009-12-04T07:10:06Z 2009-12-04T07:10:06Z That's really funny. I also like how isexistinguser looks like extinguisher and...you probably already know what $hit looks like. :) http://stackoverflow.com/questions/1837481/send-php-variables-to-php-file-using-jquery-ajax Comment by Kevin on send php variables to php file using jquery ajax? Kevin 2009-12-03T18:03:00Z 2009-12-03T18:03:00Z You must be more descriptive in your post to get a good answer. http://stackoverflow.com/questions/1818533/faking-method-attributes-in-php/1821022#1821022 Comment by Kevin on Faking method attributes in PHP? Kevin 2009-11-30T22:09:59Z 2009-11-30T22:09:59Z Haha, oh well. The other thought I had was using something like AttributeReader (<a href="http://interfacelab.com/metadataattributes-in-php/" rel="nofollow">interfacelab.com/metadataattributes-in-php/&hellip;</a>) and create a command line script to cache all routes to a single file. May strike the balance between speed and readability, though you have to run the script whenever a route changes... http://stackoverflow.com/questions/15326/ie7-html-css-margin-bottom-bug/15408#15408 Comment by Kevin on IE7 HTML/CSS margin-bottom bug. Kevin 2009-11-29T19:19:24Z 2009-11-29T19:19:24Z Arguable, since &lt;br&gt; means &quot;line-break&quot; and &lt;div&gt; is just meaningless. http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layout/1790281#1790281 Comment by Kevin on call a php controller with ajax (how to disable layout) Kevin 2009-11-24T18:28:56Z 2009-11-24T18:28:56Z Ah, I didn't see what framework you're using. In CodeIgnitor, each method must explicitly say which View to load and I thought most php frameworks worked like this. http://stackoverflow.com/questions/1418605/dependency-injection-in-php Comment by Kevin on Dependency Injection in PHP Kevin 2009-09-13T19:32:37Z 2009-09-13T19:32:37Z You need to escape $seo_url, there's a sql injection. http://stackoverflow.com/questions/1120457/java-image-editor-which-renders-output-as-source-code Comment by Kevin on Java Image Editor which renders output as source code? Kevin 2009-07-28T14:19:08Z 2009-07-28T14:19:08Z A SVG to Java2D converter is nice, but not what I'm looking for. http://stackoverflow.com/questions/1148145/var-keyword-in-c-3-0/1148197#1148197 Comment by Kevin on var keyword in C# 3.0 Kevin 2009-07-18T19:52:40Z 2009-07-18T19:52:40Z Kelsey, I just want to thank you for this comment. Developers who use &quot;var&quot; are in my mind, extremely lazy. Nothing irks me more when debugging code, than to have to question what the type of a variable is. Why should I have to read the entire line of code to see what this variable actually is? Because some chump couldn't be bothered to declare its type? Thanks again, glad to see someone here has common sense. http://stackoverflow.com/questions/1125833/locally-enclose-a-code-block-in-sql Comment by Kevin on Locally enclose a code block in SQL Kevin 2009-07-14T16:10:04Z 2009-07-14T16:10:04Z Thanks, I added a bit more info. http://stackoverflow.com/questions/1125833/locally-enclose-a-code-block-in-sql/1125889#1125889 Comment by Kevin on Locally enclose a code block in SQL Kevin 2009-07-14T15:39:47Z 2009-07-14T15:39:47Z Yes, bad example. Although, I used this some days ago and it worked, but maybe I used unique variable names within the block. Hm... http://stackoverflow.com/questions/430104/stackoverflow-gamertag-wordpress-widget/434972#434972 Comment by Kevin on StackOverflow "GamerTag" WordPress Widget Kevin 2009-02-14T03:51:09Z 2009-02-14T03:51:09Z Actually, target can also be used to specify which frame/window to use.... http://stackoverflow.com/questions/457903/best-way-to-implement-shopping-cart-using-php-mysql Comment by Kevin on Best way to implement shopping cart using PHP/MySQL Kevin 2009-01-20T22:46:03Z 2009-01-20T22:46:03Z Just use an existing one; No point in wasting time and money writing your own. It looks like securetrading.net does not have an API, you need to talk to their devs directly to roll your own system. Here's a list of existing carts they support: <a href="http://securetrading.net/shopping-carts.html" rel="nofollow">securetrading.net/shopping-carts.html</a>. http://stackoverflow.com/questions/455525/is-the-switch-to-dvorak-worth-it Comment by Kevin on Is the switch to Dvorak worth it? Kevin 2009-01-19T16:20:34Z 2009-01-19T16:20:34Z IMO it's not worth it, considering you will have to re-learn every keyboard shortcut. Also, most keyboard shortcuts were designed around QWERTY which makes them very awkward in DVORAK.