User gahooa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:24:12Z http://stackoverflow.com/feeds/user/64004 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1950182/darwin-how-to-kill-parent-process-without-killing-child/1950202#1950202 3 Answer by gahooa for Darwin: how to kill parent process without killing child? gahooa 2009-12-23T01:22:10Z 2009-12-23T01:22:10Z <p>As NSD asked, it really depends on how it is spawned. If you are using a shell script, for example, you can use the <code>nohup</code> command to run the child through.</p> <p>If you are using <code>fork/exec</code>, then it is a little more complicated, but no too much so. </p> <p>From <a href="http://code.activestate.com/recipes/66012/" rel="nofollow">http://code.activestate.com/recipes/66012/</a></p> <pre><code>import sys, os def main(): """ A demo daemon main routine, write a datestamp to /tmp/daemon-log every 10 seconds. """ import time f = open("/tmp/daemon-log", "w") while 1: f.write('%s\n' % time.ctime(time.time())) f.flush() time.sleep(10) if __name__ == "__main__": # do the UNIX double-fork magic, see Stevens' "Advanced # Programming in the UNIX Environment" for details (ISBN 0201563177) try: pid = os.fork() if pid &gt; 0: # exit first parent sys.exit(0) except OSError, e: print &gt;&gt;sys.stderr, "fork #1 failed: %d (%s)" % (e.errno, e.strerror) sys.exit(1) # decouple from parent environment os.chdir("/") os.setsid() os.umask(0) # do second fork try: pid = os.fork() if pid &gt; 0: # exit from second parent, print eventual PID before print "Daemon PID %d" % pid sys.exit(0) except OSError, e: print &gt;&gt;sys.stderr, "fork #2 failed: %d (%s)" % (e.errno, e.strerror) sys.exit(1) # start the daemon main loop main() </code></pre> <p>This is one of the best books ever written. It covers these topics in great and extensive detail.</p> <p><strong>Advanced Programming in the UNIX Environment, Second Edition (Addison-Wesley Professional Computing Series) (Paperback)</strong></p> <p>ISBN-10: 0321525949<br /> ISBN-13: 978-0321525949</p> <p>5 star amazon reviews (I'd give it 6).</p> http://stackoverflow.com/questions/1943863/whats-the-difference-between-b-and-b-in-this-place-thanks/1943868#1943868 -1 Answer by gahooa for What's the difference between _b and b in this place,thanks gahooa 2009-12-22T02:31:46Z 2009-12-22T02:31:46Z <p>The class object <code>a</code> has an attribute <code>_b</code> which is found when asking for <code>self._b</code>. The same class object <code>a</code> has no attribute <code>b</code>.</p> <p><code>_b</code> and <code>b</code> are as different as <code>beehive</code> and <code>zulu</code>. </p> <p>You will get a parameter error when calling <code>self._b</code> because Python will implicitly pass <code>self</code> as the first argument to a bound method. The signature should be:</p> <pre><code>def _b(self): print('bbbb') </code></pre> http://stackoverflow.com/questions/1943285/php-ilooping-an-arrays-values-through-a-larger-array/1943302#1943302 0 Answer by gahooa for PHP-ILooping an arrays values through a larger array gahooa 2009-12-21T23:28:10Z 2009-12-21T23:28:10Z <p>Essentially, you want to loop over and over the small array, adding each element to the new array until it has reached the desired size. </p> <p>Consider this:</p> <pre><code>$max = 8; $Orig_Array = array('a', 'b', 'c'); $Next_Array = array(); while True { foreach($Orig_Array as $v) { $Next_Array[] = $v; if(count($Next_Array) &gt;= $max) break 2; } } </code></pre> http://stackoverflow.com/questions/1943261/jquery-plugin-question-can-i-modify-a-core-method/1943282#1943282 1 Answer by gahooa for jQuery plugin question - can I modify a core method? gahooa 2009-12-21T23:24:19Z 2009-12-21T23:24:19Z <p>Essentially, you would need to replace the jQuery method. Extreme caution advised, as you could break many things that rely on this method. Best off to choose a different name.</p> <p>Consider this concept:</p> <pre><code>jQuery.fn.css_orig = jQuery.fn.css jQuery.fn.css = function(arg1, arg2) { if(arg1 == 'what-I-want') { return my_thing; } else { return this.css_orig(arg1, arg2); } }; </code></pre> <p>In the case of <code>.css</code>, I think you could (if you were <strong>very careful</strong>) retain 100% of the functionality of the <code>.css</code> method, while adding your functionality on top. </p> <p>Cool idea, none the less!</p> http://stackoverflow.com/questions/1943246/do-i-need-an-orm-for-simple-related-queries-in-php-ci/1943270#1943270 4 Answer by gahooa for Do I need an ORM for simple related queries in PHP/CI? gahooa 2009-12-21T23:21:09Z 2009-12-21T23:21:09Z <p>I'm not sure what constraints your framework places on your ability to write SQL, but <strong>no, you don't need an ORM.</strong></p> <p>SQL is a very simple language to write powerful queries in. For a simple application like you are talking about, all the more so.</p> <p>With frameworks, MVC, ORM, ABC, FBI, etc... you can end up spending more time satisfying the framework dependencies than it saves you, ending up with a complicated mess, when the intent was to save time and simplify.</p> <p>Don't forget how competent a set of UI scripts and a few static classes can be in PHP.</p> http://stackoverflow.com/questions/1937030/how-many-files-do-search-engines-index-per-directory/1937041#1937041 0 Answer by gahooa for How many files do search engines index per directory gahooa 2009-12-20T21:02:49Z 2009-12-20T21:02:49Z <p>May I suggest you simply use:</p> <p><a href="http://mydomain.com/username/category/item" rel="nofollow">http://mydomain.com/username/category/item</a></p> <p>Ensure that all of your links are "Reachable". I was recently involved in a site with this type of structure. The problem was, the Search Engines did not know about all of the links. So we added a page per user, which linked to each category page, which listed links to all the items.</p> <p>Traffic doubled within 3 months.</p> http://stackoverflow.com/questions/1936846/how-to-call-a-php-function-from-javascript-or-if-that-cant-be-done-some-directi/1936867#1936867 7 Answer by gahooa for how to call a php function from javascript or if that can't be done, some direction on what I should do gahooa 2009-12-20T20:15:36Z 2009-12-20T20:21:34Z <p>You simply need to make a behind-the-scenes request using AJAX. For example, <code>$.post</code> in jQuery. </p> <ol> <li>Click Login</li> <li>Get username/password from dialog. </li> <li><code>$.post()</code> it to the <code>/login.php</code> file that contains the login code</li> <li>Process this request in PHP. </li> <li>Output one thing if the login is succesful, or another if it fails.</li> <li>Recieve this output in the callback function of <code>$.post</code></li> <li>Either call <code>window.location = '/nextpage.php'</code> or display an error message.</li> </ol> <p>As per <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.post</a>, you have 4 arguments to <code>$.post</code>:</p> <pre><code>$.post( url, [data], [callback], [type] ) </code></pre> <p>so that</p> <pre><code>function onLogin(data) { if(data['success']) window.location = 'nextpage.php'; else alert(data['error']); } var u = get_username_from_form(); var p = get_password_from_form(); $.post( '/login.php', {username: u, password: p}, onLogin, 'json' ) </code></pre> <p>and in the file <code>login.php</code>, you would:</p> <pre><code>&lt;?php $username = (isset($_POST['username']) ? $_POST['username'] : ''); $password = (isset($_POST['password']) ? $_POST['password'] : ''); //Assuming you wrote the authenticate() function if(authenticate($username, password)) { echo json_encode(array('success' =&gt; true)); exit; } else { echo json_encode(array('success' =&gt; false, 'message' =&gt; 'Login Failed!')); exit; } </code></pre> http://stackoverflow.com/questions/1931247/can-a-load-balancer-recognize-when-an-asp-net-worker-process-is-restarting-and-di/1931267#1931267 0 Answer by gahooa for Can a load balancer recognize when an ASP.NET worker process is restarting and divert traffic? gahooa 2009-12-18T23:25:52Z 2009-12-18T23:25:52Z <p>We use a Cisco CSS 11501 series load balancer. The <strong>keepalive</strong> "content" we are checking on each server is actually a PHP script.</p> <pre><code>service ac11-192.168.1.11 ip address 192.168.1.11 keepalive type http keepalive method get keepalive uri "/LoadBalancer.php" keepalive hash "b026324c6904b2a9cb4b88d6d61c81d1" active </code></pre> <p>Because it is a dynamic script, we are able to tell it to check various aspects of the server, and return <code>"1"</code> if all is well, or <code>"0"</code> if not all is well.</p> <p>In your case, you may be able to implement a similar check script that will not work if the ASP.NET application worker process is restarting (or down).</p> http://stackoverflow.com/questions/1929339/php-function-to-get-the-date-format/1929425#1929425 0 Answer by gahooa for PHP function to get the date format? gahooa 2009-12-18T16:48:24Z 2009-12-18T16:48:24Z <p>You could use regexp to identifiy specific date formats. You could add to your regexp list until you have 100% coverage.</p> <pre><code>if(preg_match('/^\d{4}\/\d{2}\/\d{2} \d{2}:\d{2}:\d{2}$/', $Date)) $Format = 'Y/m/d H:i:s'; </code></pre> <p>etc...</p> http://stackoverflow.com/questions/1929274/in-python-use-dict-with-keywords-or-anonymous-dictionaries/1929333#1929333 1 Answer by gahooa for In Python, use "dict" with keywords or anonymous dictionaries? gahooa 2009-12-18T16:36:51Z 2009-12-18T16:36:51Z <p>If I have a lot of arguments, sometimes it is nice to omit the quotes on the keys:</p> <pre><code>DoSomething(dict( Name = 'Joe', Age = 20, Gender = 'Male', )) </code></pre> <p>This is a very subjective question, BTW. :)</p> http://stackoverflow.com/questions/1925587/all-rows-after-the-nth-row/1925599#1925599 4 Answer by gahooa for All rows after the nth row? gahooa 2009-12-18T00:47:21Z 2009-12-18T00:47:21Z <pre><code>SELECT * FROM table ORDER BY somecolumn LIMIT 5,1000 </code></pre> <p><a href="http://dev.mysql.com/doc/refman/5.1/en/select.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/select.html</a></p> <pre><code>[LIMIT {[offset,] row_count | row_count OFFSET offset}] </code></pre> http://stackoverflow.com/questions/1911980/most-intuitive-readable-api-language-reference-documentation/1911998#1911998 2 Answer by gahooa for Most intuitive, readable API / language reference documentation gahooa 2009-12-16T03:06:14Z 2009-12-16T03:06:14Z <p>Python has very compact, but amazingly clear documentation: </p> <p><a href="http://docs.python.org/index.html" rel="nofollow">http://docs.python.org/index.html</a></p> http://stackoverflow.com/questions/1911969/most-efficient-way-to-select-records-in-one-database-based-on-result-set-from-tot/1911991#1911991 0 Answer by gahooa for Most efficient way to select records in one database based on result set from totally different database gahooa 2009-12-16T03:04:29Z 2009-12-16T03:04:29Z <p>I'm not quite sure if this is applicable, but in MySQL, I've used the <code>IN</code> operator for pulling significant sets of data (up to thousands) at once.</p> <pre><code>SELECT a,b,c FROM table WHERE id IN (123,234,345,456,...) </code></pre> <p>It can at times really reduce the number of queries that need sent.</p> http://stackoverflow.com/questions/1911753/stuctures-of-complex-and-enterprise-level-applicaitons/1911982#1911982 2 Answer by gahooa for Stuctures of Complex and enterprise level applicaitons gahooa 2009-12-16T03:01:21Z 2009-12-16T03:01:21Z <p>I think one of the best things you can do is dig in and understand, really understand how things work. In the arena of web development, we are typically isolated from the details of TCP, packets, transports, protocols, etc... But sometimes, it is so isolated, that we forget to learn how it works, and as a result, stick ourselves in a little box.</p> <p>I've been programming PHP professionally for nearly 10 years. I've never used an MVC framework. I've always separated user interface from application logic from database access.</p> <p>We don't need a bunch of "patterns". We need true understanding of the problem, and the vision to create an elegant solution, re-using other work as much as possible. </p> <p>So I guess I am suggesting that you switch your focus from trying to make your application fit into a pattern, and re-consider the logic needed to successfully complete your application. Many times, it is very simple, but we tend to over-complicate it.</p> <p>Throw off the handcuffs of MVC and patterns... (and then watch me get downvoted for ranting against the status quo). </p> <p>Good luck with everything. And by the way, you will learn far more about programming in 4 years of <em>doing it</em>, than 4 years of <em>college</em>. Not to say you should or should not go to college, but just be aware that in many cases, you already know more than your professors will about real-world programming.</p> http://stackoverflow.com/questions/1909512/what-is-python-used-for/1909518#1909518 1 Answer by gahooa for What is python used for? gahooa 2009-12-15T18:48:54Z 2009-12-15T18:48:54Z <p><strong>Why Python?</strong><br> May 1st, 2000 by Eric Raymond</p> <p><a href="http://www.linuxjournal.com/article/3882" rel="nofollow">http://www.linuxjournal.com/article/3882</a></p> http://stackoverflow.com/questions/1904568/tracking-information-over-many-pages-for-a-website/1904588#1904588 0 Answer by gahooa for Tracking information over many pages for a website gahooa 2009-12-15T00:51:54Z 2009-12-15T00:51:54Z <p>Ahh, good question.</p> <p>I've found that a great way to handle this (if it's linear). The following will work especially well if you are including different content (pages) into one PHP page (MVC, for example). However, if you need to go from URL to URL, it can be difficult, because you cannot POST across a redirect (well, you can, but no browsers support it).</p> <p>You can fill in the details.</p> <pre><code>$data = array(); //or// $data = unserialize(base64_decode($_POST['data'])); // add keys to data // serialize $data = base64_encode(serialize($data)); &lt;input type="hidden" name="data" value="&lt;?= htmlspecialchars($data, ENT_QUOTES); ?&gt;" /&gt; </code></pre> http://stackoverflow.com/questions/1904206/how-does-ssl-actually-work/1904256#1904256 2 Answer by gahooa for How does SSL actually work? gahooa 2009-12-14T23:24:43Z 2009-12-14T23:24:43Z <p>Secure web pages are requested on port 443 instead of the normal port 80. The SSL protocol (plenty complicated in and of itself) is responsible for securing communication, and using the certificate information on both the SERVER and the BROWSER to authenticate the server as being who they say they are.</p> <p>Generating an SSL certificate is easy. Generating one that is based on the information embedded in 99% of web browsers costs money. But the technical aspects are not different.</p> <p>You see, there are organizations (Verisign, Globalsign, etc...) that have had their certificate authority information INCLUDED with browsers for many years. That way, when you visit a site that has a certificate that they produced (signed), your browser says: </p> <p><em>"well, if Verisign trusts XYZ.com, and I trust Verisign, then I trust XYZ.com"</em></p> <p><strong>The process is easy:</strong></p> <p>Go to a competent SSL vendor, such as GlobalSign. Create a KEY and Certificate Request on the webserver. Use them (and your credit card) to buy a certificate. Install it on the server. Point the web-browser to HTTPS (port 443). The rest is done for you.</p> http://stackoverflow.com/questions/1898218/php-contact-form-clean-code/1898347#1898347 1 Answer by gahooa for php contact form clean code gahooa 2009-12-14T00:23:02Z 2009-12-14T00:23:02Z <p>In the question, you had 2 separate files processing the form. The problem is if you get a validation error, you are left with little choice but the <strong>awful "Please click you back button"</strong> solution. </p> <p>Consider this template PHP file that will handle it all on one page, provide for data validation, errors, re-submitting, and the whole 9 yards.</p> <pre><code>&lt;?php // Read input variables from _POST $FormAction = (isset($_POST['FormAction']) ? $_POST['FormAction'] : ''); $FirstName = trim(isset($_POST['FirstName']) ? $_POST['FirstName'] : ''); ... // Define script variables $Errors = array(); // Process input if data was posted. switch($FormAction) { case 'Process': // validation code if(empty($FirstName) or strlen($FirstName) &gt; 20) $Errors[] = "First name is required."; ... if(count($Errors) &gt; 0) break; // Here we have valid data.. Do whatever... // Now, redirect somewhere. header('Location: http://www.next.com/whatever'); exit; } ?&gt; &lt;html&gt; &lt;body&gt; &lt;?php if(count($Errors)) { ?&gt; &lt;div class="Error"&gt; &lt;?php foreach($Error as $Error) { ?&gt; &lt;div&gt;&lt;?php echo htmlspecialchars($Error); ?&gt;&lt;/div&gt; &lt;?php } ?&gt; &lt;/div&gt; &lt;?php } ?&gt; &lt;form method="POST" action="&lt;?php echo htmlspecialchars($_SERVER['REQUES_URI'], ENT_QUOTES); ?&gt;" /&gt; &lt;input type="hidden" name="FormAction" value="Process" /&gt; First Name: &lt;input type="text" name="FirstName" value="&lt;?php echo htmlspecialchars($FirstName, ENT_QUOTES); ?&gt;" /&gt; ... &lt;input type="submit" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1895242/failsafe-for-networked-robot/1895355#1895355 1 Answer by gahooa for failsafe for networked robot gahooa 2009-12-13T02:07:26Z 2009-12-13T02:07:26Z <p>May I suggest you use a simple flash object embedded in the web browser to open a <strong>socket connection</strong> to a server on the robot? The server can be written in any suitable language - even PHP (cough). </p> <p>Then it is a simple matter to detect immediately when the connection goes down, and implement your fail-safe approach.</p> <p>HTTP is not a ideal protocol for robot control.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1895255/using-postgresql-as-middle-layer-need-opinion/1895341#1895341 2 Answer by gahooa for Using Postgresql as middle layer. Need opinion. gahooa 2009-12-13T01:57:20Z 2009-12-13T01:57:20Z <p>I believe there is a better way to do it. But since you haven't discussed what type of security you need, I cannot elaborate on specifics.</p> <p>Since you are developing the application code in .NET, that code needs to be trusted (unlike a web application). Therefore, why don't you simply implement your roles and permissions in the application code, rather than the database?</p> <p>My concern with your stated approach is the human overhead of stored procedures. Would much rather see you write the stated functions in C#, rather than in PostgreSQL. Then, standard version control and software development techniques could apply.</p> http://stackoverflow.com/questions/1891964/best-license-for-private-software/1891989#1891989 1 Answer by gahooa for Best license for private software gahooa 2009-12-12T02:04:53Z 2009-12-12T02:12:16Z <p>First of all, <strong>Stack Overflow</strong> is not the place to ask legal questions. So be smart, and get an good attorney (a <strong>good one</strong> is worth all the money).</p> <p><em>(Disclaimer: this is not legal advice. It is practical advice. Please consult your attorney.)</em></p> <p>Why do your clients need to own the code? They need to be able to <strong>use</strong> the code, not <strong>own</strong> the code. You are in the business of code, not them. Let them run their business, and they let you run your business. </p> <p>Everyone always wants to own the code. You just need gently explain that they don't actually need to own the code, but you will grant them a flexible licence for using it (source code included).</p> <p>Royalty free, unlimited, perpetual, etc... are some of the words used to describe such things.</p> <p>If you are working for more than one company, you cannot grant them both ownership. That is why it is so important for you to retain ownership. I've been involved in cases where the client insisted on owning the code, and it was worth enough to me to sign off on an agreement that stated: </p> <p><em>They own it. We have a license to use it in an unlimited fashion, including the right to license, re-license, modify, distribute, etc...</em> But as I said, they were not going to budge, and it was worth it to me.</p> <p>Regarding contracts, there is important content in a good contract that you should have. We have a really cool standard contract that is nearly identical between clients, except for the actual specification of work is defined in attached schedules. </p> <p>Take heart, this is all part of the "business of business", that you inevitably get involved in when you are doing business. </p> <p>If you want a good contract to start with, feel free to contact <a href="http://blog.gahooa.com/about" rel="nofollow">me</a>.</p> http://stackoverflow.com/questions/1891941/what-is-your-favorite-most-productive-macro-that-you-have-used-in-vim/1891968#1891968 3 Answer by gahooa for What is your favorite/most productive macro that you have used in Vim ? gahooa 2009-12-12T01:58:32Z 2009-12-12T01:58:32Z <p>I use macros for a lot of temporary custom keystroke-saving. But it's on a case-by-case basis. </p> <p><strong>For example:</strong> Delete 4 characters, insert mode, ([]), exit insert mode, move down, back four spaces. Then use <code>.</code> to repeat it.</p> http://stackoverflow.com/questions/1891753/what-are-some-good-places-to-look-for-default-apache-startup-settings-in-fedora-8/1891942#1891942 0 Answer by gahooa for What are some good places to look for default apache startup settings in Fedora 8? gahooa 2009-12-12T01:49:10Z 2009-12-12T01:49:10Z <p>Start by reading <code>/etc/httpd/conf/httpd.conf</code>. It may include other files, but you can follow them and see.</p> <p>If you modify this file, you can update apache:</p> <p>Switch to root:<br> <code>su -</code></p> <p>Check config:<br> <code>service httpd configtest</code></p> <p>Graceful restart:<br> <code>service httpd graceful</code></p> <p><strong>Don't forget to backup!</strong></p> http://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th/1891931#1891931 23 Answer by gahooa for Would you feel offended or upset if another developer ran a code beautifier on the code base? gahooa 2009-12-12T01:45:46Z 2009-12-12T01:45:46Z <p>I think one of the <strong>major</strong> considerations should be <em>"what impact will this have on the ability to diff?"</em></p> http://stackoverflow.com/questions/1891917/does-using-a-function-in-foreach-loop-caches-the-result-or-calls-the-function-ea/1891927#1891927 6 Answer by gahooa for Does using a function in foreach loop caches the result, or calls the function each time? gahooa 2009-12-12T01:42:59Z 2009-12-12T01:42:59Z <p>No, your test is conclusive.</p> <p>It makes no sense for it to evaluate the first expression any more than once. It's the basic premise of a foreach loop.</p> <p>A <code>for</code> loop has three arguments, and it does evaluate the second and third each iteration.</p> http://stackoverflow.com/questions/1882754/display-mysql-newline-in-html/1882792#1882792 3 Answer by gahooa for display mysql newline in HTML gahooa 2009-12-10T17:54:45Z 2009-12-10T17:54:45Z <p>Assuming PHP here...</p> <p><code>nl2br()</code> adds in <code>&lt;br /&gt;</code> for every <code>\n</code>. Don't forget to escape the content first, to prevent XSS attacks. See below:</p> <pre><code>&lt;?php echo nl2br(htmlspecialchars($content)); ?&gt; </code></pre> http://stackoverflow.com/questions/1877242/keep-user-logged-in-when-he-visit-the-same-page-again/1877261#1877261 1 Answer by gahooa for keep user logged in when he visit the same page again? gahooa 2009-12-09T22:07:51Z 2009-12-09T22:07:51Z <p>Read this: <a href="http://www.php.net/manual/en/session.configuration.php" rel="nofollow">http://www.php.net/manual/en/session.configuration.php</a></p> <p>The setting that you need is <code>session.cookie_lifetime</code>. Session cookies (eg ones that do not have a lifetime) are deleted when the browser is closed. If you want the sessions to stay alive for longer, set that setting in <code>php.ini</code>, <code>httpd.conf</code>, or <code>.htaccess</code>. Possibly even with <code>ini_set</code></p> <p><strong>Edit:</strong> Actually you can use this function:</p> <pre><code>session_set_cookie_params (86400*30); session_start() </code></pre> <p>86400*30 is 30 days.</p> <p>See here: <a href="http://www.php.net/manual/en/function.session-set-cookie-params.php" rel="nofollow">http://www.php.net/manual/en/function.session-set-cookie-params.php</a></p> http://stackoverflow.com/questions/1874712/data-extraction-and-manipulation-in-jython/1875183#1875183 2 Answer by gahooa for Data extraction and manipulation in jython gahooa 2009-12-09T16:45:38Z 2009-12-09T16:45:38Z <p>Open the input file (1) and the output file (2) for reading and writing respectively. </p> <pre><code>file1 = open('file1', 'r') file2 = open('file2', 'w') </code></pre> <p>Iterate over the input file, getting each line. Split the line on a comma. Then re-join the line using a comma, but first stripping the whitespace (using a list comprehension).</p> <pre><code>for line in file1: fields = line.split(',') line = ",".join([s.strip() for s in fields]) file2.write(line + "\n") </code></pre> <p>Finally, close the input and output files.</p> <pre><code>file1.close() file2.close() </code></pre> <p>I'm not sure of jython's capabilities when it comes to generators, so that is why I used a list comprehension. Please feel free to edit this (someone who knows jython better).</p> http://stackoverflow.com/questions/1871331/php-mysql-insert-into-without-using-column-names-but-with-autoincrement-field/1871342#1871342 4 Answer by gahooa for PHP MYSQL - Insert into without using column names but with autoincrement field gahooa 2009-12-09T03:01:13Z 2009-12-09T03:01:13Z <p>Insert <code>NULL</code> into the auto-increment field.</p> <p>I recommend that unless this is a hack script, you use field names. The rationale is that your code will <strong>break</strong> if you ever add a field to the table or change their order. </p> <p>Instead, be explicit with field names, and it will go much better in the future.</p> http://stackoverflow.com/questions/1870372/skip-an-element-in-zip/1870395#1870395 2 Answer by gahooa for skip an element in zip gahooa 2009-12-08T22:39:51Z 2009-12-09T02:59:15Z <p>Take a look at <a href="http://docs.python.org/library/itertools.html" rel="nofollow">itertools</a>:</p> <pre><code>for line in itertools.izip( open(file1), itertools.islice(open(file2), 1, None) ): # do something </code></pre> <p><strong>Edit:</strong> changed from zip to the itertools.izip function.</p> http://stackoverflow.com/questions/1943246/do-i-need-an-orm-for-simple-related-queries-in-php-ci/1943270#1943270 Comment by gahooa on Do I need an ORM for simple related queries in PHP/CI? gahooa 2009-12-22T14:05:57Z 2009-12-22T14:05:57Z I'm not alone!!! http://stackoverflow.com/questions/1943261/jquery-plugin-question-can-i-modify-a-core-method/1943282#1943282 Comment by gahooa on jQuery plugin question - can I modify a core method? gahooa 2009-12-22T14:05:27Z 2009-12-22T14:05:27Z @Justin Johnson: He asked how, and I advised him how (along with a good dose of warning). Of course it's not a &quot;good idea&quot;. http://stackoverflow.com/questions/1943863/whats-the-difference-between-b-and-b-in-this-place-thanks/1943868#1943868 Comment by gahooa on What's the difference between _b and b in this place,thanks gahooa 2009-12-22T14:03:33Z 2009-12-22T14:03:33Z @inspectorG4dget: <code>&#95;b</code> is clearly an attribute of the class object. If you find that to be questionable, please read the documentation of the <code>type</code> builtin. The value returned from this attribute will be a callable (a bound method). It's just one of the things that makes Python so great! http://stackoverflow.com/questions/1943863/whats-the-difference-between-b-and-b-in-this-place-thanks Comment by gahooa on What's the difference between _b and b in this place,thanks gahooa 2009-12-22T02:39:07Z 2009-12-22T02:39:07Z There are two types of answers below. Literal and perceptive. The perceptive folks try to anticipate what you are really asking, while the literal folks just answer the (poorly written) question. Both are valid, IMO. http://stackoverflow.com/questions/1943863/whats-the-difference-between-b-and-b-in-this-place-thanks/1943866#1943866 Comment by gahooa on What's the difference between _b and b in this place,thanks gahooa 2009-12-22T02:37:46Z 2009-12-22T02:37:46Z Plain answer to a simple question. Nothing wrong with that. http://stackoverflow.com/questions/1943739/easy-modrewrite-so-ill-never-have-to-think-about-it-again/1943821#1943821 Comment by gahooa on Easy mod_rewrite - So I'll never have to think about it again gahooa 2009-12-22T02:36:47Z 2009-12-22T02:36:47Z This is clever, but I believe that it would be better not to split the logic between apache and PHP. mod_rewrite is excellent, powerful, and should be as important a part of the stack as PHP itself. http://stackoverflow.com/questions/1937622/convert-date-to-datetime-in-python/1937631#1937631 Comment by gahooa on Convert date to datetime in Python gahooa 2009-12-21T00:37:05Z 2009-12-21T00:37:05Z Despite being clever, by the way. http://stackoverflow.com/questions/1937622/convert-date-to-datetime-in-python/1937631#1937631 Comment by gahooa on Convert date to datetime in Python gahooa 2009-12-21T00:36:34Z 2009-12-21T00:36:34Z -1 as being non obvious. http://stackoverflow.com/questions/1936846/how-to-call-a-php-function-from-javascript-or-if-that-cant-be-done-some-directi/1936867#1936867 Comment by gahooa on how to call a php function from javascript or if that can't be done, some direction on what I should do gahooa 2009-12-20T20:28:33Z 2009-12-20T20:28:33Z I should be writing my code for a December 31 deadline, not coding out SO questions, but... lol. http://stackoverflow.com/questions/1936700/mysql-drop-database-equivalent-w-o-root-access-or-drop-privileges Comment by gahooa on MySQL DROP DATABASE equivalent w/o root access or DROP privileges gahooa 2009-12-20T19:57:05Z 2009-12-20T19:57:05Z MySQL CREATE and DROP privs on a specific DB also give that user the ability to drop and re-create the DB itself. So you can safely give that and not have it affect anything outside the DB. http://stackoverflow.com/questions/1936740/how-to-execute-a-java-program-24-x-7-on-linux/1936750#1936750 Comment by gahooa on How to execute a Java program 24 x 7 on linux gahooa 2009-12-20T19:54:15Z 2009-12-20T19:54:15Z Have you considered just wrapping the script in another <code>safe</code> script, which does: while true; run script; end while; Look at mysqld_safe startup script for MySQL which provides this functionality for MySQL. http://stackoverflow.com/questions/1929339/php-function-to-get-the-date-format/1929401#1929401 Comment by gahooa on PHP function to get the date format? gahooa 2009-12-18T16:49:11Z 2009-12-18T16:49:11Z This is better than my answer, because you put all the definitions in an array instead of a bunch of code. http://stackoverflow.com/questions/1925587/all-rows-after-the-nth-row/1925708#1925708 Comment by gahooa on All rows after the nth row? gahooa 2009-12-18T16:43:57Z 2009-12-18T16:43:57Z Interesting answer. However, with MySQL un-optimization of sub queries, you are likely to give the CPU a heart attack. http://stackoverflow.com/questions/1925587/all-rows-after-the-nth-row/1925599#1925599 Comment by gahooa on All rows after the nth row? gahooa 2009-12-18T16:41:51Z 2009-12-18T16:41:51Z @Asaph: how many rows do you want to retrieve? I included specification of the LIMIT syntax - if this isn't obvious, then perhaps one should move to a different field? http://stackoverflow.com/questions/1929218/returning-to-php-after-4-years-looking-for-current-best-thing/1929231#1929231 Comment by gahooa on returning to php after 4 years; looking for Current Best Thing gahooa 2009-12-18T16:32:30Z 2009-12-18T16:32:30Z Hey's a python programmer... Which means he just expressed everything on one short line. Wait...