User Kevin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T00:54:27Zhttp://stackoverflow.com/feeds/user/40http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/665135/how-do-you-find-the-last-element-of-an-array-while-iterating-using-a-foreach-loop/1877792#18777920Answer by Kevin for How do you find the last element of an array while iterating using a foreach loop in php ?Kevin2009-12-09T23:52:31Z2009-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-60Intelligencia UrlRewriter.NET not working properly on IIS 6?Kevin2009-12-08T15:39:29Z2009-12-08T16:27:35Z
<p>I'm having an issue getting the following syntax to work:</p>
<pre><code><rewriter>
<!-- This does NOTHING -->
<if url="whywontthiswork\.aspx" rewrite="/default.aspx" />
<!-- This redirects correctly -->
<redirect url="whywontthiswork\.aspx" to="/default.aspx" />
</rewriter>
</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><redirect /></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#18679560Answer by Kevin for Intelligencia UrlRewriter.NET not working properly on IIS 6?Kevin2009-12-08T16:08:20Z2009-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><if url="whywontthiswork\.aspx">
<rewrite url="whywontthiswork\.aspx" to="/default.aspx" />
</if>
</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#18454311Answer 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?Kevin2009-12-04T07:36:58Z2009-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#18419440Answer by Kevin for Pass variable from image to next pageKevin2009-12-03T18:34:34Z2009-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><?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;
}
?>
<p>color: <?php echo $color; ?></p>
<img src="test5.php?image=1" />
</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-classes1VB.NET Importing ClassesKevin2008-10-28T16:09:52Z2009-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-objects1Combining XmlWriter objects?Kevin2009-11-29T23:33:21Z2009-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->openMemory();
$content->startElement('content');
$content->text('Sample content');
$content->endElement();
return $content;
}
function generateSiteMap() {
$sitemap = new XmlWriter();
$sitemap->openMemory();
$sitemap->startElement('sitemap');
$sitemap->startElement('page');
$sitemap->writeAttribute('href', 'page1.php');
$sitemap->text('Page 1');
$sitemap->endElement();
$sitemap->endElement();
return $sitemap;
}
function output($content)
{
$doc = new XmlWriter();
$doc->openMemory();
$doc->writePi('xml-stylesheet', 'type="text/xsl" href="template.xsl"');
$doc->startElement('document');
$doc->writeRaw( generateSiteMap()->outputMemory() );
$doc->writeRaw( $content->outputMemory() );
$doc->endElement();
$doc->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#18377860Answer by Kevin for Combining XmlWriter objects?Kevin2009-12-03T05:09:00Z2009-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#18265870Answer by Kevin for PHP: get all method names from an object with name "bla_"Kevin2009-12-01T14:36:32Z2009-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#18216911Answer by Kevin for Notable apps written in C#?Kevin2009-11-30T18:55:03Z2009-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#18210222Answer by Kevin for Faking method attributes in PHP?Kevin2009-11-30T16:55:55Z2009-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->route = $route;
$this->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->implementsInterface('IUrlRoute') )
{
$fnRoute = $c->getMethod('GetRoutes');
$listRoutes = $fnRoute->invoke(null);
foreach($listRoutes as $urlRoute)
{
$oRouteManager->RegisterRoute($urlRoute->route, array($className, $urlRoute->method));
}
}
}
</code></pre>
http://stackoverflow.com/questions/1799888/creating-html-templates-using-php/1800325#18003250Answer by Kevin for Creating html templates using PHPKevin2009-11-25T22:21:09Z2009-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#17970601Answer by Kevin for PHP - Dealing with GET and POST arraysKevin2009-11-25T13:55:56Z2009-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#17902811Answer by Kevin for call a php controller with ajax (how to disable layout)Kevin2009-11-24T14:04:44Z2009-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-itemtemplate0DataList, Conditional statements in <ItemTemplate>?Kevin2008-11-05T05:28:24Z2009-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><asp:DataList runat="server">
<ItemTemplate>
<% If CBool(Eval("Deleted")) Then%>
...
<% Else%>
...
<% End If%>
</ItemTemplate>
</asp:DataList>
</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#16777071Answer by Kevin for How to test controllers with CodeIgniter?Kevin2009-11-05T01:03:10Z2009-11-05T01:03:10Z<p>Alternatively, you could do this:</p>
<pre><code>$CI =& 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#15444540Answer by Kevin for Visual Studio Publish fails on bin directoryKevin2009-10-09T15:17:22Z2009-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-methods0Visual Studio shortcut to auto-add event delegate methodsKevin2009-09-02T14:14:56Z2009-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-code6Java Image Editor which renders output as source code?Kevin2009-07-13T16:13:53Z2009-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-form7Multiple submit buttons on a formKevin2008-08-01T13:01:17Z2009-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><form><br> <input type="text" name="field1" /> <!-- put your cursor in this field and press Enter --><br><br> <input type="submit" name="prev" value="Previous Page" /> <!-- This is the button that will submit --><br> <input type="submit" name="next" value="Next Page" /> <!-- But this is the button that I WANT to submit --><br></form><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-code8How does the ASP.NET "Yellow Screen of Death" display code?Kevin2008-08-21T15:14:44Z2009-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-sql0Locally enclose a code block in SQLKevin2009-07-14T14:35:44Z2009-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-shortcuts3Visual Studio 2005 ShortcutsKevin2008-08-25T17:25:33Z2009-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#5549710Answer by Kevin for How do I add data from a PHP form into an array?Kevin2009-02-16T23:11:10Z2009-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#473415Answer by Kevin for Keyboard for programmersKevin2008-08-07T14:03:25Z2009-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-net0PHP range() function in .NET?Kevin2009-01-14T16:27:06Z2009-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#4246881Answer by Kevin for PHP Multiple Occurences Of Words Within A StringKevin2009-01-08T15:35:48Z2009-01-08T15:37:24Z<p>No need for loops or arrays:</p>
<pre><code><?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);
}
?>
</code></pre>
http://stackoverflow.com/questions/137448/redundancy-in-c/424397#4243970Answer by Kevin for Redundancy in C#?Kevin2009-01-08T14:22:06Z2009-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-2Answer by Kevin for What is the benefit of tableless design if you need clearing blocks everywhere?Kevin2009-01-02T17:16:24Z2009-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#4010040Answer by Kevin for How to start facebook app?Kevin2008-12-30T18:10:09Z2009-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-codeComment by Kevin on Strategy for developing namespaced and non-namespaced versions of same PHP codeKevin2009-12-04T07:44:00Z2009-12-04T07:44:00ZIs the effort of rewriting your code to use namespaces worth it?http://stackoverflow.com/questions/1818533/faking-method-attributes-in-php/1844792#1844792Comment by Kevin on Faking method attributes in PHP?Kevin2009-12-04T07:20:16Z2009-12-04T07:20:16ZVery 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#1845320Comment by Kevin on Going about finding a rogue <!----> in PHPKevin2009-12-04T07:10:06Z2009-12-04T07:10:06ZThat'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-ajaxComment by Kevin on send php variables to php file using jquery ajax?Kevin2009-12-03T18:03:00Z2009-12-03T18:03:00ZYou must be more descriptive in your post to get a good answer.http://stackoverflow.com/questions/1818533/faking-method-attributes-in-php/1821022#1821022Comment by Kevin on Faking method attributes in PHP?Kevin2009-11-30T22:09:59Z2009-11-30T22:09:59ZHaha, 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/…</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#15408Comment by Kevin on IE7 HTML/CSS margin-bottom bug.Kevin2009-11-29T19:19:24Z2009-11-29T19:19:24ZArguable, since <br> means "line-break" and <div> is just meaningless.http://stackoverflow.com/questions/1789687/call-a-php-controller-with-ajax-how-to-disable-layout/1790281#1790281Comment by Kevin on call a php controller with ajax (how to disable layout)Kevin2009-11-24T18:28:56Z2009-11-24T18:28:56ZAh, 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-phpComment by Kevin on Dependency Injection in PHPKevin2009-09-13T19:32:37Z2009-09-13T19:32:37ZYou need to escape $seo_url, there's a sql injection.http://stackoverflow.com/questions/1120457/java-image-editor-which-renders-output-as-source-codeComment by Kevin on Java Image Editor which renders output as source code?Kevin2009-07-28T14:19:08Z2009-07-28T14:19:08ZA 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#1148197Comment by Kevin on var keyword in C# 3.0Kevin2009-07-18T19:52:40Z2009-07-18T19:52:40ZKelsey, I just want to thank you for this comment. Developers who use "var" 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-sqlComment by Kevin on Locally enclose a code block in SQLKevin2009-07-14T16:10:04Z2009-07-14T16:10:04ZThanks, I added a bit more info.http://stackoverflow.com/questions/1125833/locally-enclose-a-code-block-in-sql/1125889#1125889Comment by Kevin on Locally enclose a code block in SQLKevin2009-07-14T15:39:47Z2009-07-14T15:39:47ZYes, 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#434972Comment by Kevin on StackOverflow "GamerTag" WordPress WidgetKevin2009-02-14T03:51:09Z2009-02-14T03:51:09ZActually, 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-mysqlComment by Kevin on Best way to implement shopping cart using PHP/MySQLKevin2009-01-20T22:46:03Z2009-01-20T22:46:03ZJust 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-itComment by Kevin on Is the switch to Dvorak worth it?Kevin2009-01-19T16:20:34Z2009-01-19T16:20:34ZIMO 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.