User Jerub - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T02:59:00Zhttp://stackoverflow.com/feeds/user/14648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1592925/decoding-mac-os-text-in-python/1592936#15929365Answer by Jerub for Decoding Mac OS text in PythonJerub2009-10-20T07:09:54Z2009-10-20T07:09:54Z<p>You can use the python codecs for these that are known by their names 'mac-roman', 'mac-turkish', etc.</p>
<pre><code>>>> 'foo'.decode('mac-turkish')
u'foo'
</code></pre>
<p>You'll have to refer to them by their names, these numbers you've got in your question don't appear in the source files. For more information look at <code>$pylib/encodings/mac_*.py</code>.</p>
http://stackoverflow.com/questions/1592565/determine-if-variable-is-defined-in-python/1592839#15928394Answer by Jerub for Determine if variable is defined in PythonJerub2009-10-20T06:40:47Z2009-10-20T06:40:47Z<p>The correct answer to the question, "How do I discover if a variable is defined in python?" is the not-very-useful but entirely-pythonic answer:</p>
<p><em>Read the source file starting at the point where you want to discover if a variable is defined, going up in the file to the start of the source file. If you don't see the variable defined, then it is not defined.</em></p>
<p>To answer the real question you're asking, "Why is it not obvious how to deal with the situation where I have used the <code>del</code> keyword?"</p>
<p><em>Don't use the <code>del</code> keyword. It is not useful.</em></p>
http://stackoverflow.com/questions/625166/transparent-proxy-for-ipv6-traffic-under-linux3Transparent Proxy for IPv6 traffic under LinuxJerub2009-03-09T06:04:06Z2009-06-24T21:06:34Z
<p>When maintaining networks, it is often an expedient thing to do to run a transparent proxy. By transparent proxy I mean a proxy that 'hijacks' outgoing connections and runs them through a local service. Specifically I run a linux firewall with squid configured so that all tcp/ip connections fowarded on port 80 are proxied by squid.</p>
<p>This is achived using the iptables 'nat' table, using IPv4.</p>
<p>But iptables for IPv6 does not have a 'nat' table, so I cannot use the same implementation. What is a technique I can use to transparently proxy traffic for IPv6 connections?</p>
http://stackoverflow.com/questions/967443/python-module-to-shellquote-unshellquote/967459#9674595Answer by Jerub for Python module to shellquote/unshellquote?Jerub2009-06-08T23:02:40Z2009-06-08T23:25:43Z<p>You should never have to shell quote. The correct way to do a command is to not do shell quoting and instead use <a href="http://docs.python.org/3.0/library/subprocess.html#subprocess.call" rel="nofollow">subprocess.call</a> or <a href="http://docs.python.org/3.0/library/subprocess.html#subprocess.Popen" rel="nofollow">subprocess.Popen</a>, and pass a list of unquoted arguments. This is immune to shell expansion.</p>
<p>i.e.</p>
<pre><code>subprocess.Popen(['echo', '"', '$foo'], shell=False)
</code></pre>
<p>If you want to unquote shell quoted data, you can use <a href="http://docs.python.org/3.0/library/shlex.html?highlight=shlex#shlex.shlex" rel="nofollow">shlex.shlex</a> like this:</p>
<pre><code>list(shlex.shlex("hello stack 'overflow'\''s' quite cool"))
</code></pre>
http://stackoverflow.com/questions/948172/password-strength-meter2Password Strength MeterJerub2009-06-04T01:27:49Z2009-06-04T04:08:51Z
<p>I have a situation where I would like to be able to rate a users password in the web interface to my system, so that before they hit submit they know if they have a bad password.</p>
<p>Key Requirements:</p>
<ul>
<li>Must be able to rate the password, not just pass/fail.</li>
<li>Should disable the form if the password is below a threshhold, so the user can't submit it.</li>
<li>Look nice. :)</li>
<li>Not use jQuery - we're currently using Mochikit and Y!UI in this system.</li>
</ul>
<p>I've found many password meters written in jQuery, and things like <a href="http://www.passwordmeter.com/" rel="nofollow">http://www.passwordmeter.com/</a> that are too verbose.</p>
<p>Can anyone suggest a good drop in javascript password rater I can use, or give an example of how to write one?</p>
http://stackoverflow.com/questions/700016/format-a-number-as-a-string/700060#7000602Answer by Jerub for Format a number as a stringJerub2009-03-31T05:02:34Z2009-03-31T05:13:02Z<p>You can just use the <code>%*d</code> formatter to give a width. <code>int(math.ceil(math.log(x, 10)))</code> will give you the number of digits. The <code>*</code> modifier consumes a number, that number is an integer that means how many spaces to space by. So by doing <code>'%*d'</code> % (width, num)` you can specify the width AND render the number without any further python string manipulation. </p>
<p>Here is a solution using math.log to ascertain the length of the 'outof' number.</p>
<pre><code>import math
num = 5
outof = 52500
formatted = '%*d/%d' % (int(math.ceil(math.log(outof, 10))), num, outof)
</code></pre>
<p>Another solution involves casting the outof number as a string and using len(), you can do that if you prefer:</p>
<pre><code>num = 5
outof = 52500
formatted = '%*d/%d' % (len(str(outof)), num, outof)
</code></pre>
http://stackoverflow.com/questions/665942/how-to-write-a-function-that-takes-a-string-and-prints-the-letters-in-decreasing/665980#6659805Answer by Jerub for How to write a function that takes a string and prints the letters in decreasing order of frequency?Jerub2009-03-20T12:44:10Z2009-03-23T23:13:41Z<p>This should do it nicely.</p>
<pre><code>def frequency_analysis(string):
d = dict()
for key in string:
d[key] = d.get(key, 0) + 1
return d
def letters_in_order_of_frequency(string):
frequencies = frequency_analysis(string)
# frequencies is of bounded size because number of letters is bounded by the dictionary, not the input size
frequency_list = [(freq, letter) for (letter, freq) in frequencies.iteritems()]
frequency_list.sort(reverse=True)
return [letter for freq, letter in frequency_list]
string = 'aabbbc'
print letters_in_order_of_frequency(string)
</code></pre>
http://stackoverflow.com/questions/665536/how-do-i-go-about-writting-a-program-to-send-and-receive-sms-using-python/665881#6658810Answer by Jerub for How do i go about writting a program to send and receive sms using python?Jerub2009-03-20T12:10:32Z2009-03-20T12:10:32Z<p>I have recently written some code for interacting with Huawei 3G USB modems in python.</p>
<p>My initial prototype used pyserial directly, and then my production code used Twisted's Serial support so I can access the modem asynchronously.</p>
<p>I found that by accessing the modem programatically using the serial port I was able to access all the functionality required to send and receive SMS messages using Hayes AT commands and extensions to the AT command set.</p>
<p>This is the <a href="http://wiki.forum.nokia.com/index.php/AT%5FCommands" rel="nofollow">one of the referneces</a> I was able to find on the topic, it lists these commands:</p>
<pre><code>AT+CMGL List Messages
AT+CMGR Read message
AT+CMGS Send message
AT+CMGW Write message to memory
</code></pre>
<p>They are complicated commands and take arguments and you have to parse the results yourself.</p>
<p><a href="http://www.developershome.com/sms/cmgsCommand.asp" rel="nofollow">There are more references</a> on the internet you can google for that reference these 4 commands that will let you work out how your modem works.</p>
http://stackoverflow.com/questions/665830/access-sql-many-to-many-query/665845#6658450Answer by Jerub for Access SQL many to many queryJerub2009-03-20T12:01:15Z2009-03-20T12:01:15Z<p>You can use the <code>foo not in (select ... from bar)</code> SQL subquery expression to do this.</p>
<pre><code>SELECT AID, Name FROM Author
WHERE Author.AID NOT IN (SELECT AuthorOfTitle.AID FROM AuthorOfTitle)
</code></pre>
http://stackoverflow.com/questions/665625/is-it-possible-to-multiplex-socket-connections/665757#6657571Answer by Jerub for IS it possible to multiplex socket connections?Jerub2009-03-20T11:30:26Z2009-03-20T11:30:26Z<p>This is an interesting question about scaling in a serious situation.</p>
<p>You are essentially asking, "How do I establish N connections to an internet service, where N is >= 250,000".</p>
<p>The only way to do this effectively and efficiently is to cluster. You cannot do this on a single host, so you will need to be able to fragment and partition your client base into a number of different servers, so that each is only handling a subset.</p>
<p>The idea would be for a single server to hold open as few connections as possible (spreading out the connectivity evenly) while holding enough connections to make whatever service you're hosting viable by keeping inter-server communication to a minimum level. This will mean that any two connections that are related (such as two accounts that talk to each other a lot) will have to be on the same host.</p>
<p>You will need servers and network infrastructure that can handle this. You will need a subnet of ip addresses, each server will have to have stateless communication with the internet (i.e. your router will not be doing any NAT in order to not have to track 250,000+ connections).</p>
<p>You will have to talk to AOL. There is no way that AOL will be able to handle this level of connectivity without considering cutting your connection off. Any service of this scale would have to be negotiated with AOL so both you and they would be able to handle the connectivity.</p>
<p>There are i/o multiplexing technologies that you should investigate. Kqueue and epoll come to mind.</p>
<p>In order to write this massively concurrent and teleco grade solution, I would recommend investigating erlang. Erlang is designed for situations such as these (multi-server, massively-multi-client, massively-multithreaded telecommunications grade software). It is currently used for running Ericsson telephone exchanges.</p>
http://stackoverflow.com/questions/664219/uninitialized-value-in-python/664430#664430-3Answer by Jerub for Uninitialized value in Python?Jerub2009-03-19T23:19:25Z2009-03-20T04:46:07Z<p><strong>Q: How do I discover if a variable is defined at a point in my code?</strong></p>
<p><strong>A: Read up in the source file until you see a line where that variable is defined.</strong></p>
http://stackoverflow.com/questions/664991/box-drawing-in-python/665011#6650112Answer by Jerub for box drawing in pythonJerub2009-03-20T04:44:41Z2009-03-20T04:44:41Z<p>Printing them will print in the default character encoding, which perhaps is not the right encoding for your terminal.</p>
<p>Have you tried transcoding them to utf-8 first?</p>
<pre><code>print u'\u2500'.encode('utf-8')
print u'\u2501'.encode('utf-8')
print u'\u2502'.encode('utf-8')
print u'\u2503'.encode('utf-8')
print u'\u2504'.encode('utf-8')
</code></pre>
<p>This works for me on linux in a terminal that supports utf-8 encoded data.</p>
http://stackoverflow.com/questions/664294/just-declaring-a-variable-in-python/664386#6643861Answer by Jerub for Just declaring a variable in Python?Jerub2009-03-19T22:59:51Z2009-03-19T22:59:51Z<p>First of all, my response to the question you've originally asked</p>
<p><strong>Q: How do I discover if a variable is defined at a point in my code?</strong></p>
<p><strong>A: Read up in the source file until you see a line where that variable is defined.</strong></p>
<p>But further, you've given a code example that there are various permutations of that are quite pythonic. You're after a way to scan a sequence for elements that match a condition, so here are some solutions:</p>
<pre><code>def findFirstMatch(sequence):
for value in sequence:
if matchCondition(value):
return value
raise LookupError("Could not find match in sequence")
</code></pre>
<p>Clearly in this example you could replace the <code>raise</code> with a <code>return None</code> depending on what you wanted to achieve.</p>
<p>If you wanted everything that matched the condition you could do this:</p>
<pre><code>def findAllMatches(sequence):
matches = []
for value in sequence:
if matchCondition(value):
matches.append(value)
return matches
</code></pre>
<p>There is another way of doing this with <code>yield</code> that I won't bother showing you, because it's quite complicated in the way that it works.</p>
<p>Further, there is a one line way of achieving this:</p>
<pre><code>all_matches = [value for value in sequence if matchCondition(value)]
</code></pre>
http://stackoverflow.com/questions/661084/security-of-pythons-eval-on-untrusted-strings/661128#66112815Answer by Jerub for Security of Python's eval() on untrusted strings?Jerub2009-03-19T05:13:44Z2009-03-19T05:13:44Z<p><code>eval()</code> will allow malicious data to compromise your entire system, kill your cat, eat your dog and make love to your wife.</p>
<p>There was recently a thread about how to do this kind of thing safely on the python-dev list, and the conclusions were:</p>
<ul>
<li>It's really hard to do this properly.</li>
<li>It requires patches to the python interpreter to block many classes of attacks.</li>
<li>Don't do it unless you really want to.</li>
</ul>
<p>Start here to read about the challenge: <a href="http://tav.espians.com/a-challenge-to-break-python-security.html" rel="nofollow">http://tav.espians.com/a-challenge-to-break-python-security.html</a> </p>
<p>What situation do you want to use eval() in? Are you wanting a user to be able to execute arbitrary expressions? Or are you wanting to transfer data in some way? Perhaps it's possible to lock down the input in some way.</p>
http://stackoverflow.com/questions/661017/access-to-errno-from-python/661030#6610305Answer by Jerub for Access to errno from Python?Jerub2009-03-19T04:10:16Z2009-03-19T04:10:16Z<p>It looks like you can use this patch that will provide you with <code>ctypes.get_errno/set_errno</code></p>
<p><a href="http://bugs.python.org/issue1798" rel="nofollow">http://bugs.python.org/issue1798</a></p>
<p>This is the patch that was actually applied to the repository:</p>
<p><a href="http://svn.python.org/view?view=rev&revision=63977" rel="nofollow">http://svn.python.org/view?view=rev&revision=63977</a></p>
<p>Otherwise, adding a new C module that does nothing but return errno /is/ disgusting, but so is the library that you're using. I would do that in preference to patching python myself.</p>
http://stackoverflow.com/questions/660961/overriding-python-threading-thread-run/660974#6609749Answer by Jerub for Overriding python threading.Thread.run()Jerub2009-03-19T03:35:18Z2009-03-19T03:35:18Z<p>You really don't need to subclass Thread. The only reason the API supports this is to make it more comfortable for people coming from Java where that's the only way to do it sanely.</p>
<p>The pattern that we recommend you use is to pass a method to the Thread constructor, and just call .start().</p>
<pre><code> def myfunc(arg1, arg2):
print 'In thread'
print 'args are', arg1, arg2
thread = Thread(target=myfunc, args=(destination_name, destination_config))
thread.start()
</code></pre>
http://stackoverflow.com/questions/628956/privilege-escalation-in-web-environment-for-file-access1Privilege Escalation in Web Environment for File AccessJerub2009-03-10T04:42:25Z2009-03-11T22:02:29Z
<p>I have a situation where I would like to elevate the permissions I have in a web environment so that I can access a serial device. </p>
<p>The specific case is where I have a web interface for configuring a modem that comes up on <code>/dev/ttyUSB[0-9]</code>. </p>
<p>Zero or more modems will be plugged in by an end user. I am writing some software that is capable of discerning which is a USB Wireless Modem by reading <code>/sys/devices</code> and talking to the modem using some AT commands.</p>
<p>I would like to be able to open the device and do something like:</p>
<pre><code>ser = serial.Serial(tty, baudrate=115200, timeout=10)
ser.write('AT+CGSN\r\n')
imei = ser.readline()
</code></pre>
<p>The problem is that <code>pyserial</code> does this: <code>self.fd = os.open(self.portstr, os.O_RDWR|os.O_NOCTTY|os.O_NONBLOCK)</code> to open the serial port, where portstr is <code>/dev/ttyUSB0</code>, but it does it as the <code>nobody</code> user, which is unprivileged.</p>
<p>Serial ports on this system are owned by root:uucp and are set as 0660 (i.e. <code>rw-rw----</code>).</p>
<p>What is the best way for a user such as <code>nobody</code> who should have as few permissions as possible to open a file in dev?</p>
<p>Ideas I will consider:</p>
<ul>
<li>Doing things in a subprocess using <code>sudo</code>.</li>
<li>Changing permissions of the files in <code>/dev/</code> (instructions on how to do this properly using udev are appreciated!)</li>
<li>Using another API or piece of software I have not considered.</li>
</ul>
http://stackoverflow.com/questions/629518/how-do-i-send-a-http-post-value-to-a-php-page-using-python/630100#6301002Answer by Jerub for How do I send a HTTP POST value to a (PHP) page using Python?Jerub2009-03-10T13:15:45Z2009-03-10T13:15:45Z<p>When testing, or automating websites using python, I enjoy using twill. Twill is a tool that automatically handles cookies and can read HTML forms and submit them.</p>
<p>For instance, if you had a form on a webpage you could conceivably use the following code:</p>
<pre><code>from twill import commands
commands.go('http://example.com/create_product')
commands.formvalue('formname', 'product', 'new value')
commands.submit()
</code></pre>
<p>This would load the form, fill in the value, and submit it.</p>
http://stackoverflow.com/questions/625148/select-mails-from-inbox-alone-via-poplib/625175#6251753Answer by Jerub for Select mails from inbox alone via poplibJerub2009-03-09T06:09:32Z2009-03-09T06:09:32Z<p>POP3 has no concept of 'folders'. If gmail is showing you both 'sent' as well as 'received' mail, then you really don't have any option but to receive all that email.</p>
<p>Perhaps you would be better off using IMAP4 instead of POP3. Python has libraries that will work with gmail's IMAP4 server.</p>
http://stackoverflow.com/questions/617735/simultaneously-iterating-over-two-sets-of-elements-in-jquery/617747#6177474Answer by Jerub for Simultaneously Iterating Over Two Sets of Elements in jQueryJerub2009-03-06T05:25:51Z2009-03-06T05:25:51Z<p>What you are wanting to do is known as a 'zip' operation. This is something seen in functional programming languages quite a lot. It is a function that combines two sequences of equal length into a single sequence containing a pair (or n-tuple) of elements.</p>
<p>Here you can find an implementation of 'zip' for jquery. It's a jQuery plugin. <a href="http://code.google.com/p/jquery-utils/wiki/JqueryArrayUtils" rel="nofollow">Available on Google Code</a></p>
<p>It looks like you can use it like tihs:</p>
<pre><code>$.zip($("input.left"), $("input.right")).each(function () {
var left = this[0];
var right = this[1];
})
</code></pre>
http://stackoverflow.com/questions/617308/python-popen-closing-streams-and-multiple-processes/617346#6173463Answer by Jerub for Python Popen, closing streams and multiple processesJerub2009-03-06T00:49:17Z2009-03-06T00:49:17Z<p>This is not the sort of thing you should be doing directly in python, there are eccentricities regarding the how thing work that make it a much better idea to do this with a shell. If you can just use subprocess.Popen("foo | bar", shell=True), then all the better.</p>
<p>What might be happening is that gzip has not been able to output all of its input yet, and the process will no exit until its stdout writes have been finished.</p>
<p>You can look at what system call a process is blocking on if you use strace. Use <code>ps auxwf</code> to discover which process is the gzip process, then use <code>strace -p $pidnum</code> to see what system call it is performing. Note that stdin is FD 0 and stdout is FD 1, you will probably see it reading or writing on those file descriptors.</p>
http://stackoverflow.com/questions/598436/does-an-asynchronous-call-always-create-call-a-new-thread/617119#61711919Answer by Jerub for Does an asynchronous call always create/call a new thread?Jerub2009-03-05T23:14:38Z2009-03-05T23:14:38Z<p>This is an interesting question.</p>
<p>Asynchronous programming is a paradigm of programming that is principally single threaded, i.e. "following one thread of continuous execution".</p>
<p>You refer to javascript, so lets discuss that language, in the environment of a web browser. A web browser runs a single thread of javascript execution in each window, it handles events (such as onclick="someFunction()") and network connections (such as xmlhttprequest calls).</p>
<pre><code><script>
function performRequest() {
xmlhttp.open("GET", "someurl", true);
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4) {
alert(xmlhttp.responseText);
}
}
xmlhttp.send(sometext);
}
</script>
<span onclick="performRequest()">perform request</span>
</code></pre>
<p>(This is a nonworking example, for demonstration of concepts only).</p>
<p>In order to do everything in an asynchronous manner, the controlling thread has what is known as a 'main loop'. A main loop looks kind of like this:</p>
<pre><code>while (true) {
event = nextEvent(all_event_sources);
handler = findEventHandler(event);
handler(event);
}
</code></pre>
<p>It is important to note that this is not a 'busy loop'. This is kind of like a sleeping thread, waiting for activity to occur. Activity could be input from the user (Mouse Movement, a Button Click, Typing), or it could be network activity (The response from the server).</p>
<p>So in the example above, </p>
<ol>
<li>When the user clicks on the span, a ButtonClicked event would be generated, findEventHandler() would find the onclick event on the span tag, and then that handler would be called with the event.</li>
<li>When the xmlhttp request is created, it is added to the all_event_sources list of event sources.</li>
<li>After the performRequest() function returns, the mainloop is waiting at the nextEvent() step waiting for a response. At this point there is nothing 'blocking' further events from being handled.</li>
<li>The data comes back from the remote server, nextEvent() returns the network event, the event handler is found to be the onreadystatechange() method, that method is called, and an alert() dialog fires up.</li>
</ol>
<p>It is worth nothing that alert() is a blocking dialog. While that dialog is up, no further events can be processed. It's an eccentricity of the javascript model of web pages that we have a readily available method that will block further execution within the context of that page.</p>
http://stackoverflow.com/questions/100298/code-analysis-in-python16Code Analysis In PythonJerub2008-09-19T07:40:22Z2009-02-22T09:57:22Z
<p>What tools are good to use for code analysis in python?</p>
<p>I have a large source repository split across multiple projects, and I would like to be able to run tools across the directories to see details like Cyclomatic Complexity, and perhaps be able to spot errors using static analysis.</p>
<p>Ideally, I would like to be able to produce a report about the health of the source code, so we can spot problem areas that need to be addressed.</p>
http://stackoverflow.com/questions/326922/using-curses-with-rawinput-in-python/327141#3271411Answer by Jerub for using curses with raw_input in pythonJerub2008-11-29T04:01:43Z2008-11-29T04:01:43Z<p>Use curses.textpad</p>
<p><a href="http://www.python.org/doc/2.4.1/lib/module-curses.textpad.html" rel="nofollow">http://www.python.org/doc/2.4.1/lib/module-curses.textpad.html</a></p>
http://stackoverflow.com/questions/315716/running-a-function-periodically-in-twisted-protocol/316559#3165595Answer by Jerub for Running a function periodically in twisted protocolJerub2008-11-25T07:12:05Z2008-11-26T03:34:33Z<p>You would probably want to do this in the Factory for the connections. The Factory is not automatically notified of every time a connection is made and lost, so you can notify it from the Protocol.</p>
<p>Here is a complete example of how to use twisted.internet.task.LoopingCall in conjunction with a customised basic Factory and Protocol to announce that '10 seconds has passed' to every connection every 10 seconds.</p>
<pre><code>from twisted.internet import reactor, protocol, task
class MyProtocol(protocol.Protocol):
def connectionMade(self):
self.factory.clientConnectionMade(self)
def connectionLost(self, reason):
self.factory.clientConnectionLost(self)
class MyFactory(protocol.Factory):
protocol = MyProtocol
def __init__(self):
self.clients = []
self.lc = task.LoopingCall(self.announce)
self.lc.start(10)
def announce(self):
for client in self.clients:
client.transport.write("10 seconds has passed\n")
def clientConnectionMade(self, client):
self.clients.append(client)
def clientConnectionLost(self, client):
self.clients.remove(client)
myfactory = MyFactory()
reactor.listenTCP(9000, myfactory)
reactor.run()
</code></pre>
http://stackoverflow.com/questions/311763/parsing-gps-receiver-output-via-regex-in-python/313431#3134312Answer by Jerub for Parsing GPS receiver output via regex in PythonJerub2008-11-24T04:49:39Z2008-11-24T04:49:39Z<p>Those are comma separated values, so using a csv library is the easiest solution.</p>
<p>I threw that sample data you have into /var/tmp/sampledata, then I did this:</p>
<pre><code>>>> import csv
>>> for line in csv.reader(open('/var/tmp/sampledata')):
... print line
['$GPRMC', '092204.999', '**4250.5589', 'S', '14718.5084', 'E**', '1', '12', '24.4', '**89.6**', 'M', '', '', '0000\\*1F']
['$GPRMC', '093345.679', '**4234.7899', 'N', '11344.2567', 'W**', '3', '02', '24.5', '**1000.23**', 'M', '', '', '0000\\*1F']
['$GPRMC', '044584.936', '**1276.5539', 'N', '88734.1543', 'E**', '2', '04', '33.5', '**600.323**', 'M', '', '', '\\*00']
['$GPRMC', '199304.973', '**3248.7780', 'N', '11355.7832', 'W**', '1', '06', '02.2', '**25722.5**', 'M', '', '', '\\*00']
['$GPRMC', '066487.954', '**4572.0089', 'S', '45572.3345', 'W**', '3', '09', '15.0', '**35000.00**', 'M', '', '', '\\*1F']
</code></pre>
<p>You can then process the data however you wish. It looks a little odd with the '**' at the start and end of some of the values, you might want to strip that stuff off, you can do:</p>
<pre><code>>> eastwest = 'E**'
>> eastwest = eastwest.strip('*')
>> print eastwest
E
</code></pre>
<p>You will have to cast some values as floats. So for example, the 3rd value on the first line of sample data is:</p>
<pre><code>>> data = '**4250.5589'
>> print float(data.strip('*'))
4250.5589
</code></pre>
http://stackoverflow.com/questions/80386/what-is-the-vim-feature-that-you-like-the-most7What Is The Vim Feature That You Like The Most?Jerub2008-09-17T05:52:51Z2008-11-14T21:19:48Z
<p>I am interested in what people use as their text editor, and would specifically like to know what is the feature of vim that you like the most?</p>
<p>In answering, please state what you mostly use vim to do, sysadmin tasks, programming, and in what language you mostly program in.</p>
http://stackoverflow.com/questions/285938/decomposing-html-to-link-text-and-target/285959#2859594Answer by Jerub for Decomposing HTML to link text and targetJerub2008-11-13T00:48:43Z2008-11-13T00:48:43Z<p>Here's a code example, showing getting the attributes and contents of the links:</p>
<pre><code>soup = BeautifulSoup.BeautifulSoup(urllib.urlopen(url))
for link in soup.findAll('a'):
print link.attrs, link.contents
</code></pre>
http://stackoverflow.com/questions/276647/how-to-find-a-locally-available-udp-port-with-unix-sockets-api/276658#2766583Answer by Jerub for How to find a locally available UDP port with unix Sockets APIJerub2008-11-09T23:20:35Z2008-11-09T23:20:35Z<p>Yes. Specify 0 as the port. The OS will pick an available port for you.</p>
http://stackoverflow.com/questions/271364/vim-variable-that-holds-list-of-all-open-buffers/271381#2713810Answer by Jerub for vim: variable that holds "list of all open buffers"?Jerub2008-11-07T06:31:12Z2008-11-07T06:31:12Z<p>You can do this:</p>
<pre><code>:bufdo vimgrep /pattern/ %
</code></pre>
<p>% substitutes the buffer name.</p>
http://stackoverflow.com/questions/700016/format-a-number-as-a-string/700060#700060Comment by Jerub on Format a number as a stringJerub2009-04-01T00:43:04Z2009-04-01T00:43:04ZAh interesting. that's why you shouldn't test on a single value, and test on edge cases.http://stackoverflow.com/questions/665652/extract-array-from-list-in-python/665743#665743Comment by Jerub on Extract array from list in pythonJerub2009-03-20T11:47:35Z2009-03-20T11:47:35ZThis will lose order of the lists.http://stackoverflow.com/questions/664294/just-declaring-a-variable-in-pythonComment by Jerub on Just declaring a variable in Python?Jerub2009-03-19T23:18:45Z2009-03-19T23:18:45ZYou've posted a duplicate question, voting to close this question in favour of the other one.http://stackoverflow.com/questions/661084/security-of-pythons-eval-on-untrusted-strings/661128#661128Comment by Jerub on Security of Python's eval() on untrusted strings?Jerub2009-03-19T22:13:30Z2009-03-19T22:13:30ZAny situation where a person on the greater internet to write untrusted code to run on your systems requires that the untrusted persons be unable to attack. "Who is this person" - if you wrote something insecure with eval() and I knew? It would be me to show you you shouldn't have done that.http://stackoverflow.com/questions/628956/privilege-escalation-in-web-environment-for-file-access/629493#629493Comment by Jerub on Privilege Escalation in Web Environment for File AccessJerub2009-03-11T21:48:17Z2009-03-11T21:48:17ZI already have a user with few permissions. I want to give them slightly more permission in a single context - not elevate its permissions for every python web script. I don't understand why you think that this is a solution to my problem?http://stackoverflow.com/questions/629518/how-do-i-send-a-http-post-value-to-a-php-page-using-python/630100#630100Comment by Jerub on How do I send a HTTP POST value to a (PHP) page using Python?Jerub2009-03-11T06:51:21Z2009-03-11T06:51:21Z"Doesn't work with forms that don't exist or are invalid" are two things that I don't care about. This is not a 'broken' thing.http://stackoverflow.com/questions/625166/transparent-proxy-for-ipv6-traffic-under-linux/631570#631570Comment by Jerub on Transparent Proxy for IPv6 traffic under LinuxJerub2009-03-10T23:00:50Z2009-03-10T23:00:50ZIs this actually possible? Any idea where I'd start with a tun implementation with ipv6 support?http://stackoverflow.com/questions/628956/privilege-escalation-in-web-environment-for-file-access/629256#629256Comment by Jerub on Privilege Escalation in Web Environment for File AccessJerub2009-03-10T13:01:55Z2009-03-10T13:01:55ZThis is probably the most workable idea suggested thus far.http://stackoverflow.com/questions/628956/privilege-escalation-in-web-environment-for-file-access/629569#629569Comment by Jerub on Privilege Escalation in Web Environment for File AccessJerub2009-03-10T13:01:10Z2009-03-10T13:01:10ZInteresting idea. I do have the code required to pass file descriptors over unix sockets, but if I were going this far, I would end up just doing the work in a daemon and communicating via a RPC mechanism.http://stackoverflow.com/questions/628956/privilege-escalation-in-web-environment-for-file-access/629493#629493Comment by Jerub on Privilege Escalation in Web Environment for File AccessJerub2009-03-10T13:00:11Z2009-03-10T13:00:11ZYuck, the idea is that the user remain unprivileged. If I wanted to run the web scripts as a different user I would. The idea is to give the user the least amount of capabilities possible.http://stackoverflow.com/questions/131756/poetry-for-programmersComment by Jerub on Poetry for programmers?Jerub2009-03-09T06:06:41Z2009-03-09T06:06:41ZIf <a href="http://stackoverflow.com/questions/517897/anyone-know-any-programming-related-poetry" rel="nofollow" title="anyone know any programming related poetry">stackoverflow.com/questions/517897/…</a> isn't offtopic, then neither is this question. I think it should be reopened.http://stackoverflow.com/questions/324643/what-is-the-equivalent-of-mapint-vectorint-in-python/324648#324648Comment by Jerub on What is the equivalent of map<int, vector<int> > in Python?Jerub2008-11-28T03:24:43Z2008-11-28T03:24:43ZThis is fundamentally a better way of doing things than than ddaa's response.http://stackoverflow.com/questions/189562/what-is-the-proper-name-for-doing-debugging-by-adding-print-statements/189596#189596Comment by Jerub on What is the proper name for doing debugging by adding 'print' statementsJerub2008-10-10T06:03:52Z2008-10-10T06:03:52ZI love how 'Debuggerphobia' rolls off the tongue. +1http://stackoverflow.com/questions/190145/how-to-insert-emoticons-in-latexComment by Jerub on How to insert emoticons in LaTeX?Jerub2008-10-10T05:32:56Z2008-10-10T05:32:56ZBEST QUESTION EVA!http://stackoverflow.com/questions/185510/how-can-i-concatenate-regex-literals-in-javascript/185529#185529Comment by Jerub on How can I concatenate regex literals in Javascript?Jerub2008-10-09T02:54:43Z2008-10-09T02:54:43ZSee the '.source' attribute I'm accessing. new RegExp(regex1.source + regex2.source) -> /asdfqwerty/