User Keith Twombley - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:28:40Zhttp://stackoverflow.com/feeds/user/23866http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314752/is-there-an-eclipse-plugin-for-developing-in-m40Is there an eclipse plugin for developing in m4?Keith Twombley2008-11-24T16:50:25Z2009-09-14T15:00:00Z
<p>Googling has turned up little to nothing.</p>
<p>I need to develop some heavy stuff in m4 and I'd love to do it in my favorite environment with all the bells and whistles thereof.</p>
<p>There are packages for running m4 on just about every platform, such as <a href="http://gnuwin32.sourceforge.net/packages/m4.htm" rel="nofollow">windows</a>. So I know at the very least I can create a default project and test from the CLI. But I'd rather not :)</p>
http://stackoverflow.com/questions/227262/how-do-i-move-a-cvs-repository-from-one-server-to-another-and-maintain-history1How do I move a CVS repository from one server to another and maintain history?Keith Twombley2008-10-22T19:43:54Z2008-11-06T23:30:14Z
<p>I have a CVS repository on my local workstation. I've demonstrated to my employer that version control is a great idea. Alright! So now I want to migrate my CVS history from my local workstation onto a real server.</p>
<p>I have installed CVS on the server and it is working.</p>
<p>Now, can I just move my repository files? Or do I have to do some sort of import command?</p>
<p>I know I could just check the current codebase into the new CVS server, but that'd lose the history, right?</p>
http://stackoverflow.com/questions/243586/tortoise-svn-marks-files-as-different-between-branches-but-no-differences-exist/243595#2435952Answer by Keith Twombley for Tortoise SVN marks files as different between branches but no differences existKeith Twombley2008-10-28T14:45:34Z2008-10-28T14:45:34Z<p>A common culprit is line endings. Are some of your development machines windows and the others *nix-based? The different line endings, if not accounted for or translated, will cause files to not exactly match.</p>
http://stackoverflow.com/questions/231029/how-do-i-include-a-php-variable-within-the-value-element-of-an-html-input-tag/231141#2311410Answer by Keith Twombley for How do I include a php variable within the value element of an html input tag?Keith Twombley2008-10-23T19:36:07Z2008-10-23T19:36:07Z<p>If you find yourself doing this often you may want to look into a templating system for PHP, such as <a href="http://www.smarty.net/" rel="nofollow">Smarty</a>.</p>
http://stackoverflow.com/questions/222606/detecting-keyboard-mouse-activity-in-linux/222624#2226240Answer by Keith Twombley for detecting keyboard, mouse activity in linuxKeith Twombley2008-10-21T16:54:21Z2008-10-21T16:54:21Z<p>try executing who -u -H at the command line. It'll tell you who's logged in and how long they've been idle. At least users logged in to a terminal; I don't think it works at all in X. Anyhow, with this information you can tell who's idle or not and take actions appropriately.</p>
<p>If you're in X you could create a script to run as a screen saver or something like that.</p>
http://stackoverflow.com/questions/216030/what-is-the-best-method-of-getting-the-key-of-the-last-added-array-item-in-php/216096#2160960Answer by Keith Twombley for What is the best method of getting the key of the last added array item in PHP?Keith Twombley2008-10-19T06:12:49Z2008-10-19T06:12:49Z<p>If you can guarantee that your array won't have any non-numerical keys and that you aren't going to be deleting any keys, then the last element added to your array's key will be</p>
<pre><code>$last_added = count($array)-1;
</code></pre>
<p>If you really need to keep track of the latest added key, you may want to come up with a scheme to come up with your own keys that are guaranteed to be unique. this way you'll always have the latest added key since you generated it.</p>
<pre><code>$array = array('test1', 'test2', 'test3', 'test4', 'test5');
// do a bunch of other stuff, probably a loop
$new_key = generate_key();
$array[$new_key] = 'test6';
echo $new_key; // gives me blahblahfoobar123
</code></pre>
http://stackoverflow.com/questions/214143/what-puts-less-load-on-a-php-server-simplexml-or-jsondecode/214328#2143282Answer by Keith Twombley for What puts less load on a PHP server: SimpleXML or json_decode?Keith Twombley2008-10-18T01:11:59Z2008-10-18T01:11:59Z<p>There's only one way to determine which is going to be easier on your server in your application with your data.</p>
<p>Test it!</p>
<p>I'd generate some data that looks similar to what you'll be translating and use one of the unit testing frameworks to decode it a few thousand times using each of SimpleXML and json_decode, enough to get meaningful results. And then you can tell us what worked.</p>
<p>Sorry this isn't exactly the sort of answer you were looking for, but in reality, it's the only right way to do it. Good luck!</p>
http://stackoverflow.com/questions/212534/resetting-height-of-an-html-element-via-css/212582#2125821Answer by Keith Twombley for Resetting height of an HTML element via CSSKeith Twombley2008-10-17T15:11:26Z2008-10-17T15:11:26Z<p>change the height to 'auto' and see if that works for you.</p>
<p>Auto is the default height for elements, it means the browser calculates the height itself.</p>
http://stackoverflow.com/questions/212442/how-to-create-a-for-loop-like-command-in-c/212491#2124912Answer by Keith Twombley for How to create a for loop like command in C++ ?Keith Twombley2008-10-17T14:52:54Z2008-10-17T14:52:54Z<p>in C++ you do that with a regular for-loop.</p>
<pre><code> for(variable; condition; increment) {
//stuff goes here
}
</code></pre>
<p>In your for-loop:
variable is a counting variable like i. You can define the variable right here and initialize it. You often see something like "int i = 0"</p>
<p>condition is some sort of test. In your case you want to check if your counting variable is less than how many times you want the loop to execute. You'd put something like "i < how_many_times_to_loop"</p>
<p>increment is a command to increment the counting variable. In your case you want "i++" which is a short hand way of saying "i = i + 1"</p>
<p>So that gives us:</p>
<pre><code> for(int i = 0; i < how_many_times_to_loop; i++) {
//stuff goes here
}
</code></pre>
http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/210846#210846-10Answer by Keith Twombley for What is an NP-complete problem?Keith Twombley2008-10-17T01:32:12Z2008-10-17T01:55:16Z<p>an NP problem is one where a computer algorithm that verifies a solution can be created in polynomial time.</p>
<p>an NP-Complete problem is NP, but also if you can solve it in polynomial time (called P) then all NP problems are P.</p>
<p>So get crackin'.</p>
http://stackoverflow.com/questions/210080/regex-greedy-issue/210114#2101141Answer by Keith Twombley for Regex greedy issueKeith Twombley2008-10-16T20:15:56Z2008-10-16T20:15:56Z<p>You probably want something like</p>
<p>^(\S+?=)</p>
<p>The caret ^ anchors the regex to the beginning of the string. The ? after the + makes the + non-greedy.</p>
http://stackoverflow.com/questions/200901/when-can-i-delete-a-file-after-using-it-in-response-writefile/201102#2011024Answer by Keith Twombley for When can I delete a file after using it in Response.WriteFile()?Keith Twombley2008-10-14T13:14:15Z2008-10-14T13:14:15Z<p>If you're writing a file to the client with Response.WriteFile(), a call to Response.Flush() will make sure it's been fully output to the client. Once that's done you can delete it off of the webserver.</p>
<p>You may want to come up with a more robust system if the file is mission-critical. Say, a client-side script to validate that the file was received OK and then alerts the webserver that the file can be deleted.</p>
http://stackoverflow.com/questions/197041/whats-the-best-scheme-for-eliminating-blog-or-comment-spam/198075#1980751Answer by Keith Twombley for What's the best scheme for eliminating blog- or comment-spamKeith Twombley2008-10-13T15:55:28Z2008-10-13T15:55:28Z<p>The best advice with CAPTCHAs is to either roll your own, or just fake it.</p>
<p>Here's a good article on CAPTCHAs:</p>
<p><a href="http://www.codinghorror.com/blog/archives/001067.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001067.html</a></p>
<p>Now scroll down to the bottom. It asks you to enter a word. No fancy generation or obfuscation. That CAPTCHA works because coding horror is so small potatoes compared to the big guys. Your site is likely to be small potatoes too.</p>
<p>If you're working with software that already includes a CAPTCHA, then you can change how that CAPTCHA works. For example, the phpbb3 discussion forum has a CAPTCHA for registering. So you can change the text on the page to something like "Ignore the picture. Please enter the color of the sky in the box", and then replace the verification code to just check for "blue". This has the added benefit that any bot that happens along will try to solve the CAPTCHA and fail the authentication.</p>
http://stackoverflow.com/questions/197957/forms-and-no-cookies-elegant-way-to-submit-forms/197996#1979962Answer by Keith Twombley for Forms and no Cookies - elegant way to submit formsKeith Twombley2008-10-13T15:30:41Z2008-10-13T15:37:07Z<p>When you say putting it into a hidden field doesn't work, can you elaborate on what doesn't work about it?</p>
<p>When faced with a situation where every (or a lot) of form submits need some state information to be passed, an input type=hidden field is the canonical way to do it.</p>
<p>Just guessing in the dark here. Are you doing something like an input with style="display:none" or something like that? If so, change it to a bona fide <input type="hidden"> tag. A lot of browsers will not submit form fields which are hidden via display:none.</p>
<p>Another stab in the dark: Are you adding the hidden form to the page via javascript? Like a foo.innerHTML call? Again, some browsers won't properly handle form fields added to a page that way. You either need to have the sessionid in there from the start, or rewrite your ajax method which handles the data returned from the server to insert the input field via dom manipulation rather than innerHTML.</p>
http://stackoverflow.com/questions/196029/how-can-i-split-a-php-script-that-takes-a-long-time-to-run-into-smaller-chunks/196288#1962880Answer by Keith Twombley for How can I split a PHP script that takes a long time to run into smaller chunks?Keith Twombley2008-10-12T23:27:50Z2008-10-12T23:27:50Z<p>You might also want to try optimizing your script. Are you doing too much in your loop? Could you move something out of the loop? What are you using to get the list of files? Is there a more light-weight way to do that? These are the sort of questions you can ask yourself about your script so that instead of splitting it up you might get the whole shebang to run in time.</p>
<p>Failing that, I agree with Owen's suggestion of using AJAX. When the user kicks the process off you'll output a page as normal and then send back requests to process files out of band and then write status updates to the page as they come in.</p>
http://stackoverflow.com/questions/227262/how-do-i-move-a-cvs-repository-from-one-server-to-another-and-maintain-history/227268#227268Comment by Keith Twombley on How do I move a CVS repository from one server to another and maintain history?Keith Twombley2008-10-22T19:49:44Z2008-10-22T19:49:44ZThanks. Searching for cvs migration wasn't nearly as helpful.http://stackoverflow.com/questions/212442/how-to-create-a-for-loop-like-command-in-cComment by Keith Twombley on How to create a for loop like command in C++ ?Keith Twombley2008-10-17T15:01:58Z2008-10-17T15:01:58ZI think the question asker is coming from another language where a for() construct is like a for-each() type of construct, so this is just a simple question of syntax.http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem/210846#210846Comment by Keith Twombley on What is an NP-complete problem?Keith Twombley2008-10-17T01:58:50Z2008-10-17T01:58:50Zyou're right. thanks. fixed it.http://stackoverflow.com/questions/207002/how-to-use-a-switch-case-or-in-php/207006#207006Comment by Keith Twombley on How to use a switch case 'or' in PHP?Keith Twombley2008-10-16T03:51:29Z2008-10-16T03:51:29ZThe only thing I'd change is to add a comment after case 1 indicating that falling through is what you intended.http://stackoverflow.com/questions/207002/how-to-use-a-switch-case-or-in-php/207135#207135Comment by Keith Twombley on How to use a switch case 'or' in PHP?Keith Twombley2008-10-16T03:50:43Z2008-10-16T03:50:43ZSince you asked the question you can mark a reply as the best answer to help future readers.http://stackoverflow.com/questions/203336/creating-the-singleton-design-pattern-in-php5/203359#203359Comment by Keith Twombley on Creating the Singleton design pattern in PHP5Keith Twombley2008-10-15T01:02:35Z2008-10-15T01:02:35Zto compare the two instances you should use === rather than ==. == will return true if $fact1 and $fact2 are both of the same class, but === only returns true if they are both the same instance of the same object.