User Andrea Ambu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T22:42:08Zhttp://stackoverflow.com/feeds/user/21384http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1924920/how-to-speed-up-andorid-emulation2How to speed up Andorid Emulation?Andrea Ambu2009-12-17T22:05:10Z2009-12-17T22:45:20Z
<p>I'm trying to get started with Android development. </p>
<p>I'm using eclipse on Linux and using a Pentium IV @3.2Gh with 1GB of ram.
I've just followed the "hello android" howto, with just one sad result: the virtualization is too slow. </p>
<p>It seems that launching the virtual machine <em>has</em> to be slow, and it will be slow even if I'll use a better computer. </p>
<p>With slow I mean it takes almost 10 minutes to see "hello android" and if I change it to "hello world" it takes an other 10 minutes... </p>
<p>How can I solve it? Is it possible to make eclipse load again my app in the <em>current and running</em> virtual machine without opening a new one? </p>
http://stackoverflow.com/questions/164414/how-to-inverse-match-with-regex5How to "inverse match" with regex?Andrea Ambu2008-10-02T20:27:08Z2009-12-15T19:57:06Z
<p>I'm using RegexBuddy but I'm in trouble anyway with this thing :\</p>
<p>I'm processing line by line a file. I built a "line model" to match what I want.</p>
<p>Now i'd like to do an inverse match... i.e. I want to match lines where there is a string of 6 letters, but only if these six letters are <strong>not</strong> <em>Andrea</em>, how should I do that?</p>
<p><hr /></p>
<p><strong>EDIT:</strong> I'll write the program that uses this regex, I don't know yet if in python or php, I'm doing this thing first to learn some regex :) There are different <em>types</em> of line, I wanted to use regex to select the type i'm interested in. Once I got these lines I've to apply an other filter just to do not match a known value, I need all the others, not that. The (?!not-wanted) is working pretty fine, thank you :-)</p>
<p>I hope this clarifies the question :)</p>
http://stackoverflow.com/questions/1893816/how-to-override-ord-behaivour-in-python-for-str-childs/1893950#18939500Answer by Andrea Ambu for How to override ord behaivour in Python for str childs?Andrea Ambu2009-12-12T16:44:49Z2009-12-12T16:44:49Z<p>Somebody already posted the builtin ord code, and there is no method call you may intercept.</p>
<p>One solution could be override the ord function, for example:</p>
<pre><code>backup_ord = ord
def ord(obj):
if hasattr(obj, '__ord__'):
return obj.__ord__()
else:
return backup_ord(obj)
</code></pre>
<p>Then you define your class with the <code>__ord__</code> method and do something like:</p>
<pre><code>class MyStr(str):
def __ord__(self):
return 'LOL'
</code></pre>
<p>For tests:</p>
<pre><code>normal_five = '5'
strange_five = MyStr('5')
print ord(normal_five)
print ord(strange_five)
</code></pre>
<p>Outputs:</p>
<pre><code>53
LOL
</code></pre>
http://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha12What is MATLAB good for? Why is it so used by universities? When is it better than Python?Andrea Ambu2008-10-07T19:11:46Z2009-12-11T21:00:44Z
<p>I've been recently asked to learn some MATLAB basics for a class.</p>
<p>What does make it so cool for researchers and people that works in university?
I saw it's cool to work with matrices and plotting things... (things that can be done easily in Python using some libraries).</p>
<p>Writing a function or parsing a file is just painful. I'm still at the start, what am I missing?</p>
<p>In the "real" world, what should I think to use it for? When should it can do better than Python? For better I mean: easy way to write something performing.</p>
<p><hr /></p>
<p><strong>UPDATE 1:</strong> One of the things I'd like to know the most is "Am I missing something?" :D</p>
<p><strong>UPDATE 2:</strong> Thank you for your answers. My question is not about buy or not to buy MATLAB. The university has the possibility to give me a copy of an old version of MATLAB (MATLAB 5 I guess) for free, without breaking the license. I'm interested in its capabilities and if it deserves a deeper study (I won't need anything more than <em>basic</em> MATLAB in oder to pass the exam :P ) it will really be better than Python for a specific kind of task in the real world.</p>
http://stackoverflow.com/questions/1867715/iteration-in-a-single-line/1867906#18679060Answer by Andrea Ambu for Iteration in a single lineAndrea Ambu2009-12-08T15:59:40Z2009-12-08T15:59:40Z<p>You can create such snippets using semicolons <strong>;</strong> if you need to execute more than one instruction inside the loop, here is an example:</p>
<pre><code>for i in xrange(nIterations): x=f(i); y=f(x); z=f(y)
</code></pre>
http://stackoverflow.com/questions/137783/given-a-function-which-produces-a-random-integer-in-the-range-1-to-5-write-a-fun/1851459#18514590Answer by Andrea Ambu for Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7Andrea Ambu2009-12-05T07:27:01Z2009-12-05T07:27:01Z<p>The function you need is *rand1_7()*, I wrote rand1_5() so that you can test it and plot it.</p>
<pre><code>import numpy
def rand1_5():
return numpy.random.randint(5)+1
def rand1_7():
q = 0
for i in xrange(7): q+= rand1_5()
return q%7 + 1
</code></pre>
http://stackoverflow.com/questions/1829470/ranking-elements-of-multiple-lists-by-their-count-in-python/1829617#18296170Answer by Andrea Ambu for Ranking Elements of multiple Lists by their count in PythonAndrea Ambu2009-12-01T23:12:48Z2009-12-01T23:12:48Z<p>Try this one:</p>
<pre><code>def rank(*lists):
d = dict()
for lst in lists:
for e in lst:
if e in d: d[e] += 1
else: d[e] = 1
return [j[1] for j in sorted([(d[i],i) for i in d], reverse=True)]
</code></pre>
<p>Usage example:</p>
<pre><code>a = [1,2,3,4]
b = [4,5,6,7]
c = [4,1,8,9]
print rank(a,b,c)
</code></pre>
<p>You can use any number of lists as input</p>
http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1809636#18096360Answer by Andrea Ambu for Code Golf: Ulam SpiralAndrea Ambu2009-11-27T16:29:20Z2009-11-28T15:48:51Z<h2>Python <del>284 266 256 243 242</del> 240 char</h2>
<p>I wanted to try recursion, I'm sure it may be heavily shortened:</p>
<pre><code>r=range
def f(n):
if n<2:return[[4]]
s=2*n-1;z=s*s;c=[r(z-2*s+2,z-3*s+2,-1)];e=1
for i in f(n-1):c+=[[c[0][0]+e]+i+[c[0][-1]-e]];e+=1
c+=[r(z-s+1,z+1)];return c
for l in f(input()):print''.join(' *'[all(x%f for f in r(2,x))]for x in l)
</code></pre>
<p>edited under suggestion in comments</p>
http://stackoverflow.com/questions/1752662/beautifulsoup-easy-way-to-to-obtain-html-free-contents3BeautifulSoup - easy way to to obtain HTML-free contents.Andrea Ambu2009-11-17T23:38:20Z2009-11-18T00:45:42Z
<p>I'm using this code to find all interesting links in a page:</p>
<pre><code>soup.findAll('a', href=re.compile('^notizia.php\?idn=\d+'))
</code></pre>
<p>And it does its job pretty well. Unfortunately inside that <strong>a</strong> tag there are a lot of nested tags, like <strong>font</strong>, <strong>b</strong> and different things... I'd like to get just the text content, without any other html tag.</p>
<p>Example of link:</p>
<pre><code><A HREF="notizia.php?idn=1134" OnMouseOver="verde();" OnMouseOut="blu();"><FONT CLASS="v12"><B>03-11-2009:&nbsp;&nbsp;<font color=green>CCS Ingegneria Elettronica-Sportello studenti ed orientamento</B></FONT></A>
</code></pre>
<p>Of course it's ugly (and the markup is not always the same!) and I'd like to get:</p>
<pre><code>03-11-2009: CCS Ingegneria Elettronica-Sportello studenti ed orientamento
</code></pre>
<p>In the documentation it says to use <code>text=True</code> in findAll method, but it will ignore my regex. Why? How can I solve that?</p>
http://stackoverflow.com/questions/1313805/what-is-this-construct-called-in-python-x-y/1737602#17376020Answer by Andrea Ambu for What is this construct called in python: ( x, y ) Andrea Ambu2009-11-15T14:07:59Z2009-11-15T14:07:59Z<p>It's a <em>list</em> of just one <em>tuple</em>. That tuple has two elements, a string and the object <code>MainPage</code> whatever it is.</p>
<p>Both <em>lists</em> and <em>tuples</em> are ordered groups of object, it doesn't matter what kind of object, they can be heterogeneous in both cases.</p>
<p>The main difference between lists and tuples is that <strong>tuples are <em>immutable</em></strong>, just like strings.</p>
<p>For example we can define a list and a tuple:</p>
<pre><code>>>> L = ['a', 1, 5, 'b']
>>> T = ('a', 1, 5, 'b')
</code></pre>
<p>we can modify elements of L simply by assigning them a new value</p>
<pre><code>>>> print L
['a', 1, 5, 'b']
>>> L[1] = 'c'
>>> print L
['a', 'c', 5, 'b']
</code></pre>
<p>This is not true for tuples</p>
<pre><code>>>> print T
('a', 1, 5, 'b')
>>> T[1] = 'c'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
</code></pre>
<p>This is because they are immutable.
Tuples' elements may be mutable, and you can modify them, for example:</p>
<pre><code>>>> T = (3, ['a', 1, 2], 'lol')
>>> T[1]
['a', 1, 2]
>>> T[1][0] = 'b'
>>> T
(3, ['b', 1, 2], 'lol')
</code></pre>
<p>but the list we edited is still the same object, we didn't replaced the tuple's element.</p>
http://stackoverflow.com/questions/1695452/searching-values-of-a-list-in-another-list-using-python/1696287#16962871Answer by Andrea Ambu for Searching values of a list in another List using Python Andrea Ambu2009-11-08T12:44:37Z2009-11-08T18:46:53Z<p>This should be easy to understand and avoid corner case nicely as you don't need to work with indexes:</p>
<pre><code>def compare(l1, l2):
it = iter(l2)
for e in l1:
try:
while it.next() != e: pass
except StopIteration: return False
return True
</code></pre>
<p>it tries to compare each <strong>e</strong>lement of <strong>l1</strong> to the next element in <strong>l2</strong>.<br>
if there is no next element (<em>StopIteration</em>) it returns false (it visited the whole l2 and didn't find the current <strong>e</strong>) else it found it, so it returns true.</p>
<p>For faster execution it may help to put the try block outside the for:</p>
<pre><code>def compare(l1, l2):
it = iter(l2)
try:
for e in l1:
while it.next() != e: pass
except StopIteration: return False
return True
</code></pre>
http://stackoverflow.com/questions/1636300/how-to-match-string-containing-lots-of-r-n-f-using-regular-expressions/1636335#16363351Answer by Andrea Ambu for How to match string containing lots of \r\n\f using regular expressions?Andrea Ambu2009-10-28T10:19:31Z2009-10-28T10:19:31Z<p>The first solution works if you use case insensitive and multiline:</p>
<pre><code>Regex RegexObj = new Regex("^Assignments(\\s|:|-|#)*?$",
RegexOptions.IgnoreCase | RegexOptions.Multiline);
</code></pre>
http://stackoverflow.com/questions/1605861/pythonic-way-to-print-a-table1Pythonic way to print a tableAndrea Ambu2009-10-22T08:48:48Z2009-10-22T15:32:23Z
<p>I'm using this simple function:</p>
<pre><code>def print_players(players):
tot = 1
for p in players:
print '%2d: %15s \t (%d|%d) \t was: %s' % (tot, p['nick'], p['x'], p['y'], p['oldnick'])
tot += 1
</code></pre>
<p>and I'm supposing nicks are no longer than 15 characters.<br />
I'd like to keep each "column" aligned, is there a some syntactic sugar allowing me to do the same but keeping the nicknames column left-aligned instead of right-aligned, without breaking column on the right?</p>
<p>The equivalent, uglier, code would be:</p>
<pre><code>def print_players(players):
tot = 1
for p in players:
print '%2d: %s \t (%d|%d) \t was: %s' % (tot, p['nick']+' '*(15-len(p['nick'])), p['x'], p['y'], p['oldnick'])
tot += 1
</code></pre>
<p>Thanks to all, here is the final version:</p>
<pre><code>def print_players(players):
for tot, p in enumerate(players, start=1):
print '%2d:'%tot, '%(nick)-12s (%(x)d|%(y)d) \t was %(oldnick)s'%p
</code></pre>
http://stackoverflow.com/questions/1587367/python-numpy-tricky-slicing-problem/1588711#15887110Answer by Andrea Ambu for Python/numpy tricky slicing problemAndrea Ambu2009-10-19T13:37:10Z2009-10-19T13:37:10Z<p>It is not the correct logic.
I'll try to use letters to explain it.</p>
<p>Image <code>array = abcd</code> with a,b,c,d as elements.<br />
Now, <code>array[1:]</code> means from the element in position <code>1</code> (starting from <code>0</code>) on.<br />
In this case:<code>bcd</code> and <code>array[0:3]</code> means from the character in position <code>0</code> up to the third character (the one in position <code>3-1</code>) in this case: <code>'abc'</code>.</p>
<p>Writing something like:<br />
<code>array[1:] = array[0:3]</code></p>
<p>means: replace <code>bcd</code> with <code>abc</code></p>
<p>To obtain the output you want, now in python, you should use something like:</p>
<pre><code>a[1:] = a[0]
</code></pre>
http://stackoverflow.com/questions/1302511/unknown-amount-of-input-needed-in-a-form-ajax-less-alternative0Unknown amount of input needed in a form, ajax-less alternative?Andrea Ambu2009-08-19T20:39:30Z2009-10-18T12:00:02Z
<p>I'm writing a little webapp for mobile.</p>
<p>There is a form asking for a particular item and its details, users should be able to insert one or more items with their details.</p>
<p>If it was a normal webapp I'd use ajax with a link "add one" just like gmail does for attachments. On mobile I think it's not a good idea using ajax, so I used "i'm done" and "add more" button which load a new page and the rest of the list is saved server side. This means that for each new item a user need to reload the page, it is slow and it may costs more to my users. Is there a better way to do this?</p>
http://stackoverflow.com/questions/1584515/is-there-a-language-designed-for-code-golf/1584521#158452110Answer by Andrea Ambu for Is there a language designed for code golf?Andrea Ambu2009-10-18T10:06:03Z2009-10-18T10:06:03Z<p><a href="http://www.golfscript.com/golfscript/" rel="nofollow">GolfScript</a></p>
<p>Quoting their site:</p>
<blockquote>
<p>GolfScript is a stack oriented
esoteric programming language aimed at
solving problems (holes) in as few
keystrokes as possible. It also aims
to be simple and easy to write.</p>
</blockquote>
<p>The other one could be <a href="http://www.jsoftware.com/" rel="nofollow">J</a> but it is not designed to code golf</p>
http://stackoverflow.com/questions/1582314/how-to-find-last-occurence-of-a-number-in-a-string-using-ruby/1582335#15823351Answer by Andrea Ambu for How to find last occurence of a number in a string using Ruby?Andrea Ambu2009-10-17T14:41:27Z2009-10-17T14:53:26Z<p>This regex should work:</p>
<pre><code>(.*(?=\d)\d)[^\d]*$
</code></pre>
<p>You should use something like:</p>
<pre><code>result = your_text.gsub(/(.*(?=\d)\d)[^\d]*$/, '\\1')
</code></pre>
<p>Explanation: </p>
<ul>
<li><code>(.*(?=\d)\d)</code> is the group of thing you want to save
<ul>
<li><code>.*</code> the <code>.</code> is everything except a line break, the <code>*</code> means 0 or more times</li>
<li><code>(?=\d)</code> means <em>until you are able to match</em> a <code>\d</code> which is a digit</li>
<li><code>\d</code> means match that digit also!</li>
</ul></li>
<li><code>[^\d]+$</code> is the part you don't want to save
<ul>
<li>in <code>[^\d]*</code> matches anything that doesn't match <code>\d</code> and the <code>*</code> is again 0 or more times</li>
<li>the <code>$</code> is the end of the line</li>
</ul></li>
</ul>
<p>An alternative could be simply replacing <code>[^\d]+$</code> with nothing</p>
http://stackoverflow.com/questions/1441651/programming-with-english-as-second-language-how-to-improve11Programming with English as second language. How to improve?Andrea Ambu2009-09-17T22:28:16Z2009-10-15T09:19:15Z
<p>Since English is the Lingua Franca of programming, this question is for all programmers who need to learn English for <strong>programming related</strong> reasons.</p>
<p>I'm Italian but most of the time I spend on the Internet is for reading or writing something in English. My English is still pretty bad; reading is relatively simple, writing a bit more difficult, but I'm getting better, I also opened a blog for this.</p>
<p>Listening and speaking is completely another matter. I tried: I watch American TV series in the original language but there are just a few series I can watch without subtitles. Radio and podcasts are still too hard to follow properly and I often get lost.</p>
<p>The most difficult thing is to speak at conversation speed, I may be able to chat (like on IM) at a decent speed, but not if I have to speak. </p>
<p>I believe that many SO users are not English native speakers; how did you learn? With whom did you practice? Is there any group that does something like English-speaking sessions on something like skype/teamspeak?</p>
<p>Thanks for reading and replying to the long (and maybe full of errors) post/question.</p>
<p><hr /></p>
<p>Edit:</p>
<p>I've found a very interesting service: <a href="http://mylanguageexchange.com" rel="nofollow">My Language Exchange</a>. I've found a lot of nice English native to talk with via Skype. I hope to don't see this post deleted again (even if you close it) so that this information may be available.</p>
http://stackoverflow.com/questions/1563188/comparisons-of-data-structures-algorithms-basic-computer-science-online-resour/1563215#15632151Answer by Andrea Ambu for comparisons of data structures, algorithms, basic computer science, online resourcesAndrea Ambu2009-10-13T22:06:24Z2009-10-13T22:06:24Z<p>Did you try on <a href="http://en.wikipedia.org/wiki/Data%5Fstructure" rel="nofollow">Wikipedia</a>?<br />
There are different good pages about data structures, like this one on <a href="http://en.wikipedia.org/wiki/Queue%5F%28data%5Fstructure%29" rel="nofollow">queues</a>.</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/1563074/python-procedure-return-values/1563158#15631580Answer by Andrea Ambu for Python procedure return valuesAndrea Ambu2009-10-13T21:57:13Z2009-10-13T21:57:13Z<p>It's because of the <a href="http://en.wikipedia.org/wiki/Type%5Fsystem#Dynamic%5Ftyping" rel="nofollow">dynamic typing</a>.</p>
<p>You don't have to make the distinction between, say, turbo pascal's procedure and function. They are all function, they return <code>None</code> by default, which is logically correct. If you don't say anything it returns nothing, <code>None</code>.</p>
<p>I hope it make more sense now-</p>
http://stackoverflow.com/questions/1547574/regex-for-prices/1547584#15475842Answer by Andrea Ambu for RegEx for Prices?Andrea Ambu2009-10-10T10:26:27Z2009-10-10T10:35:50Z<p>In what language are you going to use it?</p>
<p>It should be something like:</p>
<pre><code>^\d+(,\d{1,2})?$
</code></pre>
<p>Explaination:</p>
<p><em>X number in front</em> is: <code>^\d+</code> where <code>^</code> means the start of the string, <code>\d</code> means a digit and <code>+</code> means one or more </p>
<p>We use group <code>()</code> with a question mark, a <code>?</code> means: match what is inside the group one or no times.</p>
<p>inside the group there is <code>,\d{1,2}</code>, the <code>,</code> is the comma you wrote, <code>\d</code> is still a digit <code>{1,2}</code> means match the previous digit one or two times.</p>
<p>The final <code>$</code> matches the end of the string.</p>
http://stackoverflow.com/questions/1505858/game-ai-programming-competition-framework/1505943#15059431Answer by Andrea Ambu for Game AI programming competition frameworkAndrea Ambu2009-10-01T19:23:31Z2009-10-01T19:23:31Z<p>Something like <a href="http://robocode.sourceforge.net/" rel="nofollow">RoboCode</a>?</p>
http://stackoverflow.com/questions/1496456/how-to-treat-the-first-line-of-a-file-differently-in-python/1496489#14964893Answer by Andrea Ambu for How to treat the first line of a file differently in Python?Andrea Ambu2009-09-30T06:56:22Z2009-10-01T08:08:24Z<p>Use iter()</p>
<pre><code>it_f = iter(f)
header = it_f.next()
processHeader(header)
for line in it_f:
processBody(line)
</code></pre>
<p>It works with any iterable object.</p>
http://stackoverflow.com/questions/1465853/getting-index-from-value-in-javascript0Getting index from value in JavaScriptAndrea Ambu2009-09-23T13:03:18Z2009-09-23T13:31:21Z
<p>Is there a function/method to retrieve the index of an item in an array from its value in JavaScript?</p>
<p>In other words I'm looking for the JavaScript equivalent for the Python <strong>.index()</strong> lists method:</p>
<pre><code>>>> ['stackoverflow','serverfault','meta','superuser'].index('meta')
2
</code></pre>
<p>Does <em>the wheel</em> already exist or have I to <em>reinvent</em> it?</p>
http://stackoverflow.com/questions/1444159/how-to-read-a-structure-containing-an-array-using-pythons-ctypes-and-readinto/1444339#14443394Answer by Andrea Ambu for How to read a structure containing an array using Python's ctypes and readinto?Andrea Ambu2009-09-18T12:43:48Z2009-09-18T12:43:48Z<p>Accordingly to this <a href="http://docs.activestate.com/activepython/3.1/python/library/ctypes.html" rel="nofollow">documentation page</a> (section: 15.15.1.13. Arrays) it should became something like:</p>
<pre><code>class strucWithArrays(Structure):
_fields_ = [
("foo", c_ulong),
("barFloat", c_float * 4),
("bowFloat", c_float * 17)]
</code></pre>
<p>Check that documentation page, there are some example there.</p>
http://stackoverflow.com/questions/1019040/how-many-numbers-below-n-are-coprimes-to-n3How many numbers below N are coprimes to N?Andrea Ambu2009-06-19T17:09:57Z2009-09-17T00:19:32Z
<h2>In short:</h2>
<p>Given that <strong>a</strong> is coprime to <strong>b</strong> if <strong>GCD(a,b) = 1</strong> (where GCD stands for <a href="http://en.wikipedia.org/wiki/Greatest%5Fcommon%5Fdivisor" rel="nofollow">great common divisor</a>), how many positive integers below N are coprime to N?</p>
<p>Is there a clever way?</p>
<p><hr /></p>
<h2>Not necessary stuff</h2>
<p>Here is the dumbest way:</p>
<pre><code>def count_coprime(N):
counter = 0
for n in xrange(1,N):
if gcd(n,N) == 1:
counter += 1
return counter
</code></pre>
<p>It works, but it is slow, and dumb. I'd like to use a clever and faster algorithm.
I tried to use prime factors and divisors of N but I always get something that doesn't work with larger N.</p>
<p><s>I think the algorithm should be able to count them without calculating all of them like the dumbest algorithm does :P</s></p>
<h2>Edit</h2>
<p>It seems I've found a working one:</p>
<pre><code>def a_bit_more_clever_counter(N):
result = N - 1
factors = []
for factor, multiplicity in factorGenerator(N):
result -= N/factor - 1
for pf in factors:
if lcm(pf, factor) < N:
result += N/lcm(pf, factor) - 1
factors += [factor]
return result
</code></pre>
<p>where lcm is least common multiple. Does anyone have a better one?</p>
<h2>Note</h2>
<p>I'm using python, I think code should be readable even to who doesn't know python, if you find anything that is not clear just ask in the comments. I'm interested in the algorithm and the math, the idea. </p>
http://stackoverflow.com/questions/1408678/getting-another-programs-output-as-input-on-the-fly4Getting another program's output as input on the flyAndrea Ambu2009-09-11T02:12:28Z2009-09-11T04:51:18Z
<p>I've two programs I'm using in this way:</p>
<pre><code>$ c_program | python_program.py
</code></pre>
<p>c_program prints something using <code>printf()</code> and python_program.py reads using <code>sys.stdin.readline()</code> </p>
<p>I'd like to make the python_program.py process c_program's output as it prints, immediately, so that it can print its own current output. Unfortunately python_program.py gets its input only after c_program ends.</p>
<p>How can I solve this? </p>
http://stackoverflow.com/questions/1211212/how-to-calculate-an-angle-from-three-points/1354158#13541581Answer by Andrea Ambu for How to calculate an angle from three points?Andrea Ambu2009-08-30T15:56:05Z2009-08-30T15:56:05Z<p>It gets very simple if you think it as two vectors, one from point P1 to P2 and one from P1 to P3 </p>
<p>so:<br />
a = (p1.x - p2.x, p1.y - p2.y)<br />
b = (p1.x - p3.x, p1.y - p3.y)</p>
<p>You can then invert the dot product formula:<br />
<img src="http://upload.wikimedia.org/math/6/9/6/696389a455a6d96fc7df8bdc2260b972.png" alt="dot product" /><br />
to get the angle:<br />
<img src="http://upload.wikimedia.org/math/f/5/8/f587371bc1b7d0819c76900eda99656a.png" alt="angle between two vectors" /></p>
<p>Remember that <img src="http://tex.nigma.be/a%257B%255Ccdot%257Db.png" alt="dot product" /> just means:
a1*b1 + a2*b2 (just 2 dimensions here...)</p>
http://stackoverflow.com/questions/1352587/code-golf-morse-code/1353898#13538982Answer by Andrea Ambu for Code Golf: Morse codeAndrea Ambu2009-08-30T13:43:02Z2009-08-30T13:43:02Z<h2>Python (210 characters)</h2>
<p>This is a complete solution based on <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352739#1352739">Alec</a>'s one</p>
<pre><code>def e(l):
i=(' etianmsurwdkgohvf_l_pjbxcyzq__54_3___2%7s16%7s7___8_90%12s?%8s.%29s,'%tuple('_'*5)).find(l.lower());v=''
while i>0:v='-.'[i%2]+v;i=(i-1)/2
return v or '/'
def enc(s):return ' '.join(map(e,s))
</code></pre>
http://stackoverflow.com/questions/938835/firefox-web-developer-toolbar-js-does-not-work-after-an-on-the-fly-html-edit1Firefox Web Developer Toolbar: JS does not work after an "on the fly" HTML editAndrea Ambu2009-06-02T10:29:11Z2009-08-20T16:39:12Z
<p>I'm getting used to this toolbar, it is so cool to edit the page on the fly and see what I'm changing... </p>
<p>THe only problem is that my JavaScript stops to work after (or while) i'm editing, and I need to save an refresh the page... Did I miss any option? Is there any other tool that does this?</p>
http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/234473#234473Comment by Andrea Ambu on Tech Books you have but never readAndrea Ambu2009-12-19T10:13:24Z2009-12-19T10:13:24Zis it a <i>tech</i> book?http://stackoverflow.com/questions/1924920/how-to-speed-up-andorid-emulation/1924935#1924935Comment by Andrea Ambu on How to speed up Andorid Emulation?Andrea Ambu2009-12-17T22:19:42Z2009-12-17T22:19:42ZSo... <i>how much</i> is slow for you? Is it possible to don't open the vm over and over again every time I need to run the program?http://stackoverflow.com/questions/1893304/return-variable-outputs-in-python-function/1893319#1893319Comment by Andrea Ambu on return variable outputs in Python function?Andrea Ambu2009-12-12T16:01:34Z2009-12-12T16:01:34ZNo. -------15char-------http://stackoverflow.com/questions/1892215/how-to-send-eof-to-python-sys-stdin-from-commandline-ctrl-d-doesnt-work/1892639#1892639Comment by Andrea Ambu on How to send EOF to Python sys.stdin from commandline? CTRL-D doesn't work.Andrea Ambu2009-12-12T08:51:44Z2009-12-12T08:51:44Z<i>ahi quanto a dir qual era è cosa dura</i>... great example and great text sample!http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1809636#1809636Comment by Andrea Ambu on Code Golf: Ulam SpiralAndrea Ambu2009-11-28T14:53:54Z2009-11-28T14:53:54Zaaaargh it was a \n in the end of the file, argh! down to 242 now, thanks! Maybe it can be shortened even more using indexes more wisely, I'm not sure yet though.http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1809636#1809636Comment by Andrea Ambu on Code Golf: Ulam SpiralAndrea Ambu2009-11-28T14:50:38Z2009-11-28T14:50:38ZYeah very nice consideration, i'm still wondering how to use just one return and gain one more char http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1809636#1809636Comment by Andrea Ambu on Code Golf: Ulam SpiralAndrea Ambu2009-11-28T08:55:02Z2009-11-28T08:55:02ZI shortened it a bit more, where do you think it could be shortened more?http://stackoverflow.com/questions/1752662/beautifulsoup-easy-way-to-to-obtain-html-free-contents/1752754#1752754Comment by Andrea Ambu on BeautifulSoup - easy way to to obtain HTML-free contents.Andrea Ambu2009-11-19T08:04:44Z2009-11-19T08:04:44ZIt works! Thank you!http://stackoverflow.com/questions/1695452/searching-values-of-a-list-in-another-list-using-python/1696950#1696950Comment by Andrea Ambu on Searching values of a list in another List using Python Andrea Ambu2009-11-09T10:12:16Z2009-11-09T10:12:16ZI'm not sure about the reason, but using bpowah's test code the curve of the function that doesn't use itertools (the one I posted) is 99% of the time under the curve of the code using dropwhile. I don't know what partial and dropwhile do, I'm going to google for it.http://stackoverflow.com/questions/1695452/searching-values-of-a-list-in-another-list-using-python/1695552#1695552Comment by Andrea Ambu on Searching values of a list in another List using Python Andrea Ambu2009-11-09T10:03:23Z2009-11-09T10:03:23Z"Simple is better than complex, good work alex! And nice test code bpowah|http://stackoverflow.com/questions/1695452/searching-values-of-a-list-in-another-list-using-python/1696312#1696312Comment by Andrea Ambu on Searching values of a list in another List using Python Andrea Ambu2009-11-08T13:05:36Z2009-11-08T13:05:36Z-1, The OP: <i>I'm trying to return True only if list1 is in list2 in the *respective order*</i>http://stackoverflow.com/questions/1648707/python-logging-using-a-decoratorComment by Andrea Ambu on Python logging using a decoratorAndrea Ambu2009-10-30T11:38:47Z2009-10-30T11:38:47Z+1 for pippo e paperino, benvenuto :)http://stackoverflow.com/questions/1641612/im-a-python-beginner-dictionary-is-new/1641693#1641693Comment by Andrea Ambu on I'm a python beginner, dictionary is newAndrea Ambu2009-10-29T10:42:47Z2009-10-29T10:42:47ZIs there a reason that makes you use .keys()? Is it different from:
<code>d3 = dict([(x, d2[d1[x]]) for x in d1 if d1[x] in d2])</code>?http://stackoverflow.com/questions/1605861/pythonic-way-to-print-a-table/1605963#1605963Comment by Andrea Ambu on Pythonic way to print a tableAndrea Ambu2009-10-22T09:43:12Z2009-10-22T09:43:12ZI didn't know that, thank you very much!http://stackoverflow.com/questions/1605861/pythonic-way-to-print-a-table/1605963#1605963Comment by Andrea Ambu on Pythonic way to print a tableAndrea Ambu2009-10-22T09:36:01Z2009-10-22T09:36:01Zwhat does <code>**values</code> mean? I saw <code>**</code> only in parameters declaration (declaration of a function/method).