User hop - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:06:47Zhttp://stackoverflow.com/feeds/user/3850http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1479513/stacking-order-of-uiactionsheet0Stacking order of UIActionSheethop2009-09-25T20:49:21Z2009-11-29T02:00:04Z
<p>While my app is displaying a UIActionSheet, I send startUpdatingLocation to the CLLocationManager. This results in a Location Warning, if the user has not yet agreed to letting my app use her location.</p>
<p>Now, the problem is, that the UIAlertView that the Location Manager displays pops up <em>behind</em> my UIActionSheet, and thus the user can not interact with it (thus the location updates never come in, thus the action sheet is never dismissed...).</p>
<p>Is there a way to make the Location Manager dialog appear on the very top (or my action sheet behind it)?</p>
<p>If it's relevant: there is a UITabBar and I use showFromTabBar to display the action sheet.</p>
http://stackoverflow.com/questions/1761097/what-to-do-to-make-a-map-in-the-iphone-application/1761117#17611172Answer by hop for What to do to make a map in the iphone Application?hop2009-11-19T05:37:11Z2009-11-19T05:43:24Z<p>You want to use <a href="http://developer.apple.com/iphone/library/documentation/MapKit/Reference/MapKit%5FFramework%5FReference/" rel="nofollow">MapKit</a>. The specifics of this API are too expansive to discuss in this answer (and you didn't provide us with a description of what exactly you want to achieve), but look at the documentation for the <a href="http://developer.apple.com/iphone/library/documentation/MapKit/Reference/MKMapView%5FClass/MKMapView/MKMapView.html" rel="nofollow">MKMapView class</a> and its <a href="http://developer.apple.com/iphone/library/documentation/MapKit/Reference/MKMapViewDelegate%5FProtocol/MKMapViewDelegate/MKMapViewDelegate.html" rel="nofollow">delegate</a>.</p>
<p>Also, there are some 80 questions on Stack Overflow <a href="http://stackoverflow.com/questions/tagged/mapkit">tagged "MapKit"</a>.</p>
http://stackoverflow.com/questions/1549412/grouping-data-points-into-series/1549467#15494670Answer by hop for Grouping data points into serieshop2009-10-11T00:25:13Z2009-10-11T00:43:41Z<p>How about using iterators for lazy evaluation?</p>
<p>This should be the equivalent of your initial solution:</p>
<pre><code>from itertools import groupby
def split_series(points, interval):
"""
>>> points = [(1, 'a'), (2, 'b'), (2, 'a'), (3, 'd'), (4, 'c')]
>>> print list(split_series(points, 3))
[['a', 'b', 'a', 'd'], ['c']]
"""
def interval_key(t):
return (t[0] - points[0][0]) // interval
groups = groupby(points, interval_key)
for group in groups:
yield [v for _, v in group[1]]
</code></pre>
http://stackoverflow.com/questions/120926/why-does-python-pep-8-strongly-recommend-spaces-over-tabs-for-indentation/121671#1216719Answer by hop for Why does Python pep-8 strongly recommend spaces over tabs for indentation?hop2008-09-23T15:19:27Z2009-10-08T14:18:53Z<p>The answer is given right there in the PEP. I quote:</p>
<blockquote>
<p>The <strong>most popular</strong> way of indenting Python is with spaces only.</p>
</blockquote>
<p>What other underlying reason do you need?</p>
<p>To put it less bluntly: Consider also the scope of the PEP as stated in the very first paragraph:</p>
<blockquote>
<p>This document gives coding conventions for the Python code comprising the standard library in the main Python distribution.</p>
</blockquote>
<p>The intention is to make <em>all code that goes in the official python distribution</em> consistently formatted (I hope we can agree that this is universally a Good Thing™).</p>
<p>Since the decision between spaces and tabs for an individual programmer is a) really a matter of taste and b) easily dealt with by technical means (editors, conversion scripts, etc.), there is a clear way to end all discussion: chose one.</p>
<p>Guido was the one to choose. He didn't even have to give a reason, but he still did by referring to empirical data. (Although, I guess, if the BDFL were a proponent of the use of tabs, he would have ignored that argument ;-)</p>
<p>For all other purposes you can either take this PEP as a recommendation, or you can ignore it -- your choice, or your team's, or your team leaders.</p>
<p>But if I may give you one advice: don't mix'em ;-)</p>
http://stackoverflow.com/questions/1447996/decorators-should-not-have-side-effects/1448797#14487970Answer by hop for Decorators should not have side effects?hop2009-09-19T15:43:04Z2009-09-19T16:23:12Z<p>Your examples do not express the same things in every case! Why do you insist on using bar? </p>
<p>Take your first example:</p>
<pre><code>#Option 1
def bar(*args):
pass
foo = deco(bar)
#Option2
@deco
def foo(*args):
pass
</code></pre>
<p>Option 1 does (literally)</p>
<pre><code>foo = deco(bar)
</code></pre>
<p>but Option 2 is the equivalent of</p>
<pre><code>foo = deco(foo)
</code></pre>
<p>Can't you see the difference there?</p>
<p>So, in short, yes: your assumption and your expectations are wrong.</p>
<p>If you need the undecorated version of your function, as well as the decorated one, just save it beforehand:</p>
<pre><code>def foo(*args):
pass
bar = foo
foo = deco(foo)
</code></pre>
http://stackoverflow.com/questions/1387440/how-to-join-nsarray-elements-into-an-nsstring1How to join NSArray elements into an NSString?hop2009-09-07T03:32:13Z2009-09-07T03:38:43Z
<p>Given an NSArray of NSStrings, is there a quick way to join them together into a single NSString (with a Separator)?</p>
http://stackoverflow.com/questions/23511/algorithm-behind-md5crypt/155696#1556960Answer by hop for Algorithm behind MD5Crypthop2008-10-01T00:19:50Z2009-08-19T08:58:04Z<p>The process is rather involved... the salt and the password are hashed together not once, but 1000 times. Also, the base64 encoding uses a different alphabet, and the padding is removed from the end.</p>
<p>The best thing would probably be to find a library to use, like glibc under cygwin.</p>
<p>Since you code against Apache anyway, have a look at <a href="http://svn.apache.org/viewvc/apr/apr/trunk/crypto/apr%5Fmd5.c?view=co" rel="nofollow">Apache's implementation</a> of crypt-md5.</p>
<p>The original algorithm (I think) in C can be found <a href="http://www.freebsd.org/cgi/cvsweb.cgi/~checkout~/src/lib/libcrypt/crypt.c?rev=1.2" rel="nofollow">here</a>. It differs from the above implementation only by the different magic number.</p>
http://stackoverflow.com/questions/1295415/how-to-replace-python-function-while-supporting-all-passed-in-parameters/1295621#12956210Answer by hop for How to replace Python function while supporting all passed in parametershop2009-08-18T18:17:56Z2009-08-18T18:17:56Z<p>Although I think SilentGhost's answer is the best solution if it works for you, for the sake of completeness, here is the correct version of what you where trying to do:</p>
<p>To define a decorator that takes an argument, you have to introduce an additional level:</p>
<pre><code>def replace_function(repl):
def deco(f):
def inner_f(*args, **kwargs):
repl(*args, **kwargs)
return inner_f
return deco
</code></pre>
<p>Now you can use the decorator with an argument:</p>
<pre><code>@replace_function(replacement_f)
def original_function(*args, **kwargs):
....
</code></pre>
http://stackoverflow.com/questions/182229/what-do-i-need-to-import-to-gain-access-to-my-models/182790#1827905Answer by hop for What do i need to import to gain access to my models?hop2008-10-08T13:38:07Z2009-06-27T20:58:18Z<p>If you use the <code>shell</code> argument to the <code>manage.py</code> script in your project directory, you don't have to import the settings manually:</p>
<pre><code>$ cd mysite/
$ ./manage.py shell
Python 2.5.2 (r252:60911, Jun 10 2008, 10:35:34)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from myapp.models import *
>>>
</code></pre>
<p>For non-interactive use you could implement a <a href="http://docs.djangoproject.com/en/dev/howto/custom-management-commands/" rel="nofollow">custom command</a> and run it with <code>manage.py</code>.</p>
http://stackoverflow.com/questions/405415/can-you-grab-or-delete-between-parentheses-in-vi-vim/405435#40543521Answer by hop for Can you grab or delete between parentheses in vi/vim?hop2009-01-01T20:25:10Z2009-06-07T14:08:14Z<h2>Various Motions: %</h2>
<p>The <a href="http://vimdoc.sourceforge.net/htmldoc/motion.html#%" rel="nofollow"><code>%</code> command</a> jumps to the match of the item under the cursor. Position the cursor on the opening (or closing) paren and use <code>y%</code> for yanking or <code>d%</code> for deleting everything from the cursor to the matching paren.</p>
<p>This works because <code>%</code> is a "motion command", so it can be used anywhere vim expects such a command. From <a href="http://vimdoc.sourceforge.net/htmldoc/change.html#y" rel="nofollow"><code>:help y</code></a>:</p>
<pre><code>["x]y{motion} Yank {motion} text [into register x]. When no
characters are to be yanked (e.g., "y0" in column 1),
this is an error when 'cpoptions' includes the 'E'
flag.
</code></pre>
<p>By default, "item" includes brackets, braces, parens, C-style comments and various precompiler statements (<code>#ifdef</code>, etc.).</p>
<p>There is a plugin for "extended % matching" that you can find on the <a href="http://www.vim.org/scripts/script.php?script%5Fid=39" rel="nofollow">Vim homepage</a>.</p>
<p>You can read the documentation on <code>%</code> and related motion commands by entering <a href="http://vimdoc.sourceforge.net/htmldoc/motion.html#various-motions" rel="nofollow"><code>:help various-motions</code></a> in command mode.</p>
<h2>object-select</h2>
<p>There is another set of motion commands that you can use in Visual mode to select various text objects.</p>
<p>To solve your specific problem you would do the following:</p>
<pre><code>printf("%3.0f\t%6.1f\n", fahr, ((5.0/9.0) * (fahr-32)));
^
</code></pre>
<p>Let's say your cursor is positioned at <code>^</code>. Enter the following sequence to select the part you are looking for:</p>
<pre><code>v2a)
</code></pre>
<p>First <code>v</code> enters Visual mode, then you specify that you want to go <code>2</code> levels of parens up. Finally the <code>a)</code> selects "a block". After that you can use <code>d</code> or <code>x</code> to delete, etc.</p>
<p>If you don't want to include the outer parens, you can use "inner block" instead:</p>
<pre><code>v2i)
</code></pre>
<p>See <a href="http://vimdoc.sourceforge.net/htmldoc/motion.html#object-select" rel="nofollow"><code>:help object-select</code></a> for the complete list of related commands.</p>
http://stackoverflow.com/questions/677978/weakref-list-in-python/678194#6781941Answer by hop for weakref list in pythonhop2009-03-24T16:31:57Z2009-03-24T16:39:05Z<p>Your question seems a bit odd... the whole idea about weak references is that the reference can survive even after the object that is referred to is dead.</p>
<p>To quote from the <a href="http://docs.python.org/library/weakref.html" rel="nofollow">documentation</a></p>
<blockquote>
<p>Normally, application code that needs to use a reference object should follow this pattern:</p>
</blockquote>
<pre><code># r is a weak reference object
o = r()
if o is None:
# referent has been garbage collected
print "Object has been deallocated; can't frobnicate."
else:
print "Object is still live!"
o.do_something_useful()
</code></pre>
<p>So, if for example you'd like to iterate over all non-dead entries in a list of <code>weakref</code>s, you could use something like this:</p>
<pre><code>for obj in [o() for o in wlist if o() is not None]:
foo(obj)
</code></pre>
<p>(Other than the example from the documentation, this is not threadsafe, though!)</p>
<p>I guess you could write a wrapper class around a list that you can use to iterate only over non-dead references, but somehow i doubt that this is worth the effort....</p>
http://stackoverflow.com/questions/339244/using-apaches-modauth-across-multiple-sub-domains-for-single-sign-on/339315#3393154Answer by hop for Using Apache's mod_auth across multiple sub-domains for single sign-on?hop2008-12-04T01:05:06Z2009-03-24T15:54:02Z<h2>mod_auth_basic</h2>
<p>Browsers distinguish areas that require HTTP authentication by a combination of the URL root and the name of the authentication realm.</p>
<p>Take for example, two domains each with a realm with the same name:</p>
<pre><code>http://one.example.com/ with the realm "Please enter credentials!"
http://two.example.com/ with the realm "Please enter credentials!"
</code></pre>
<p>First a user visits <code>one</code>, is asked for credentials and enters them. Then the user visits <code>two</code>, the browser recognizes that the URL is different and thus asks again the user for her credentials.</p>
<p>This is a good thing, because otherwise www.badguy.com could set it up so that your browser sends over your online banking login.</p>
<p>In short: there is <strong>no way to solve your problem with basic HTTP authentication</strong> and standard HTTP clients.</p>
<h2>mod_auth_digest</h2>
<p>You could use mod_auth_digest instead, since with that you can specify more than one URI to be in the same "protection space". However, with this authentication method there are two new problems:</p>
<ol>
<li>It doesn't scale very well, because you cannot use wildcard domains.</li>
<li>Browser compatibility is not as good. (See <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Fauth%5Fdigest.html#msie" rel="nofollow">the documentation</a> on how to make it work with IE.)</li>
</ol>
http://stackoverflow.com/questions/420843/need-some-help-understanding-password-salt/421147#42114717Answer by hop for Need some help understanding password salthop2009-01-07T17:06:20Z2009-03-19T14:58:18Z<p>The other answers don't seem to address your misunderstandings of the topic, so here goes:</p>
<h2>Two different uses of salt</h2>
<blockquote>
<p>I've seen many tutorials suggesting that the salt be used as the following:</p>
<p><code>$hash = md5($salt.$password)</code></p>
<p>[...]</p>
<p>The other use I've seen is on my linux system. In the /etc/shadow the hashed passwords are actually stored with the salt.</p>
</blockquote>
<p>You <strong>always</strong> have to store the salt with the password, because in order to validate what the user entered against your password database, you have to combine the input with the salt, hash it and compare it to the stored hash.</p>
<h2>Security of the hash</h2>
<blockquote>
<p>Now somebody with a rainbow table could reverse the hash and come up with the input "foobar".</p>
<p>[...]</p>
<p>since the reverse hash of te5SBM.7C25fFDu6bIRbX is known to contain "foo".</p>
</blockquote>
<p>It is not possible to reverse the hash as such (in theory, at least). The hash of "foo" and the hash of "saltfoo" have <strong>nothing</strong> in common. Changing even one bit in the input of a cryptographic hash function should completely change the output.</p>
<p>This means you cannot build a rainbow table with the common passwords and then later "update" it with some salt. You have to take the salt into account from the beginning.</p>
<p>This is the whole reason for why you need a rainbow table in the first place. Because you cannot get to the password from the hash, you precompute all the hashes of the most likely used passwords and then compare your hashes with their hashes.</p>
<h2>Quality of the salt</h2>
<blockquote>
<p>But say <code>$salt=foo</code></p>
</blockquote>
<p>"foo" would be an <strong>extremely</strong> poor choice of salt. Normally you would use a random value, encoded in ASCII.</p>
<p>Also, each password has it's own salt, different (hopefully) from all other salts on the system. This means, that the attacker has to attack each password individually instead of having the hope that <em>one</em> of the hashes matches one of the values in her database.</p>
<h2>The attack</h2>
<blockquote>
<p>If a hacker somehow were able to get his hands on this file, I don't see what purpose the salt serves,</p>
</blockquote>
<p>A rainbow table attack <strong>always</strong> needs <code>/etc/passwd</code> (or whatever password database is used), or else how would you compare the hashes in the rainbow table to the hashes of the actual passwords?</p>
<p>As for the purpose: let's say the attacker wants to build a rainbow table for 100,000 commonly used english words and typical passwords (think "secret"). Without salt she would have to precompute 100,000 hashes. Even with the traditional UNIX salt of 2 characters (each is one of 64 choices: <code>[a–zA–Z0–9./]</code>) she would have to compute and store 4,096,000,000 hashes... quite an improvement.</p>
http://stackoverflow.com/questions/588855/chmod-and-the-security-for-the-directories-on-my-server/590354#5903541Answer by hop for CHMOD and the security for the directories on my serverhop2009-02-26T12:26:30Z2009-03-07T22:39:29Z<p>When users are uploading files to your server through a web form and some PHP script, the disk access on the server happens with the user id the web server is running under (usually nobody, www-data, apache, _httpd or even root).</p>
<p>Note here, that this <em>single user id</em> is used, regardless of which user uploads the file.</p>
<p>As long as there are no local users accessing the system by other means (<code>ssh</code>, for example), setting the upload directories permissions to <code>0777</code> would make not much of a difference -- appart from somebody exploiting a security vulnerability somewhere else in your system there's no one those permissions apply to anyway, and such an attacker would probably just use <code>/tmp</code>.</p>
<p>It is always good practice to set only those permissions on a file or directory that are actually needed. In this case that means probably something like:</p>
<pre><code>drwxrws--- 5 www-data www-data 4096 Nov 17 16:44 upload/
</code></pre>
<p>I'm assuming that other local users besides the web server will want to access those files, like the sysadmin or a web designer. Add those users to the group your web server runs under and they don't need <code>sudo</code> or root privileges to access that directory. Also, the <code>+s</code> means that new files and directories in <code>upload/</code> will automatically be owned by the same group.</p>
<p>As to your last question: just because an attacker knows where the directory is, doesn't mean he can magically make files appear there. There still has to be some sort of service running that accepts files and stores them there... so no, setting the permissions to <code>0777</code> doesn't directly make it any less safe.</p>
<p>Still, there are several more dimensions to "safety" and "security" that you cannot address with file permissions in this whole setup:</p>
<ul>
<li>uploaders can still overwrite each others files because they all work with the same user id</li>
<li>somebody can upload a malicious PHP script to the upload directory and run it from there, possibly exploit other vulnerabilities on your system and gain root access</li>
<li>somebody can use your server to distribute child porn</li>
<li>somebody could run a phishing site from your server after uploading a lookalike of paypal.com</li>
</ul>
<p>...and there are probably more. Some of those problems you may have addressed in your upload script, but then again, understanding of unix file permissions and where they apply comes usually waaaay at the beginning when learning about security issues, which shows that you are probably not ready yet to tackle all of the possible problems.</p>
<p>Have your code looked at by somebody!</p>
http://stackoverflow.com/questions/598879/working-with-mysql-booleans-in-python/600044#6000440Answer by hop for Working with MySQL booleans in pythonhop2009-03-01T16:28:36Z2009-03-01T16:28:36Z<p>Your solution is actually quite OK, but there are alternatives:</p>
<p>If you are using Python 2.5 or higher, you can shorten the if statement:</p>
<pre><code>print 'Success' if data == 'True' else 'Fail'
</code></pre>
<p>If you are finding yourself repeating the check often, you might consider writing a function for it to make it more readable:</p>
<pre><code>def is_true(mysql_boolean):
if mysql_boolean == "True":
return True
else:
return False
# now you can use this:
if is_true(data):
# this is really going to be more than one line of code anyway.
# or maybe a function call, in which your solution might be enough.
print "Success"
else:
print "Fail"
</code></pre>
<p>You can achieve the same thing with a dictionary, but I don't find this as elegant:</p>
<pre><code>mysql_bool = {'True': True, 'False': False}
if mysql_bool[data]:
print "Success"
</code></pre>
<p>That said, what are you using to connect to the DB? There is probably a way to directly get a bool out of there. Please update your Question!</p>
http://stackoverflow.com/questions/599048/http-digest-authentication-versus-ssl/599377#5993772Answer by hop for HTTP Digest Authentication versus SSLhop2009-03-01T06:28:04Z2009-03-01T06:28:04Z<p>The pros and cons of HTTP Digest Authentication are explained quite clearly in the <a href="http://en.wikipedia.org/wiki/Digest%5Faccess%5Fauthentication" rel="nofollow">Wikipedia article on the topic</a> -- you should read that!</p>
<p>To put it bluntly: HTTP Digest Auth will only protect you from using your cleartext password to an attacker (and considering the state of MD5 security, maybe not even that). </p>
<p>It is however wide open to Man-in-the-Middle attacks and also -- depending on the implementation, since most of the advanced features are optional -- replay, dictionary and other forms of attacks.</p>
<p>However, the biggest difference between an HTTPS connection and an HTTP connection protected by Digest Auth is that with the former <em>everything</em> is encrypted with Public Key Encryption, while with the latter content is sent in the clear.</p>
<p>As for the performance: from the above mentioned points it should be quite clear that you get what you pay for (with CPU cycles).</p>
<p>For "flexibility" I'll go with: huh?</p>
http://stackoverflow.com/questions/591200/can-i-use-a-decorator-to-mutate-the-local-scope-of-a-function-in-python/591309#5913095Answer by hop for Can I use a decorator to mutate the local scope of a function in Python?hop2009-02-26T16:26:19Z2009-02-26T16:26:19Z<p>a) don't do it.</p>
<p>b) seriously, why would you do that?</p>
<p>c) you could declare z as global within your decorator, so z will not be in globals() until after the decorator has been called for the first time, so the assert won't bark.</p>
<p>d) why???</p>
http://stackoverflow.com/questions/571538/question-on-moduli/571647#5716474Answer by hop for Question on modulihop2009-02-20T23:27:58Z2009-02-20T23:27:58Z<p>First of all, you seem to ask for all multiples of 60. Those can be rendered easily like this (beware, this is an infinite loop):</p>
<pre><code>from itertools import count
for i in count():
print i*60
</code></pre>
<p>If you just oversimplified your example, this is a more pythonic (and correct) solution of what you wrote (again an infinite loop):</p>
<pre><code>from itertools import count
# put any test you like in this function
def test(number):
return all((number % i) == 0 for i in range(1,6))
my_numbers = (number for number in count() if test(number))
for number in my_numbers:
print number
</code></pre>
<p>You had a grave bug in your original code: <code>range(1,5)</code> equals <code>[1, 2, 3, 4]</code>, so it would not test whether a number is divisble by 5!</p>
<p>PS: You have used that insane <code>one = 1</code> construct before, and we showd you how to code that in a better way. Please learn from our answers!</p>
http://stackoverflow.com/questions/562115/press-alt-numeric-in-bash-and-you-get-arg-numeric-what-is-that/562179#5621795Answer by hop for Press alt + numeric in bash and you get (arg [numeric]) what is that?hop2009-02-18T18:00:55Z2009-02-18T18:00:55Z<p>The term you want to google for is</p>
<pre><code>"readline arguments"
</code></pre>
<p>This will lead to, for example, this <a href="http://www.faqs.org/docs/bashman/bashref_87.html" rel="nofollow">chapter from the bash reference manual</a>:</p>
<blockquote>
<p>You can pass numeric arguments to Readline commands. Sometimes the argument acts as a <strong>repeat count</strong>, other times it is the sign of the argument that is significant. If you pass a negative argument to a command which normally acts in a forward direction, that command will act in a backward direction. For example, to kill text back to the start of the line, you might type 'M-- C-k'.</p>
<p>The general way to pass numeric arguments to a command is to type meta digits before the command. If the first 'digit' typed is a minus sign ('-'), then the sign of the argument will be negative. Once you have typed one meta digit to get the argument started, you can type the remainder of the digits, and then the command. For example, to give the C-d command an argument of 10, you could type 'M-1 0 C-d', which will delete the next ten characters on the input line. </p>
</blockquote>
<p>For that to work, you have to know where the Meta key is mapped: sometimes it's Alt, sometimes it's Esc, cool computers have a dedicated Meta key ;)</p>
http://stackoverflow.com/questions/434683/receiving-email-notification-from-smartd-smartmontools/560643#5606431Answer by hop for Receiving email notification from smartd (smartmontools)hop2009-02-18T11:15:33Z2009-02-18T11:15:33Z<p>Since you know about <code>-M test</code>, you have obviously found the chapter about the <code>-M</code> option in the documentation. In the same chapter you will find:</p>
<pre><code>exec PATH - run the executable PATH instead of the default mail command,
when smartd needs to send email. PATH must point to an
executable binary file or script.
</code></pre>
<p>The important word being <strong>"instead"</strong>. If <code>smartd-runner</code> doesn't send out mail by itself, you will not be sent any messages.</p>
<p>What does <code>smartd-runner</code> do anyway? I'm not familiar with that script.</p>
<p>To answer your question: no mail is sent when there are no errors to report:</p>
<pre><code>once - send only one warning email for each type of disk problem detected.
This is the default.
</code></pre>
http://stackoverflow.com/questions/559508/how-should-timestamps-in-last-output-be-interpreted-on-linux/559574#5595741Answer by hop for How should timestamps in last output be interpreted on linux?hop2009-02-18T02:00:44Z2009-02-18T09:52:42Z<p>Use the source, Luke:</p>
<pre><code>sprintf(length, "(%d+%02d:%02d)", days, hours, mins);
</code></pre>
<p>This is from the <code>sysvinit</code> source package on Debian.</p>
<p>Hint for those without knowledge in C: it's the number of days.</p>
http://stackoverflow.com/questions/553871/can-anyone-provide-a-more-pythonic-way-of-generating-the-morris-sequence/554002#5540026Answer by hop for Can anyone provide a more pythonic way of generating the morris sequence?hop2009-02-16T18:01:25Z2009-02-16T18:39:39Z<pre><code>from itertools import groupby, islice
def morris():
morris = '1'
yield morris
while True:
morris = groupby(morris)
morris = ((len(list(group)), key) for key, group in morris)
morris = ((str(l), k) for l, k in morris)
morris = ''.join(''.join(t) for t in morris)
yield morris
print list(islice(morris(), 10))
</code></pre>
<p>First of all I'd make the iterator infinite and let the consumer decide, how much of it he wants. That way he could either get every morris number that is shorter than x or the first x numbers, etc.</p>
<p>Then there is obviously no need to store the whole list of previous morris numbers in a list, since the recursion is only <code>n := f(n-1)</code> anyway.</p>
<p>Lastly, using itertools to give it a functional touch is always worth a geek point or two ;) I split the generator expression into several lines to make it a bit easier on the eye.</p>
<p>The main ugliness in this solution comes from the fact that <code>len()</code> can't be called on an iterator and gives us an int where we need a str. The other hickup is the nested str.join) to flatten the whole thing into a str again.</p>
<p>If you want to start the sequence from arbitrary numbers, define the function like this:</p>
<pre><code>def morris(morris=None):
if morris is None:
morris = '1'
[...]
</code></pre>
<p>If you want to turn around that generator, you can write it like this:</p>
<pre><code>def morris():
morris = '1'
yield morris
while True:
print morris
morris = ''.join(''.join(t)
for t in ((str(len(list(group))), key)
for key, group in groupby(morris)))
yield morris
</code></pre>
<p>I'm not sure i like the splitting into two functions, but this seems to be the most readable solution:</p>
<pre><code>def m_groupby(s):
for key, group in groupby(s):
yield str(len(list(group)))
yield key
def morris():
morris = '1'
yield morris
while True:
morris = ''.join(m_groupby(morris))
yield morris
</code></pre>
<p>Hope you like it!</p>
http://stackoverflow.com/questions/533905/get-the-cartesian-product-of-a-series-of-lists-in-python/533934#5339345Answer by hop for get the cartesian product of a series of lists in pythonhop2009-02-10T20:02:47Z2009-02-10T20:29:19Z<p>In Python 2.6 and above you can use 'itertools.product`. In older versions of Python you can use the following (almost -- see documentation) equivalent <a href="http://docs.python.org/library/itertools.html#itertools.product" rel="nofollow">code from the documentation</a>:</p>
<pre><code>def product(*args, **kwds):
# product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
# product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
pools = map(tuple, args) * kwds.get('repeat', 1)
result = [[]]
for pool in pools:
result = [x+[y] for x in result for y in pool]
for prod in result:
yield tuple(prod)
</code></pre>
<p>The result of both is an iterator, so if you really need a list for furthert processing, use <code>list(result)</code>.</p>
http://stackoverflow.com/questions/533398/in-python-2-4-how-can-i-execute-external-commands-with-csh-instead-of-bash/534049#534049-1Answer by hop for In python 2.4, how can I execute external commands with csh instead of bash?hop2009-02-10T20:27:51Z2009-02-10T20:27:51Z<p><code>os.system()</code> calls <code>system(3)</code> directly, and this system call is the one that "chooses" the shell. I put that in quotes, because <code>system(3)</code> will always execute <code>/bin/sh</code>.</p>
<p>Thus, if you want Python to use a different shell, you have several options:</p>
<ul>
<li><p>Change the symlink <code>/bin/sh</code> to point to <code>tcsh</code>. This will have an effect on the whole system, which shouldn't be a problem since scripts that need bash features should start with <code>/bin/bash</code> anyway.</p></li>
<li><p>Run your Python script from a <code>chroot</code> environment where <code>/bin/sh</code> points to <code>tcsh</code>.</p></li>
<li><p>Replace <code>/bin/sh</code> with a script that executes <code>bash</code> or <code>tcsh</code> depending on who calls it (you could, for example, pass an additional environment variable.)</p></li>
<li><p>Put everything you want to execute in <code>tcsh</code> in a separate shell script and call that with <code>os.system('tcsh -c...')</code>. This way you don't have to escape anything.</p></li>
</ul>
http://stackoverflow.com/questions/529965/how-could-i-combine-these-regex-rules/530142#5301422Answer by hop for how could I combine these regex rules?hop2009-02-09T21:45:24Z2009-02-09T21:45:24Z<p>Since the <code>^</code> does not have to stand at the beginning of the RE, you can use grouping and <code>|</code> to combine those REs.</p>
<p>If you don't want re-insert the whitespace you captured, you have to use "positive lookbehind":</p>
<pre><code>$text = preg_replace('/(?<=^|\s)@(\w+)/',
'<a href="http://twitter.com/$1" target="_blank">@$1</a>', $text);
</code></pre>
<p>or "negative lookbehind":</p>
<pre><code>$text = preg_replace('/(?<!\S)@(\w+)/',
'<a href="http://twitter.com/$1" target="_blank">@$1</a>', $text);
</code></pre>
<p>...whichever you find easier to understand.</p>
http://stackoverflow.com/questions/527134/python-or-java-which-language-will-exposed-a-self-taught-programmer-to-more-compu/527145#5271453Answer by hop for Python or java which language will exposed a self taught programmer to more computer science concept?hop2009-02-09T04:53:55Z2009-02-09T04:59:09Z<p><a href="http://en.wikipedia.org/wiki/Mu_(negative" rel="nofollow">Mu</a></p>
http://stackoverflow.com/questions/509446/python-reading-lines-w-o-n/509482#50948213Answer by hop for python reading lines w/o \n ?hop2009-02-03T23:34:39Z2009-02-04T07:08:02Z<p>First of all, there is <a href="http://www.python.org/doc/2.3.5/whatsnew/node7.html" rel="nofollow">universal newline support</a>, second: just use <code>line.strip()</code>. Use <code>line.rstrip('\r\n')</code>, if you want to preserve any whitespace at the beginning or end of the line.</p>
<p>Oh, and</p>
<pre><code>print '"%s"' % line
</code></pre>
<p>or at least</p>
<pre><code>print '"' + line + '"'
</code></pre>
<p>might look a bit nicer.</p>
<p>Finally, you can iterate over the lines in a file like this:</p>
<pre><code>for line in f:
print '"' + line.strip('\r\n') + '"'
</code></pre>
http://stackoverflow.com/questions/492716/reversing-a-regular-expression-in-python/502074#5020744Answer by hop for Reversing a regular expression in pythonhop2009-02-02T02:59:15Z2009-02-03T08:58:31Z<p>Although I don't see much sense in this, here goes:</p>
<pre><code>import re
import string
def traverse(tree):
retval = ''
for node in tree:
if node[0] == 'any':
retval += 'x'
elif node[0] == 'at':
pass
elif node[0] in ['min_repeat', 'max_repeat']:
retval += traverse(node[1][2]) * node[1][0]
elif node[0] == 'in':
if node[1][0][0] == 'negate':
letters = list(string.ascii_letters)
for part in node[1][1:]:
if part[0] == 'literal':
letters.remove(chr(part[1]))
else:
for letter in range(part[1][0], part[1][1]+1):
letters.remove(chr(letter))
retval += letters[0]
else:
if node[1][0][0] == 'range':
retval += chr(node[1][0][1][0])
else:
retval += chr(node[1][0][1])
elif node[0] == 'not_literal':
if node[1] == 120:
retval += 'y'
else:
retval += 'x'
elif node[0] == 'branch':
retval += traverse(node[1][1][0])
elif node[0] == 'subpattern':
retval += traverse(node[1][1])
elif node[0] == 'literal':
retval += chr(node[1])
return retval
print traverse(re.sre_parse.parse(regex).data)
</code></pre>
<p>I took everything from the <a href="http://docs.python.org/library/re.html#regular-expression-syntax" rel="nofollow">Regular Expression Syntax</a> up to groups -- this seems like a reasonable subset -- and I ignored some details, like line endings. Error handling, etc. is left as an exercise to the reader.</p>
<p>Of the 12 special characters in a regex, we can ignore 6 completely (2 even with the atom they apply to), 4.5 lead to a trivial replacement and 1.5 make us actually think.</p>
<p>What comes out of this is not too terribly interesting, I think.</p>
http://stackoverflow.com/questions/496582/whats-a-good-way-to-keep-track-of-class-instance-variables-in-python/498284#4982848Answer by hop for What's a good way to keep track of class instance variables in Python?hop2009-01-31T04:45:58Z2009-01-31T04:45:58Z<p>I would say, the standard practice to avoid this is to <em>not write classes where you can be 1000 lines away from anything!</em></p>
<p>Seriously, that's way too much for just about any useful class, especially in a language that is as expressive as Python. Using more of what the Standard Library offers and abstracting away code into separate modules should help keeping your LOC count down.</p>
<p>The largest classes in the standard library have well below 100 lines! </p>
http://stackoverflow.com/questions/489524/is-there-a-way-to-make-a-user-defined-python-function-act-like-a-built-in-stateme/489529#4895298Answer by hop for Is there a way to make a user-defined Python function act like a built-in statement?hop2009-01-28T21:45:29Z2009-01-28T21:50:57Z<p>No, it is not possible.</p>
<p>As you can see from the <a href="http://docs.python.org/3.0/reference/simple_stmts.html#simple-statements" rel="nofollow">Language Reference</a>, there is no room left for extensions of the list of simple statements in the specification.</p>
<p>Moreover, <code>print</code> as a statement no longer exists in Python 3.0 and is replaced by the <code>print()</code> builtin function.</p>
http://stackoverflow.com/questions/1810248/what-kind-of-learning-algorithm-would-you-use-to-build-a-model-of-how-long-it-tak/1812287#1812287Comment by hop on What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?hop2009-11-28T15:40:07Z2009-11-28T15:40:07Zmy guess is that 2^81 alone would be too big a search space to make any machine-learning algorithm come up with a good model.
also, filled-or-not seems too crude as input to base a model on, but anything more sophisticated will vastly increase the search space.http://stackoverflow.com/questions/1810248/what-kind-of-learning-algorithm-would-you-use-to-build-a-model-of-how-long-it-takComment by hop on What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?hop2009-11-28T15:16:23Z2009-11-28T15:16:23Zmy problem is with the 5th paragraph ("i have ideas..."), because it jumbles together two different things: 1) what are the input parameters? 2) how do they influence the outcome?
you have to feed a NN with 1) to let it figure out 2), but i'm also not confident that the OP has a usable body of 3) what are some specific outcomes for some specific inputs? -- but there i may be hasty in my judgement.http://stackoverflow.com/questions/1810248/what-kind-of-learning-algorithm-would-you-use-to-build-a-model-of-how-long-it-takComment by hop on What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?hop2009-11-28T15:00:37Z2009-11-28T15:00:37Zif it were not programming related, i'd have voted to close. that's not what downvotes are for.http://stackoverflow.com/questions/1810248/what-kind-of-learning-algorithm-would-you-use-to-build-a-model-of-how-long-it-tak/1810288#1810288Comment by hop on What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?hop2009-11-27T20:02:11Z2009-11-27T20:02:11Zshotgun answeringhttp://stackoverflow.com/questions/1810248/what-kind-of-learning-algorithm-would-you-use-to-build-a-model-of-how-long-it-tak/1810268#1810268Comment by hop on What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?hop2009-11-27T20:01:06Z2009-11-27T20:01:06Znot addressing the question at all.http://stackoverflow.com/questions/1810248/what-kind-of-learning-algorithm-would-you-use-to-build-a-model-of-how-long-it-takComment by hop on What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?hop2009-11-27T20:00:28Z2009-11-27T20:00:28Zhow can you build a model of something if you don't know how that something behaves??? and what goold would neural networks -- or any kind of "learning algorithm" -- be in this situation?http://stackoverflow.com/questions/1783974/python-most-useful-lists-comprehension-construction/1783995#1783995Comment by hop on Python - Most useful lists-comprehension constructionhop2009-11-23T18:03:49Z2009-11-23T18:03:49Zare you freaking kidding me? "predicate" in it's current meaning has been in use since the 19th century.http://stackoverflow.com/questions/1761097/what-to-do-to-make-a-map-in-the-iphone-application/1761117#1761117Comment by hop on What to do to make a map in the iphone Application?hop2009-11-19T05:52:59Z2009-11-19T05:52:59Zgreat. that's settled, then.http://stackoverflow.com/questions/316236/uiimage-imagenamed-vs-uiimage-imagewithdata/1499860#1499860Comment by hop on [UIImage imageNamed...] vs [UIImage imageWithData...]hop2009-11-10T05:16:59Z2009-11-10T05:16:59Zdon't use answers for discussionshttp://stackoverflow.com/questions/1622327/regular-expression-for-words-beginning-with-a-certain-string-javascriptComment by hop on regular expression for words beginning with a certain string (javascript)hop2009-10-26T02:48:31Z2009-10-26T02:48:31Z??? no, it doesn'thttp://stackoverflow.com/questions/1622421/how-do-i-trim-the-number-of-words-in-pythonComment by hop on How do I trim the number of words in Python?hop2009-10-26T02:44:44Z2009-10-26T02:44:44Z"But that is too much work." is longer than the code to actually do "that"...http://stackoverflow.com/questions/1588295/is-oreillys-webos-book-out-of-dateComment by hop on Is O'Reilly's WebOS book out of date?hop2009-10-19T12:09:46Z2009-10-19T12:09:46Zit's a <i>book</i>, of course it's out of date.http://stackoverflow.com/questions/1588294/is-this-ok-saltingComment by hop on is this ok? saltinghop2009-10-19T12:07:59Z2009-10-19T12:07:59Z"safer" in what respect? see <a href="http://stackoverflow.com/questions/420843/421147#421147" rel="nofollow" title="421147%23421147">stackoverflow.com/questions/420843/…</a>http://stackoverflow.com/questions/1551463/php-source-encryption-effectiveness-and-disadvantagesComment by hop on PHP Source Encryption - Effectiveness and Disadvantageshop2009-10-11T19:18:02Z2009-10-11T19:18:02Znobody is interested in your codehttp://stackoverflow.com/questions/1551463/php-source-encryption-effectiveness-and-disadvantages/1551490#1551490Comment by hop on PHP Source Encryption - Effectiveness and Disadvantageshop2009-10-11T19:17:02Z2009-10-11T19:17:02Zyou mean lawyer?