User Click Upvote - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:04:08Z http://stackoverflow.com/feeds/user/49153 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809976/how-to-get-the-number-of-results-found-for-a-keyword-in-google 2 How to get the number of results found for a keyword in google Click Upvote 2009-11-27T17:52:47Z 2009-11-27T18:15:51Z <p>I need to supply a keyword like "blue metal kettle" (with/without quotes) and get only the number of results found for this search. If I search without quotes right now, I get:</p> <pre><code> Results 1 - 10 of about 1,040,000 for blue metal kettle. (0.19 seconds) </code></pre> <p>Here '1,040,000' is the number I want. Is there any API function to do this, or I must extract this number through the HTML? What's the best way to do this?</p> http://stackoverflow.com/questions/712231/best-way-to-get-a-list-of-countries-in-java 3 Best way to get a list of countries in Java Click Upvote 2009-04-03T01:18:53Z 2009-11-24T03:27:24Z <p>Other than <code>Locale.getISOCountries()</code> that is, because I'm already <a href="http://stackoverflow.com/questions/712230/weird-error-with-locale-getisocountries">getting some strange errors with that</a>. What else is the best way to get the 2-letter country codes as well as the full country name?</p> http://stackoverflow.com/questions/1775104/how-to-speed-up-programming-work-development-time/1775116#1775116 1 Answer by Click Upvote for How to speed up programming work / development time? Click Upvote 2009-11-21T10:25:03Z 2009-11-21T10:25:03Z <ul> <li>Practice touch typing, learn to type faster.</li> <li>Get a good IDE with autocomplete features, that can save a lot of programming time.</li> <li>Design your system first before you start coding, then you don't have to think about the design and just have to implement it.</li> </ul> http://stackoverflow.com/questions/1097546/generating-a-new-ip-address 0 Generating a new IP address Click Upvote 2009-07-08T11:44:27Z 2009-11-20T18:56:40Z <p>I'm building a service which will need to access a certain Big Corp API which is limited to 5000 calls/24 hours from one ip address.</p> <p>However I may have more than 5k customers who could need to access this api within a given day.</p> <p>What is a way to overcome this? Can I use proxies or is there another way?</p> http://stackoverflow.com/questions/1761662/easiest-way-to-remove-all-whitespace-from-a-code-file 2 Easiest way to remove all whitespace from a code file? Click Upvote 2009-11-19T08:05:29Z 2009-11-19T11:09:48Z <p>So I'm participating in one of the <a href="http://codegolf.com" rel="nofollow">Code Golf</a> competitions where the smaller your file size is, the better.</p> <p>Rather than manually removing all whitespace etc, I'm looking for a program or website which will take a file, remove all whitespace (including new lines) and return a compact version of the file. any ideas?</p> http://stackoverflow.com/questions/1762191/how-to-get-the-length-of-longest-string-in-an-array 1 How to get the length of longest string in an array Click Upvote 2009-11-19T10:03:32Z 2009-11-19T10:27:28Z <p>Say I have this array:</p> <pre><code>$array[] = 'foo'; $array[] = 'apple'; $array[] = '1234567890; </code></pre> <p>I want to get the length of the longest string in this array. In this case the longest string is <code>1234567890</code> and its length is 10.</p> <p>Is this possible without looping through the array and checking each element?</p> http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming 6 Does anyone have any ideas for an assignment in game programming? Click Upvote 2009-11-18T04:11:41Z 2009-11-19T01:48:22Z <p>Much like the author of <a href="http://stackoverflow.com/questions/1663792/give-me-an-assignment-in-c">Give me an assignment in C</a>, I'm looking to learn game programming and I learn best by doing, but I don't have any good ideas for games to program which will teach me the skills and for whom the graphics are freely available.</p> <p>I have written a basic pacman game but apart from that I haven't done any other games. </p> <p>Ideally I would like 2-3 or more assignments, each more advanced than the previous one, so perhaps the first game would be something very basic, the next would be more advanced, and the 3rd even more advanced, and so on.</p> <p>I want to use Java applets as the platform for the games, but that shouldn't matter too much, most games which can be written in C/flash etc should also be translatable to java.</p> <p>Thanks</p> http://stackoverflow.com/questions/737385/easiest-form-validation-library-for-php 1 Easiest Form validation library for PHP? Click Upvote 2009-04-10T11:39:47Z 2009-11-17T17:37:00Z <p>I need a simple php library which can be used to easily pass rules and field names to, and then validation could be easily performed. There should also be an easy way to retrieve the errors.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1740465/how-to-create-a-side-scroller-game-in-java 3 How to create a side scroller game in java Click Upvote 2009-11-16T06:42:27Z 2009-11-17T01:25:14Z <p>I want to create a game where the user can go to the right-most part of the screen, and if they go any further, they will slide into a new view. </p> <p>So basically, if they have 3 monsters chasing them on screen # 1, and they go all the way to the right and keep going, they'll enter screen # 2 where there will be 5 new monsters and a new terrain.</p> <p>When the game starts, should i initalize all the NPC monsters and terrain features for every screen right away, or should i initialize each screen as they enter it? And what's the best format / way for storing what goes into each screen?</p> http://stackoverflow.com/questions/1725104/reg-exp-wanted-for-replacing-all-non-alphanumeric-chars-with-underscores 0 Reg exp wanted for replacing all non-alphanumeric chars with underscores Click Upvote 2009-11-12T20:23:26Z 2009-11-12T20:28:30Z <p>I want a reg exp for generating SEO-friendly URLs, so things like:</p> <pre><code>My product name </code></pre> <p>becomes</p> <p><code>My_product_name</code></p> <pre><code>This is a long,long,long!!sentence </code></pre> <p>becomes</p> <pre><code>This_is_a_long_long_long_sentence </code></pre> <p>Basically so all non-alphanumeric chars are removed and replaced with underscores.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1713051/how-many-columns-can-you-have-maximum-in-a-mysql-table -1 How many columns can you have (maximum) in a MySQL table? Click Upvote 2009-11-11T04:39:52Z 2009-11-11T04:44:54Z <p>What's the max number of columns a mysql table can have? </p> http://stackoverflow.com/questions/1711453/validating-a-url-in-php 0 Validating a URL in PHP Click Upvote 2009-11-10T21:45:38Z 2009-11-10T21:46:55Z <p>I need a basic regular expression for validating a url, such that:</p> <ul> <li>Both http:// and <a href="http://www" rel="nofollow">http://www</a>. are allowed (and the same thing with https:// and <a href="https://www" rel="nofollow">https://www</a>.).</li> <li>All common tld like .com, .net. .org, .cc, .my, etc are allowed.</li> <li>Things like <a href="http://site.com/dir/dir2/page.html" rel="nofollow">http://site.com/dir/dir2/page.html</a> etc are allowed</li> <li>Only characters allowed in a url are allowed (such as alphanumeric chars, ?_-.&amp; etc)</li> </ul> <p>Basically something which will check if http:// or https:// is contained, and that at least one tld such as .com, .net, .[something] is contained.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1709740/javascript-regexp-question 1 Javascript regexp question Click Upvote 2009-11-10T17:32:38Z 2009-11-10T20:06:58Z <p>I have a regexp which checks if a value has at least 10 digits:</p> <pre><code>if (foo.match(/^\d{10,}$/)) { // At least 10 digits } </code></pre> <p>However I want to divide the validation in 2 steps, so first i check if <code>foo</code> has got only numbers, and no other characters, and then i check if its got at least 10 digits.</p> <p>I can check the 10 digits part using <code>foo.length</code>, but how do i change the regexp above to check if foo has got only numbers. Any ideas?</p> http://stackoverflow.com/questions/1705288/checking-if-a-form-field-is-numeric-while-using-jquery-to-get-its-value 0 Checking if a form field is numeric while using Jquery to get its value Click Upvote 2009-11-10T02:26:58Z 2009-11-10T02:33:54Z <p>Basically, I'm doing this:</p> <pre><code>var phone = $("#phone").val(); </code></pre> <p>Then I want to check if:</p> <p>1) Phone contains only numbers</p> <p>2) Phone contains at least 10 digits</p> <p>But the problem is, from my experience, using <code>$("something").val()</code> returns it as a string so <code>isNaN()</code> fails. But I don't want use <code>parseInt()</code> either since it will change strings into numbers as well and then <code>isNaN()</code> will always pass.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/818937/how-can-i-get-addicted-to-programming 87 How can I get addicted to programming? Click Upvote 2009-05-04T06:02:10Z 2009-11-08T19:22:03Z <p>This is a sincere question, please hear me out before downvoting or hitting close.</p> <p>I noticed last night after having spent hours away playing a new computer game that I had lost all track of time while I was playing it. Someone would have to come and physically drag me away while I was playing to break my concentration. Then, when I woke up the next day, all I could think of was playing again.</p> <p>Is there any possible way to get the same motivation and interest in programming, where you spend hours away and all you can think of is getting back to it? My life would be so much better if I could get to that point. For one thing, I would be able to finish all my projects on time rather than having them delayed <em>every single time</em>. </p> <p>Its not about enjoyment, when I'm coding I enjoy myself just as much as I was when playing the game. But during the day when I think about working, I just immediately make myself think of something else to put off working for a little longer. </p> <p>Do you notice something like this as well? How do you get yourself to look forward to programming? And if you are close to the stage where you'd call yourself addicted or even just get things done on time, please share with me how you got there!</p> <p>P.S if it helps, I'm a freelancer and work from home.</p> http://stackoverflow.com/questions/407989/calculating-distance-between-zip-codes-in-php 6 Calculating distance between zip codes in PHP Click Upvote 2009-01-02T20:52:57Z 2009-11-08T13:37:05Z <p>I grabbed a database of the zip codes and their langitudes/latitudes, etc from this <a href="http://www.populardata.com/downloads.html" rel="nofollow">This page</a>. It has got the following fields:</p> <blockquote> <p>ZIP, LATITUDE, LONGITUDE, CITY, STATE, COUNTY, ZIP_CLASS</p> </blockquote> <p>The data was in a text file but I inserted it into a MySQL table. My question now is, how can i utilise the fields above to calculate the distance between two zip codes that a user can enter on the website? Working code in PHP will be appreciated</p> http://stackoverflow.com/questions/441018/replacing-spaces-with-underscores-in-javascript 0 Replacing spaces with underscores in JavaScript? Click Upvote 2009-01-13T22:07:30Z 2009-11-06T15:38:35Z <p>I'm trying to use this code to replace spaces with _, it works for the first space in the string but all the other instances of spaces remain unchanged. Anybody know why?</p> <pre><code>function updateKey() { var key=$("#title").val(); key=key.replace(" ","_"); $("#url_key").val(key); } </code></pre> http://stackoverflow.com/questions/1667307/preventing-users-from-using-back-button-with-javascript 2 Preventing users from using Back button with Javascript [closed] Click Upvote 2009-11-03T13:21:19Z 2009-11-05T09:55:14Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/54539/prevent-use-of-the-back-button-in-ie">Prevent Use of the Back Button (in IE)</a><br> <a href="http://stackoverflow.com/questions/87422/disabling-back-button-on-the-browser">Disabling Back button on the browser</a> </p> </blockquote> <p>Is there a way to prevent users from clicking Back button on the browser and going back the history using Javascript?</p> http://stackoverflow.com/questions/1658824/is-it-possible-to-use-in-php-switch 5 Is it possible to use || in PHP switch? Click Upvote 2009-11-01T23:52:03Z 2009-11-02T01:26:05Z <pre><code>switch ($foo) { case 3 || 5: bar(); break; case 2: apple(); break; } </code></pre> <p>In the above code, is the first switch statement valid? I want it to call the function <code>bar()</code> if the value of <code>$foo</code> is either 3 or 5</p> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423837#423837 270 Answer by Click Upvote for What's your favorite "programmer ignorance" pet peeve? Click Upvote 2009-01-08T10:45:56Z 2009-11-01T23:57:19Z <p>Mine is when programmers think only about the code and not about the users. I put usability first, and try my best to make everything as easy and intuitive to use as possible.</p> <p>Unfortunately, some programmers don't do that; e.g., they use non-descriptive labels for fields (or, don't use labels at all), don't plan and think about the interface layout, and the error messages explain things in a technical manner rather than telling the user what they need to do.</p> <p>If more programmers read books on usability, marketing, and other such concepts (like I do), the software world would be a much better place.</p> http://stackoverflow.com/questions/1594419/how-to-create-ads-using-google-adwords-api 0 How to create ads using google adwords API? Click Upvote 2009-10-20T12:56:33Z 2009-10-30T11:38:19Z <p>Basically, I have a list of keywords, such as:</p> <pre><code>- red balloons - free red balloons - buy red balloons - blue balloons - .... </code></pre> <p>for each keyword, I have a list of 3-4 ads, each ad consisting of a title, line 1, line 2, and a url, e.g:</p> <blockquote> <p>Title: Free red balloons! </p> <p>Line 1: Buy free red balloons right now! </p> <p>Line 2: No hidden fees! </p> <p>Url: <a href="http://example.com" rel="nofollow">http://example.com</a></p> </blockquote> <p>I have 3-4 such ads for every keyword.</p> <p>Using the API, I want to:</p> <pre><code>1) Create an adgroup for every keyword 2) Under the adgroup, upload all the ads for that particular keyword. So all the ads for `free red balloons` would go under that keyword's adgroup. </code></pre> <p>I'm looking for some general pointers/links to API pages for the methods which I'll need to use to accomplish this. Specifically I'm using PHP and the Apility library, but non-php specific info will also be very much welcome.</p> <p>Thanks.</p> http://stackoverflow.com/questions/834303/php-startswith-and-endswith-functions 0 PHP startsWith() and endsWith() functions Click Upvote 2009-05-07T12:14:27Z 2009-10-30T00:17:34Z <p>I need two functions that would take a string and return if it starts with the specified character/string or ends with it.</p> <p>For example:</p> <pre><code>$str='|apples}'; echo startsWith($str,'|'); //Returns true echo endsWith($str,'}'); //Returns true </code></pre> http://stackoverflow.com/questions/408929/what-is-the-best-free-ide-for-java-programming 12 What is the best *free* IDE for Java programming? Click Upvote 2009-01-03T11:17:18Z 2009-10-29T22:40:51Z <p>There are two <strong>free</strong> IDEs for Java: <strong>Netbeans</strong> and <strong>Eclipse</strong>. </p> <p>Netbeans seems to have better auto-complete support and compile/debugging support. However, it lacks support for auto-completing variable/method names, as well as word-wrap support.</p> <p>What are the Pros &amp; Cons of Netbeans over Eclipse, and vice versa?</p> http://stackoverflow.com/questions/1617157/how-to-get-the-first-item-from-an-associative-php-array 1 How to get the first item from an associative PHP array? Click Upvote 2009-10-24T06:21:05Z 2009-10-24T07:17:16Z <p>If I had an array like:</p> <pre><code>$array['foo'] = 400; $array['bar'] = 'xyz'; </code></pre> <p>And I wanted to get the first item out of that array without knowing the key for it, how would I do that? Is there a function for this?</p> http://stackoverflow.com/questions/1594419/how-to-create-ads-using-google-adwords-api/1614418#1614418 1 Answer by Click Upvote for How to create ads using google adwords API? Click Upvote 2009-10-23T15:59:31Z 2009-10-23T15:59:31Z <p><a href="http://code.google.com/apis/adwords/v2009/docs/reference/CampaignService.html" rel="nofollow">CampaignService</a> </p> <p><a href="http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupService.html" rel="nofollow">AdGroupService</a> </p> <p><a href="http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupAdService.html" rel="nofollow">AdGroupAdServie</a></p> http://stackoverflow.com/questions/1595423/how-to-compare-2-strings-alphabetically-in-php 0 How to compare 2 strings alphabetically in PHP Click Upvote 2009-10-20T15:21:05Z 2009-10-20T15:53:14Z <p>What the title says. Specifically if I have</p> <pre><code>$array1['name'] = 'zoo'; $array2['name'] = 'fox'; </code></pre> <p>How can I determine that alphabetically <code>$array2</code>'s name should come above <code>$array1</code>'s?</p> http://stackoverflow.com/questions/1583792/value-as-the-key 0 Value as the key Click Upvote 2009-10-18T02:02:09Z 2009-10-19T18:47:27Z <p>I have an array like this:</p> <pre><code>$options[0] = 1; $options[1] = 2; $options[2] = 3; $options[3] = 'something'; </code></pre> <p>How can I have the value of each array element put as the key, so the array looks like this:</p> <pre><code>$options[1] = 1; $options[2] = 2; $options[3] = 3; $options['something'] = 'something'; </code></pre> <p>Is there a built in function for this?</p> http://stackoverflow.com/questions/1587375/what-are-some-quick-tips-for-increasing-jquery-performance/1587393#1587393 7 Answer by Click Upvote for What are some quick tips for increasing jQuery performance? Click Upvote 2009-10-19T07:39:46Z 2009-10-19T07:39:46Z <p>Rather than doing:</p> <pre><code>$("#foo").addClass('test'); $("#foo").removeClass("bar"); $("#foo").slideUp('slow'); </code></pre> <p>you can do:</p> <pre><code>$("#foo").addClass('test').removeClass('bar').slideUp('slow'); </code></pre> http://stackoverflow.com/questions/1581401/how-to-generate-a-range-of-numbers-in-php-with-increment-of-0-25 1 How to generate a range of numbers in PHP with increment of 0.25? Click Upvote 2009-10-17T04:27:49Z 2009-10-17T14:24:26Z <p>I want to generate a list of numbers with a <code>0.25</code> difference between them, e.g</p> <pre><code>0 0.25 0.50 0.75 1 1.25 ..... 9.75 10 </code></pre> <p>How can this be done?</p> http://stackoverflow.com/questions/722926/can-php-be-used-without-for-variables 1 Can PHP be used without $ for variables? Click Upvote 2009-04-06T19:55:15Z 2009-10-16T07:07:53Z <p>Is it possible to name variables in a Java-like manner in PHP, such as by removing the need for a <code>$</code> sign each time? If so, how can I enable the setting which does this?</p> http://stackoverflow.com/questions/1809976/how-to-get-the-number-of-results-found-for-a-keyword-in-google/1810013#1810013 Comment by Click Upvote on How to get the number of results found for a keyword in google Click Upvote 2009-11-27T19:02:13Z 2009-11-27T19:02:13Z this answer is inaccurate since google does support a new api called ajax search api now http://stackoverflow.com/questions/1809976/how-to-get-the-number-of-results-found-for-a-keyword-in-google Comment by Click Upvote on How to get the number of results found for a keyword in google Click Upvote 2009-11-27T18:36:35Z 2009-11-27T18:36:35Z @pop, you can help with that by upvoting :p lol http://stackoverflow.com/questions/1809976/how-to-get-the-number-of-results-found-for-a-keyword-in-google/1810068#1810068 Comment by Click Upvote on How to get the number of results found for a keyword in google Click Upvote 2009-11-27T18:34:31Z 2009-11-27T18:34:31Z thanks, the ajax api can actually also be called thru php http://stackoverflow.com/questions/1772340/what-is-the-worst-programming-job-you-ever-had-and-why/1773497#1773497 Comment by Click Upvote on What is the worst programming job you ever had and why? Click Upvote 2009-11-21T16:27:27Z 2009-11-21T16:27:27Z He did have a point about the computer thing though IMO. You should've waited until he was back to boot his machine. He could've had personal stuff, porn, etc on his computer that he didn't want employees to see :p http://stackoverflow.com/questions/1762191/how-to-get-the-length-of-longest-string-in-an-array/1762216#1762216 Comment by Click Upvote on How to get the length of longest string in an array Click Upvote 2009-11-19T11:43:27Z 2009-11-19T11:43:27Z strange!! that code was genius http://stackoverflow.com/questions/1762191/how-to-get-the-length-of-longest-string-in-an-array/1762216#1762216 Comment by Click Upvote on How to get the length of longest string in an array Click Upvote 2009-11-19T10:18:00Z 2009-11-19T10:18:00Z Did anyone tell you you're a genius??? http://stackoverflow.com/questions/1761662/easiest-way-to-remove-all-whitespace-from-a-code-file/1761684#1761684 Comment by Click Upvote on Easiest way to remove all whitespace from a code file? Click Upvote 2009-11-19T08:12:53Z 2009-11-19T08:12:53Z Fabulous, the online tool works great http://stackoverflow.com/questions/1761662/easiest-way-to-remove-all-whitespace-from-a-code-file Comment by Click Upvote on Easiest way to remove all whitespace from a code file? Click Upvote 2009-11-19T08:10:26Z 2009-11-19T08:10:26Z I'm using PHP and using windows for development, i want it to remove whitepsace as well as newlines http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming/1760407#1760407 Comment by Click Upvote on Does anyone have any ideas for an assignment in game programming? Click Upvote 2009-11-19T08:08:28Z 2009-11-19T08:08:28Z can you explain, what does this inventory engine do? http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming/1754512#1754512 Comment by Click Upvote on Does anyone have any ideas for an assignment in game programming? Click Upvote 2009-11-18T17:55:39Z 2009-11-18T17:55:39Z Can you eleborate on using decoys? http://stackoverflow.com/questions/1753573/does-anyone-have-any-ideas-for-an-assignment-in-game-programming/1753592#1753592 Comment by Click Upvote on Does anyone have any ideas for an assignment in game programming? Click Upvote 2009-11-18T04:27:26Z 2009-11-18T04:27:26Z Multiplayer pacman is definitely a good idea http://stackoverflow.com/questions/1725104/reg-exp-wanted-for-replacing-all-non-alphanumeric-chars-with-underscores/1725119#1725119 Comment by Click Upvote on Reg exp wanted for replacing all non-alphanumeric chars with underscores Click Upvote 2009-11-12T21:14:51Z 2009-11-12T21:14:51Z Any examples of non ascii characters? http://stackoverflow.com/questions/1709740/javascript-regexp-question/1709759#1709759 Comment by Click Upvote on Javascript regexp question Click Upvote 2009-11-10T17:51:03Z 2009-11-10T17:51:03Z Exactly what mobrule said http://stackoverflow.com/questions/1709740/javascript-regexp-question/1709755#1709755 Comment by Click Upvote on Javascript regexp question Click Upvote 2009-11-10T17:48:50Z 2009-11-10T17:48:50Z I don't want to check the length first, i want to check if its numeric or not first. Please read the question before answering http://stackoverflow.com/questions/1705288/checking-if-a-form-field-is-numeric-while-using-jquery-to-get-its-value/1705292#1705292 Comment by Click Upvote on Checking if a form field is numeric while using Jquery to get its value Click Upvote 2009-11-10T02:38:36Z 2009-11-10T02:38:36Z Thanks !poskigfo;lksgf;lkg;lf'dkg;l;skfd grable to make 15 chars