User wzzrd - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:51:31Zhttp://stackoverflow.com/feeds/user/36610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/705370/indentation-of-multiline-string3indentation of multiline stringwzzrd2009-04-01T12:56:32Z2009-04-01T13:49:01Z
<p>I have a script that uses the cmd Python module. The cmd module uses a triple quoted multiline string as it's help text. Something like this</p>
<pre><code>def x(self, strags = None):
"""class
help text here
and some more help text here"""
</code></pre>
<p>When running the script, the command 'help x' will print the string. It will, however, print the newlines in front of the last two lines as well. I can overcome this by not indenting these lines, but that'll make my code ugl{y,ier}. </p>
<p>How to overcome this indenting problem? How do the pro Python coders handle this?</p>
http://stackoverflow.com/questions/704828/what-is-the-best-language-for-text-processing/705019#705019-2Answer by wzzrd for What is the best language for text processing?wzzrd2009-04-01T11:03:57Z2009-04-01T11:03:57Z<p>When I learned Python, the instructor was pretty convinced that Python would about match the speed of C in text processing. I haven't verified this, but according to him, the code Python does text processing with, is C code. As such the initial startup of the Python script would be slower, but the running of the script would be (almost) just as fast as a C program. The re module is a C extension for Python, so it doesn't get much faster than that. Well, at least not in Python terms.</p>
http://stackoverflow.com/questions/704927/does-cron-expression-in-unix-linux-allow-specifying-exact-start-and-end-dates/704949#704949-1Answer by wzzrd for Does cron expression in unix/linux allow specifying exact start and end dateswzzrd2009-04-01T10:37:16Z2009-04-01T10:44:28Z<p>No, afaik, you cannot do that.</p>
<p>The cron fields hold the values for minutes, hours, day of month, month and day of week, respectively.</p>
<pre><code>10 5 10 * * means run at 5:10 on every 10th of every month.
10 5 * 12 * means run at 5:10 on every day in december
10 5 * * 1 means run at 5:10 every Monday
</code></pre>
<p>You can make it run on a series of specific months, as the crontab format does accept ranges. April through December would be 4-12 in that case for the month field. But that does not take into account your wish for having this limited to 2009.</p>
<p>There is no mechanism to set start and stop dates for cronjob. You can always script this of course. Make a cronjob run every day and check the current date to be before 30/12. If it is 31/12 make it remove itself. Or something more thought through.</p>
<p>A crontab of </p>
<pre><code>0 7 * * 6-12 command_X
</code></pre>
<p>would do what you want partially, but it would start at June 1st and run through December 31st. Skipping the first part of June and December 31st would have to be scripted in the X command.</p>
http://stackoverflow.com/questions/697281/importing-in-python/697299#6972993Answer by wzzrd for Importing in Pythonwzzrd2009-03-30T13:52:52Z2009-03-30T13:57:08Z<p>Append the location to the module to <code>sys.path</code>. </p>
<p>Edit: (to counter the post below ;-) )
<code>os.path</code> does something completely different. You need to use <code>sys.path</code>.</p>
<pre><code>sys.path.append("/home/me/local/modules")
</code></pre>
http://stackoverflow.com/questions/670488/how-to-manage-long-paths-in-bash/676666#6766662Answer by wzzrd for How to manage Long Paths in Bash?wzzrd2009-03-24T09:32:20Z2009-03-24T09:32:20Z<p>You might want to consider using a script like <a href="http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/245784#245784">this</a> in your .bashrc. I've used it on a daily basis ever since I read that post. Pretty bloody useful.</p>
http://stackoverflow.com/questions/629755/creating-an-encrypted-log-file/629762#6297623Answer by wzzrd for Creating an encrypted log filewzzrd2009-03-10T11:35:05Z2009-03-10T11:35:05Z<p>This is not really my thing, I'll admit that readily, but can't you encrypt each entry individually and then append it to the logfile? If you that refrain from encrypting the timestamp, you can easily find entries your are looking for and decrypt those when needed.</p>
<p>My point being mainly that appending individual encrypted entries to a file does not necessarily need to be binary entries appended to a binary file. Encryption with (for example) gpg will yield ascii garble that can be appended to an ascii file. Would that solve you problem? </p>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/497415#4974151Answer by wzzrd for What is the most useful script you've written for everyday life?wzzrd2009-01-30T21:56:06Z2009-01-30T21:56:06Z<p>I wrote some lines of code to automatically tweak all things powertop suggests when I unplug my laptop and undo that if I plug the laptop back in. Maximum power, maximum efficiency, maximum convenience.</p>
http://stackoverflow.com/questions/450378/how-to-choose-an-open-source-license-for-an-app/450404#4504042Answer by wzzrd for How to choose an open source license for an app?wzzrd2009-01-16T13:28:09Z2009-01-16T14:34:03Z<p>Not as far as I know, but then, choosing a GPLv{2,3} or BSD license can become somewhat of a religion.
I assume you are familiar with the pretty complete list here <a href="http://www.opensource.org/licenses/alphabetical" rel="nofollow">http://www.opensource.org/licenses/alphabetical</a>.
What complicates matters is that though the difference between the GPL and BSD licenses is actually pretty clear, the differences between the dozens of other licenses is a bit less evident. To say the least. </p>
<p>Choosing between GPL and BSD is mainly a matter of in howfar you are willing to accept people using your code in their products and making the code closed (common criticism of GPL-people against BSD) or other people not being able to make money using your code at all (common criticism (but a misunderstanding) of BSD-people against GPL). (IANAL, of course; well, not quite anyway...)</p>
<p>If you find a place used to make a choice, I would be more than interested in knowing about it!</p>
<p>Edit: thinking about this, I've come to realize that setting up such a website would be a cool, but extremely difficult thing to do. CC has only so many licenses, but the OSI knows dozens. Each is distinct in it's own little way; very subtle differences exists, but also vast gaps between different licenses. And even though I went to law school (and ended up working in IT :D), I would have trouble creating a question-and-answer scheme by which to pick a license. </p>
<p>And even if one could find the time and had the expertise to write the code and understand the licenses in detail, then still there would be a problem. Here's were the religion-like aspect of open source licenses kicks in. <em>Everybody</em> is biased in this world. Personally, I lean a little towards GPLv3, but two of my colleagues are pretty fanatical in their support for BSD. One of my former professors is a BSD-guy too, but I'm aware of some prominent professors at other universities to support the GPL.</p>
<p>And then, if you manage to venture beyond technical knowledge, basic legal understanding of the licenses and religion, there's interpretation. I've read many piecese about (mainly) BSD and GPL in which many different interpretations were expressed. True, this can be due to ignorance or plain stupidity (did I admit I'm biased myself?), but it can also be due to different legal opinions. I remember a discussion I once had with my professor about BSD vs. GPL in which we both expressed opinions which could both (I think) be legally valid, but from which followed very different consequences from using a certain license.</p>
<p>An interesting, but complicated matter.</p>
http://stackoverflow.com/questions/410507/linux-server-account-management/412665#4126650Answer by wzzrd for Linux server account managementwzzrd2009-01-05T09:39:43Z2009-01-05T09:39:43Z<p>If you can handle the packaging issue (it's not available packaged for Ubuntu), you might want to consider FreeIPA. FreeIPA is an integrated, easily manageable Kerberos / LDAP solution.</p>
<p>Personally, I work with pam_krb5 to authenticate against AD. You will have some issues to work around there too: assuming you do not want to have anonymous lookups, system LDAP lookups must be authenticated / secure somehow. This means you must either use system accounts over an LDAPS connection to do account lookups from the Linux machine, but this means having the password of that account in /etc/ldap.conf. </p>
<p>Or you can set up to authenticate the Linux machines via Kerberos themselves to do LDAP account lookups on the DC. This last option means joining them to the AD domain though, so must log into the machines again and join them.</p>
<p>Likewise works pretty wel for me in other setups btw: I haven't done a rejoin <em>ever</em>, but apparently you are not that lucky.</p>
http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0/410838#4108381Answer by wzzrd for If I'm going to learn Python, should I learn 2.x or just jump into 3.0?wzzrd2009-01-04T11:05:44Z2009-01-04T11:05:44Z<p>while there are enough differences, python 3 is not a new language. And python 2.x will be here for a long time still. Imho you're safe to start learning python 2. Keep in mind btw, that 'Python in a nutshell' is a (good) reference guide, <em>not</em> a tutorial!</p>
http://stackoverflow.com/questions/380817/best-way-to-simulate-group-by-from-bash/383395#3833950Answer by wzzrd for Best way to simulate "group by" from bashwzzrd2008-12-20T15:10:58Z2008-12-20T17:17:17Z<p>I understand you are looking for something in Bash, but in case someone else might be looking for something in Python, you might want to consider this:</p>
<pre><code>mySet = set()
for line in open("ip_address_file.txt"):
line = line.rstrip()
mySet.add(line)
</code></pre>
<p>As values in the set are unique by default and Python is pretty good at this stuff, you might win something here. I haven't tested the code, so it might be bugged, but this might get you there. And if you want to count occurrences, using a dict instead of a set is easy to implement. </p>
<p>Edit:
I'm a lousy reader, so I answered wrong. Here's a snippet with a dict that would count occurences.</p>
<pre><code>mydict = {}
for line in open("ip_address_file.txt"):
line = line.rstrip()
if line in mydict:
mydict[line] += 1
else:
mydict[line] = 1
</code></pre>
<p>The dictionary mydict now holds a list of unique IP's as keys and the amount of times they occurred as their values.</p>
http://stackoverflow.com/questions/379385/ide-that-provide-autocompletion-and-error-detection-for-linux-bash-or-shell-scrip/383487#3834871Answer by wzzrd for IDE that provide autocompletion and error detection for Linux bash or shell scripting?wzzrd2008-12-20T17:06:21Z2008-12-20T17:06:21Z<p>Red Hat splits up the VIM RPM's into vim-minimal, vim-enhanced and then some. You need the vim-enhanced RPM's to do syntax highlighting. As CentOS is nothing more than repackaged RHEL, the same goes for CentOS. And if it has to be for Windows: GVim is readily available.</p>
<p>You could see the syntax highlighting by itself as a form of error detection. If you make an error in parenthesis, curly braces or something, you'll see that you syntax highlighting breaks, showing you that there's something wrong and where it went wrong.</p>
<p>As for the completion: most commands in Bash are really short, but CTRL-N will autocomplete anything in a file you have used before in that file.</p>
http://stackoverflow.com/questions/325565/linux-filesystem-benchmarking-best-practices3Linux filesystem benchmarking best practiceswzzrd2008-11-28T11:39:42Z2008-12-11T11:31:32Z
<p>(Not really a programming question, sorry)</p>
<p>I'm working on benchmarking various filesystems (most importantly: ext3) with various filesystem options (for instance: noatime, relatime etc.) for specific situations on a Linux box.</p>
<p>For raw filesystem benchmarks, I'm looking into bonnie and bonnie++. </p>
<p>What is the most useful way to use bonnie and bonnie++ to benchmark filesystems? <br/>
What are best practices with regard to filesystem benchmarking? <br/>
While we're at it: how do you mount your ext3 filesystems on your machines?</p>
http://stackoverflow.com/questions/325565/linux-filesystem-benchmarking-best-practices/359048#3590483Answer by wzzrd for Linux filesystem benchmarking best practiceswzzrd2008-12-11T11:31:32Z2008-12-11T11:31:32Z<p>I'not getting a lot of answers on this ;-) so I'll attempt to explain what my ideas are.</p>
<p>Eventually, I went for iozone as a benchmarking tool, mainly because of the overwhelming amount of information it provides.</p>
<p>IMHO, if one tries to find statistically significant data, one run of a benchmark is not enough, so I wrote a little shell script to run iozone 10 times and write the output to 10 logfiles. </p>
<p>Then, I wrote another script (this one in Python) to add up all the values for each cell in the matrices. The highest and lowest value for each cell are discarded in order to prevent anomalies distorting reality ;-)</p>
<p>For each cell, I take the average value of the eight remaining values. I copied the resulting matrix into OpenOffice.org Calc.</p>
<p>I did this procedure for a 'baseline' (in my case: a ext3 filesystem mounted with default options) and then repeated it for my tests.</p>
<p>Per test, I copied the matrix of the result into the spreadsheet where I had the baseline stored. In Calc, I did my comparison and plotted the results in diagrams.</p>
<p>Works pretty well.</p>
http://stackoverflow.com/questions/292806/how-can-i-access-a-different-object-collection-in-a-view-in-rails/294479#2944790Answer by wzzrd for How can I access a different object collection in a view in Rails?wzzrd2008-11-16T22:19:05Z2008-11-16T22:19:05Z<p>The error suggests you foo object is empty.</p>
<p>If you want all Foo's connected with the current user object, you use </p>
<pre><code>my_user = User.find(1) # finds user with id no. 1
list_of_foos = my_user.foos # finds all foos associated with my_user
</code></pre>
<p>should work</p>
<p>If you are looking for all foo's, no matter what their association, you use</p>
<pre><code>list_of_foos = Foo.find(:all)
</code></pre>
<p>This might not be up to the Rails syntax that's currently in fashion: it's been a while since I actively did Rails development, but this if I understand the question right, this should help you. Good luck. </p>
http://stackoverflow.com/questions/107603/is-there-still-any-reason-to-learn-awk/284576#2845761Answer by wzzrd for Is there still any reason to learn AWK ?wzzrd2008-11-12T16:49:14Z2008-11-12T16:49:14Z<p>I'd say there is. For simple stuff, AWK is a lot easier on the inexperienced sysadmin / developer than Python. You can learn a little AWK and do a lot of things, learning Python means learning a whole new language (yes, I know AWK is a language is a sense too).</p>
<p>Perl might be able to do a lot of things AWK can do, but offered the choice in this day and age I would choose Python here. So yes, you should learn AWK. but learn Python too :-)</p>
http://stackoverflow.com/questions/283185/retrieving-client-system-information-from-a-rails-application/284551#2845513Answer by wzzrd for Retrieving client system information from a Rails applicationwzzrd2008-11-12T16:41:42Z2008-11-12T16:41:42Z<p>I'm pretty sure it is not possible to parse the /proc filesystem of a client computer through a Rails applications (and thank God for that).</p>
<p>What you could do is make use of Javascript to some extent. There are quite some sites on the internet (mainly privacy scanners) which make use of Javascript to show extensive information about a client system. This might even work for the type of CPU of the client uses (assuming that is what you mean by 'CPUID').</p>
<p>What neither Javascript nor Rails can do for you though, is show you the MAC address of a client (assuming with 'macid' you mean a MAC address). If you take a deeper look into the way TCP/IP networking is done, you'll notice that this is by design. A computer in another network segment (say, the internet) is never intended to know your MAC address, nor does it need to.</p>
<p>If you really want to know someone's MAC, you'll need to use something like a Java applet or an ActiveX control (though that limits you to a certain platform). Those things should prompt your user for confirmation / permission before sending out privacy sensitive information like MAC addresses, which is a Good Thing.</p>
http://stackoverflow.com/questions/97816/do-you-disable-selinux/284334#2843341Answer by wzzrd for Do you disable SELinux?wzzrd2008-11-12T15:41:06Z2008-11-12T15:41:06Z<p>Sadly, I turn SELinux off most of the time too, because a good amount of third-party applications, like Oracle, do not work very well with SELinux turned on and / or are not supported on platforms running SELinux. </p>
<p>Note that Red Hat's own Satellite product requires you to turn off SELinux too, which - again, sadly - says a lot about difficulties people are having running complex applications on SELinux enabled platforms.</p>
<p>Usage tips that may or may not be useful to you: SELinux can be turned on and off at runtime by using setenforce (use getenforce to check current status). restorecon can be helpful in situations where chcon is cumbersome, but ymmv. </p>
http://stackoverflow.com/questions/715417/converting-from-a-string-to-boolean-in-python/715468#715468Comment by wzzrd on Converting from a string to boolean in Python?wzzrd2009-04-03T20:09:31Z2009-04-03T20:09:31Z+1 elegant solutionhttp://stackoverflow.com/questions/697281/importing-in-python/697299#697299Comment by wzzrd on Importing in Pythonwzzrd2009-03-31T06:10:53Z2009-03-31T06:10:53Zomg. I was so wondering about being offensive, I missed the 'being stupid' part. Sorry about that. It was a very poor formulated comment, so I'll just remove it so it'll cause no further harm :-)http://stackoverflow.com/questions/697281/importing-in-python/697299#697299Comment by wzzrd on Importing in Pythonwzzrd2009-03-30T14:16:00Z2009-03-30T14:16:00Znot sure what I said to offend you there, but there was no ill intent.http://stackoverflow.com/questions/670488/how-to-manage-long-paths-in-bash/676666#676666Comment by wzzrd on How to manage Long Paths in Bash?wzzrd2009-03-27T09:29:50Z2009-03-27T09:29:50ZAh, yes, you might want to replace the 'print' statements with 'echo'. ;-)http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/245784#245784Comment by wzzrd on What is the most useful script you've written for everyday life?wzzrd2009-03-27T09:27:00Z2009-03-27T09:27:00ZAh, yes, you might want to replace the 'print' statements with 'echo'. ;-)http://stackoverflow.com/questions/616645/how-do-i-duplicate-sys-stdout-to-a-log-file-in-python/616709#616709Comment by wzzrd on How do I duplicate sys.stdout to a log file in python?wzzrd2009-03-17T16:21:42Z2009-03-17T16:21:42Z+1 for doing it without re-inventing the wheelhttp://stackoverflow.com/questions/643143/how-to-keep-a-files-format-if-you-use-the-uniq-command-in-shellComment by wzzrd on How to keep a file's format if you use the uniq command (in shell)?wzzrd2009-03-13T15:12:56Z2009-03-13T15:12:56ZDo you want to keep only the first occurrence of the pattern? Or only the last? You have to be a bit more specific than this...http://stackoverflow.com/questions/629755/creating-an-encrypted-log-file/632296#632296Comment by wzzrd on Creating an encrypted log filewzzrd2009-03-10T21:28:19Z2009-03-10T21:28:19ZAlthough I like the idea of encrypting log entry B with information from log entry A, I'm not sure whether plugging your own product here is really appropriate... (If it is deemed appropriate, I'll be the first to humbly remove this comment, of course ;-)) http://stackoverflow.com/questions/618193/can-i-include-flash-content-inside-a-silverlight-appComment by wzzrd on Can I include flash content inside a silverlight app?wzzrd2009-03-06T11:05:28Z2009-03-06T11:05:28ZIs there a good reason not to go with Flash for the whole application, as you obviously require features that Flash provides, but Silverlight doesn't (not to mentioned the broader userbase Flash is going to bring you)?http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/398647#398647Comment by wzzrd on What is the most useful script you've written for everyday life?wzzrd2009-02-05T20:33:15Z2009-02-05T20:33:15Z Of course I don't know what platform you're on, but is there a reason you're not just using head or tail for this?http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/245724#245724Comment by wzzrd on What is the most useful script you've written for everyday life?wzzrd2009-01-30T22:00:17Z2009-01-30T22:00:17Z+1 Absolutely <i>f*'ing brilliant! I will be using this a *lot</i>!http://stackoverflow.com/questions/450378/how-to-choose-an-open-source-license-for-an-app/450404#450404Comment by wzzrd on How to choose an open source license for an app?wzzrd2009-01-16T14:33:38Z2009-01-16T14:33:38ZAh, I see what you mean; I didn't mean to imply this. I meant this to be a reflection of a common criticism (actually, a misunderstanding) heard from BSD-people about the GPL. I'll fix this. http://stackoverflow.com/questions/450378/how-to-choose-an-open-source-license-for-an-app/450404#450404Comment by wzzrd on How to choose an open source license for an app?wzzrd2009-01-16T13:53:24Z2009-01-16T13:53:24ZIf only I had some time to spare, I'd happily join you...http://stackoverflow.com/questions/380817/best-way-to-simulate-group-by-from-bash/383395#383395Comment by wzzrd on Best way to simulate "group by" from bashwzzrd2008-12-20T16:59:06Z2008-12-20T16:59:06ZDoh. Bad reading of the question, sorry. I originally had a little something about using a dict to store the amount of times each IP address occured, but removed it, because, well, I didn't read the question very well.
* tries to wake up properly