User Federico Ramponi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T11:53:03Zhttp://stackoverflow.com/feeds/user/18770http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/193298/best-practices-in-latex37Best practices in LaTeXFederico Ramponi2008-10-10T23:04:59Z2009-12-03T10:48:19Z
<p>What are some good practices when typesetting LaTeX documents?</p>
<p>I use LaTeX mostly to typeset papers.
Here is a short list of what I consider LaTeX good practices, most of them would be common sense in any programming language:</p>
<ul>
<li>When writing a large document (book), keep the chapters in separate files</li>
<li>Use a versioning system</li>
<li>Repeated code (i.e. piece of formula occurring many times) is evil. Use macros</li>
<li>Use macros to represent concepts, not to type less</li>
<li>Use long, descriptive names for macros, labels, and bibliographic entries</li>
<li>Use block comments <pre>%===================================</pre> to emphasize the beginning of sections and subsections</li>
<li>Comment out suppressed paragraphs, don't delete them yet</li>
<li>Don't format formulas (i.e. break them into many lines) until the final font size and page format are decided</li>
<li>Learn to use BibTex</li>
</ul>
<p>Further question:
What package/macro/whatever do you use to insert source code?</p>
<p><strong>EDIT</strong>: corrected spelling from Latex to LaTeX. In your documents, you may want to use the \LaTeX macro.</p>
http://stackoverflow.com/questions/195520/what-is-spaghetti-code3What is spaghetti code?Federico Ramponi2008-10-12T14:04:49Z2009-11-05T22:09:31Z
<p>Can you post a (<strong>short</strong>) example of real, overdone spaghetti code (possibly saying what it does)? Can you show me a little debugger's nightmare?</p>
<p>I don't mean the <a href="http://www0.us.ioccc.org/main.html" rel="nofollow">IOCCC</a> code, that is science fiction. I mean real life examples that happened to you...</p>
<p><strong>EDIT</strong>: the focus has changed from "poste some spaghetti code" to "what is <em>exactly</em> spaghetti code?". From a historical perspective, the current chances seem to be:</p>
<ul>
<li>old Fortran code using computed gotos massively</li>
<li>old Cobol code using the ALTER statement</li>
</ul>
http://stackoverflow.com/questions/189172/c-templates-turing-complete10C++ templates Turing-complete?Federico Ramponi2008-10-09T20:53:46Z2009-10-22T13:26:20Z
<p>I'm told that the template system in C++ is Turing-complete at compile time. This is mentioned in <a href="http://stackoverflow.com/questions/75538/hidden-features-of-c#75627">this post</a> and also on <a href="http://en.wikipedia.org/wiki/C%2B%2B" rel="nofollow">wikipedia</a>.</p>
<p>Can you provide a nontrivial example of a computation that exploits this property?</p>
<p>Is this fact useful in practice?</p>
http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi/407540#40754011Answer by Federico Ramponi for Code Golf: Leibniz formula for PiFederico Ramponi2009-01-02T17:50:20Z2009-10-15T10:32:58Z<p>52 chars in <strong>Python</strong>:</p>
<pre><code>print 4*sum(((-1.)**i/(2*i+1)for i in xrange(5**8)))
</code></pre>
<p>(51 dropping the 'x' from xrange.)</p>
<p>36 chars in Octave (or Matlab):</p>
<pre><code>l=0:5^8;disp((-1).^l*(4./(2.*l+1))')
</code></pre>
<p>(execute "format long;" to show all the significant digits.) Omitting 'disp' we reach 30 chars:</p>
<pre><code>octave:5> l=0:5^8;(-1).^l*(4./(2.*l+1))'
ans = 3.14159009359631
</code></pre>
http://stackoverflow.com/questions/251778/misused-design-patterns12Misused design patternsFederico Ramponi2008-10-30T21:05:44Z2009-09-26T23:42:06Z
<p>Are there, in the canonical Gang of Four list, any design patterns that you often find misused, misunderstood or overused (other than the highly debated Singleton)? In other words, is there a design pattern you would advise to think twice before using? (And why?)</p>
http://stackoverflow.com/questions/1382318/binding-lvalue-to-a-reference/1382330#13823306Answer by Federico Ramponi for binding lvalue to a referenceFederico Ramponi2009-09-05T03:01:47Z2009-09-05T03:41:04Z<pre><code> WORD &Key;
</code></pre>
<p>A reference is always an <em>alias</em> for some other object, and it must be initialized with an object that already exists. Thus, the above declaration is not valid. The following is instead correct:</p>
<pre><code> WORD &Key = alreadyExistingKey;
</code></pre>
<p>[The above is not relevant anymore, the question has changed.]</p>
<p><strong>EDIT:</strong></p>
<pre><code>void somefunc1(Word &Key)
{
somefunc2(Key);
}
void somefunc2(char &char1)
{
return;
}
</code></pre>
<p><em>[BCC32 Error] Unit1.cpp(830): E2357 Reference initialized with 'unsigned short', needs lvalue of type 'char'</em></p>
<p>The compiler is telling you that <code>somefunc2</code> is expecting [a reference, that is, an alias for] a <code>char</code>. But <code>Key</code> in <code>somefunc1</code> is instead a <code>Word</code>, which I understand to be a typedef for <code>unsigned short</code>.</p>
<p>It seems to me that your "c-style" remedy is brutally reinterpreting <code>&Key</code>, which is the address of an <code>unsigned short</code>, as the address of a <code>char</code>. What you are passing to <code>somefunc2</code> is therefore the first byte of <code>Key</code>, interpreted as a (signed) <code>char</code>. I guess that the result depends on endianness. I wouldn't rely on that code.</p>
http://stackoverflow.com/questions/1377282/can-someone-explain-how-big-oh-works-with-summations/1382296#13822960Answer by Federico Ramponi for Can someone explain how Big-Oh works with Summations?Federico Ramponi2009-09-05T02:39:17Z2009-09-05T02:45:43Z<ul>
<li><p>Σ (i=1 to n) i<sup>2</sup> = n(n+1)(2n+1)/6, which is O(n<sup>3</sup>).</p></li>
<li><p>Note that (n!)<sup>2</sup> = (1 n) (2(n-1)) (3(n-2))...((n-1)2) (n 1) <br/>
= Π (i=1 to n) i (n+1-i) <br/> >= Π (i=1 to n) n<br/>
[E.g., because for each i=1 to n, (i-1)(n-i) >= 0. Compare with <a href="http://www-cs-faculty.stanford.edu/~knuth/gkp.html" rel="nofollow">Graham/Knuth/Patashnik</a>, section 4.4]<br/>
= n<sup>n</sup>.<br/>
Thus, n! >= n<sup>n/2</sup>, and therefore<br/>
Σ (i=1 to n) log i = log Π (i=1 to n) i = log n! >= log n<sup>n/2</sup> =
(n/2) log n, which is Ω(n log n).</p></li>
</ul>
http://stackoverflow.com/questions/1382106/research-question-on-programming-language-and-writing-software/1382155#13821550Answer by Federico Ramponi for Research question on programming language and writing software.Federico Ramponi2009-09-05T01:27:24Z2009-09-05T01:27:24Z<p>I've always found <a href="http://page.mi.fu-berlin.de/~prechelt/Biblio/jccpprt%5Fcomputer2000.pdf" rel="nofollow">this paper</a> rather interesting. There may be more recent versions around.</p>
http://stackoverflow.com/questions/1381992/python-code-beginner-queries/1382141#13821411Answer by Federico Ramponi for python code beginner queries.Federico Ramponi2009-09-05T01:15:06Z2009-09-05T01:15:06Z<p>(?) suggestions:</p>
<ul>
<li><p>In the following code</p>
<pre><code> self.dbc.execute("select count(*) from %s" % (self.name))
</code></pre>
<p>You didn't define <code>self.name</code></p></li>
<li><p>Don't connect to a database as the user <code>root</code>. Add a user with lower privileges.</p></li>
<li><p>Why the following?</p>
<pre><code>def __main__: #?!
...
if __name__ == '__main__':
main()
</code></pre>
<p>use this instead:</p>
<pre><code>def main():
</code></pre></li>
<li><p>Before the following code</p>
<pre><code>service = serv_db(tatamotors)
</code></pre>
<p>where did you define <code>tatamotors</code>?</p></li>
<li><p> </p>
<pre><code>def _adnewcar(self):
print"adding info to database: car"
carreg = reg
</code></pre>
<p>what is <code>reg</code>? Pass it as an argument to the method, or let it be a class member (<code>self.reg</code>)</p></li>
</ul>
http://stackoverflow.com/questions/1359383/python-run-a-process-and-kill-it-if-it-doesnt-end-within-one-hour2Python: Run a process and kill it if it doesn't end within one hourFederico Ramponi2009-08-31T20:55:29Z2009-08-31T21:21:43Z
<p>I need to do the following in Python. I want to spawn a process (subprocess module?), and:</p>
<ul>
<li>if the process ends normally, to continue exactly from the moment it terminates;</li>
<li>if, otherwise, the process "gets stuck" and doesn't terminate within (say) one hour, to kill it and continue (possibly giving it another try, in a loop).</li>
</ul>
<p>What is the most elegant way to accomplish this?</p>
http://stackoverflow.com/questions/1316319/transforming-nested-list-in-python/1317634#13176340Answer by Federico Ramponi for Transforming nested list in PythonFederico Ramponi2009-08-23T02:49:09Z2009-08-23T02:49:09Z<p>(Side comment) Why on earth did you indent like that? Isn't the following more readable?</p>
<pre><code>a = [
('A', ['D', 'E', 'F', 'G']),
('B', ['H']),
('C', ['I'])
]
</code></pre>
http://stackoverflow.com/questions/1185775/using-a-caesarian-cipher-on-a-string-of-text-in-python/1185809#11858096Answer by Federico Ramponi for Using a caesarian cipher on a string of text in python?Federico Ramponi2009-07-26T22:58:39Z2009-07-26T23:15:03Z<p>My first version:</p>
<pre><code>>>> key = 2
>>> msg = "abcdefg"
>>> ''.join( map(lambda c: chr(ord('a') + (ord(c) - ord('a') + key)%26), msg) )
'cdefghi'
>>> msg = "uvwxyz"
>>> ''.join( map(lambda c: chr(ord('a') + (ord(c) - ord('a') + key)%26), msg) )
'wxyzab'
</code></pre>
<p>(Of course it works as expected only if msg is lowercase...)</p>
<p><strong>edit</strong>: I definitely second David Raznick's answer:</p>
<pre><code>>>> import string
>>> alphabet = "abcdefghijklmnopqrstuvwxyz"
>>> key = 2
>>> tr = string.maketrans(alphabet, alphabet[key:] + alphabet[:key])
>>> "abcdefg".translate(tr)
'cdefghi'
</code></pre>
http://stackoverflow.com/questions/1166385/how-many-times-a-file-be-compressed/1166468#11664681Answer by Federico Ramponi for How many times a file be compressed?Federico Ramponi2009-07-22T16:22:17Z2009-07-22T16:50:01Z<blockquote>
<p>How many times can I compress a file before it does not get any smaller?</p>
</blockquote>
<p>In general, <strong>not even one</strong>. Whatever compression algorithm you use, there must <em>always</em> exists a file that does not get compressed at all, otherwise you could <em>always</em> compress repeatedly until you reach 1 byte, by your same argument. </p>
<blockquote>
<p>How many times can I compress a file before it becomes corrupt?</p>
</blockquote>
<p>If the program you use to compress the file does its job, the file will never corrupt (of course I am thinking to <em>lossless</em> compression).</p>
http://stackoverflow.com/questions/1166138/simulating-two-backgrounds/1166296#11662961Answer by Federico Ramponi for Simulating two backgrounds...Federico Ramponi2009-07-22T15:53:23Z2009-07-22T15:53:23Z<p>Look at the page source</p>
<pre><code><head>
... <link href="App_Themes/Liberty/LibertyStyle.css"
type="text/css" rel="stylesheet" /> ...
</head>
</code></pre>
<p>LibertyStyle.css is the style sheet you need. You can look at it following the corresponding url
<a href="http://www.libertyseguros.pt/App_Themes/Liberty/LibertyStyle.css" rel="nofollow">http://www.libertyseguros.pt/App_Themes/Liberty/LibertyStyle.css</a>.
The interesting properties are the following:</p>
<pre><code>body
{
background-image:url('../../Images/repeat.jpg');
...
background-repeat:repeat-x;
...
}
</code></pre>
<p>Thus, it is just a repeated background (<a href="http://www.libertyseguros.pt/Images/repeat.jpg" rel="nofollow">http://www.libertyseguros.pt/Images/repeat.jpg</a>).</p>
<p><a href="http://www.tizag.com/cssT/background.php" rel="nofollow">This page</a> explains the above technique in more detail.</p>
http://stackoverflow.com/questions/1132350/recursion-cut-array-of-integers-in-two-parts-of-equal-sum-in-a-single-pass/1132607#11326070Answer by Federico Ramponi for recursion: cut array of integers in two parts of equal sum - in a single passFederico Ramponi2009-07-15T16:56:38Z2009-07-15T17:09:28Z<p>My version:</p>
<pre><code># Returns either (right sum from the currentIndex, currentIndex, False),
# or, if the winning cut is found, (sum from the cut, its index, True)
def tryCut(anArray, currentIndex, currentLeftSum):
if currentIndex == len(anArray):
return (0, currentIndex, currentLeftSum==0)
(nextRightSum, anIndex, isItTheWinner) = tryCut(anArray, currentIndex + 1, currentLeftSum + anArray[currentIndex])
if isItTheWinner: return (nextRightSum, anIndex, isItTheWinner)
rightSum = anArray[currentIndex] + nextRightSum
return (rightSum, currentIndex, currentLeftSum == rightSum)
def findCut(anArray):
(dummy, anIndex, isItTheWinner) = tryCut(anArray, 0, 0)
if isItTheWinner: return anIndex
return -1
</code></pre>
<p>Note: if the index returned is 5, I mean that sum(anArray[:5]) == sum(anArray[5:]). The "extremes" are also valid (where the sum of an empty slice is meant to be zero), i.e. if the sum of the whole array is zero, then 0 and len(anArray) are also valid cuts.</p>
http://stackoverflow.com/questions/1058273/what-should-i-call-this-function-composition/1100571#11005712Answer by Federico Ramponi for What should I call this function composition?Federico Ramponi2009-07-08T21:14:27Z2009-07-08T21:19:36Z<pre><code> function a(key) returns an ordered list of x.items
function b(x.item) returns a single y.value
</code></pre>
<p>Except for the ordering, a() is in practice a filter, i.e. it "filters" or "selects" items from x.items according to a key. b() is a normal map, or function. Thus, I would choose for 'foo' the name "composeFilterWithMap", or "composeSelectorWithMap" or a similar name. </p>
http://stackoverflow.com/questions/186789/best-security-practices-in-linux1Best security practices in LinuxFederico Ramponi2008-10-09T11:15:37Z2009-06-20T00:34:32Z
<p>What security best-practices would you strongly recommend in maintaining a Linux server? (i.e. bring up a firewall, disable unnecessary services, beware of suid executables, and so on.)</p>
<p>Also: is there a definitive reference on Selinux?</p>
<p>EDIT: Yes, I'm planning to put the machine on the Internet, with at least openvpn, ssh and apache (at the moment, without dynamic content), and to provide shell access to some people.</p>
http://stackoverflow.com/questions/193077/standalone-python-applications-in-linux9Standalone Python applications in LinuxFederico Ramponi2008-10-10T21:26:26Z2009-05-26T05:32:13Z
<p>How can I distribute a standalone Python application in Linux?</p>
<p>I think I can take for granted the presence of a recent Python interpreter in any modern distribution. The problem is dealing with those libraries that do not belong to the standard library, i.e. wxPython, scipy, python cryptographic toolkit, reportlab, and so on.</p>
<p>Is there a working Linux counterpart to, say, py2exe (which, by the way, I have never tried)?
Is there a free, opensource one?</p>
http://stackoverflow.com/questions/577098/matlab-symbolic-toolbox-whats-wrong-with-my-code0Matlab symbolic toolbox: What's wrong with my code?Federico Ramponi2009-02-23T10:08:30Z2009-03-24T15:14:41Z
<p>I'm trying to solve three simultaneous nonlinear equations in the unknowns x, y, z with Matlab's symbolic toolbox. What's wrong with the following code?</p>
<pre><code>solve( '(x/4 + y/2 + z/4)*(1/(8*x) + 1/(16*y) + 1/(8*z)) = 0.5774', ...
'(x/4 + y/4 + z/2)*(1/(4*x) + 1/(16*y) + 1/(16*z)) = 0.5774', ...
'(x/2 + y/4 + z/4)*(1/(8*x) + 1/(8*y) + 1/(16*z)) = 0.5774' )
</code></pre>
<p>I get the following error:</p>
<pre><code>??? Error using ==> subsref
Index exceeds matrix dimensions.
Error in ==> sym.subsref at 16
y = builtin('subsref',struct(x),a);
Error in ==> solve at 191
S.(char(symvars(j))) = R(:,j);
</code></pre>
<p>I'm using Matlab version 7.7.0.471. I'm not familiar at all with the symbolic toolbox. What am I missing? </p>
<p>Am I expecting too much from a symbolic engine? Or, are there better ways to solve the above equations? (A numerical solution will do.)</p>
http://stackoverflow.com/questions/245192/what-are-first-class-objects17What are "first class" objects?Federico Ramponi2008-10-28T22:58:47Z2009-03-11T03:39:17Z
<p>When are objects or something else said to be "first class" in a given programming language, and why? In what do they differ from languages where they are not?</p>
<p>EDIT. When one says "everything is an object" (like in Python), does he indeed mean that "everything is first-class"?</p>
http://stackoverflow.com/questions/445113/approximate-greatest-common-divisor13"Approximate" greatest common divisorFederico Ramponi2009-01-14T23:37:46Z2009-01-30T22:53:08Z
<p>Suppose you have a list of floating point numbers that are <strong>approximately</strong> multiples of a common quantity, for example </p>
<p>2.468, 3.700, 6.1699</p>
<p>which are approximately all multiples of 1.234. How would you characterize this "approximate gcd", and how would you proceed to compute or estimate it?</p>
<p>Strictly related to my answer to <a href="http://stackoverflow.com/questions/435533/detecting-the-fundamental-frequency">this question</a>.</p>
http://stackoverflow.com/questions/477237/how-do-i-simulate-flip-of-biased-coin-in-python/477248#47724817Answer by Federico Ramponi for How do I simulate flip of biased coin in python?Federico Ramponi2009-01-25T06:17:59Z2009-01-25T06:35:33Z<p><code>random.random()</code> returns a <em>uniformly distributed</em> pseudo-random floating point number in the range [0, 1). This number is less than a given number <code>p</code> in the range [0,1) with probability <code>p</code>. Thus:</p>
<pre><code>def flip(p):
return 'H' if random.random() < p else 'T'
</code></pre>
<p>Some experiments:</p>
<pre><code>>>> N = 100
>>> flips = [flip(0.2) for i in xrange(N)]
>>> float(flips.count('H'))/N
0.17999999999999999 # Approximately 20% of the coins are heads
>>> N = 10000
>>> flips = [flip(0.2) for i in xrange(N)]
>>> float(flips.count('H'))/N
0.20549999999999999 # Better approximation
</code></pre>
http://stackoverflow.com/questions/477202/c-c-java-net-asp-c-vc-lisp-python-ruby-on-rails-php-javascr/477218#4772181Answer by Federico Ramponi for C, C++, Java, .NET (ASP, C#, VC++), Lisp, Python, Ruby (, On Rails), PHP, Javascript, XML, SQL! What's a (young) programmer to do?Federico Ramponi2009-01-25T05:54:30Z2009-01-25T06:11:20Z<p><strong>Finish K&R</strong>. It's a good investment for any technology you will encounter later. Since you are running Linux, I also suggest to purchase a copy of <a href="http://rads.stackoverflow.com/amzn/click/0321525949" rel="nofollow">Advanced Programming in the UNIX Environment</a> and experiment a bit with Unix programming. </p>
<p>Once you have learned C, to stay up-to-date you should learn about object-oriented programming. In this respect I'm a fan of the Python programming language: It is simple, modern, elegant, powerful, and you already have it installed as /usr/bin/python :) Go for it!</p>
<p>It's usually said that to be a good programmer you should be comfortable with many languages and technologies, not only one. This said, it isn't that you've got to learn them all! Take your time to learn a low-level language (C) and a higher level language (in my case, Python), in the meanwhile you will certainly develop some specific interest (game development? web development?), and at that point you will know what comes next.</p>
<p>Oh, and if you want to pursue this as a career, I wholeheartedly advise to get a CS degree. Good luck!</p>
<p><a href="http://stackoverflow.com/questions/193503/what-programming-languages-do-you-consider-indispensable-in-your-experience">This question</a> may also help.</p>
http://stackoverflow.com/questions/474949/python-how-to-get-the-lower-32-bits-out-of-a-64-bit-number/474971#4749714Answer by Federico Ramponi for Python: How to get the lower 32 bits out of a 64 bit number?Federico Ramponi2009-01-23T22:57:35Z2009-01-23T23:05:34Z<pre><code>>>> big_num = 0xFFFFFFFFFFFFFFFF
>>> some_field = (big_num & 0x00FFFF0000000000) # works as expected
>>> field_i_need = big_num & 0x00000000FFFFFFFF # doesn't work
>>> big_num
18446744073709551615L
>>> field_i_need
4294967295L
</code></pre>
<p>It seems to work, or I am missing the question. I'm using Python 2.6.1, anyway.</p>
<p>For your information, I asked a somehow-related <a href="http://stackoverflow.com/questions/210629/python-unsigned-32-bit-bitwise-arithmetic">question</a> some time ago.</p>
http://stackoverflow.com/questions/474843/sql-friend-function/474870#4748701Answer by Federico Ramponi for SQL friend functionFederico Ramponi2009-01-23T22:28:08Z2009-01-23T22:34:28Z<p>I think your design is good. The second table <code>friends</code> (primary key <code>friend1</code>, <code>friend2</code>), where a row <code>f1</code>, <code>f2</code> is present if "friendship between <code>f1</code> and <code>f2</code> is about to be established", and <code>accepted</code> is True if it has actually been established, is the right way to represent a many-to-many relation.</p>
<p>(The only issue with the naive approach is when you must <em>check</em> that <code>f1</code> is a friend of <code>f2</code>'s: It may mean that the row <code>f1</code>, <code>f2</code> is present, <em>or</em> that the row <code>f2</code>, <code>f1</code> is. +1 to Quassnoi for overcoming this difficulty.)</p>
http://stackoverflow.com/questions/474733/unexpected-output-copying-file-in-c/474777#4747771Answer by Federico Ramponi for Unexpected output copying file in CFederico Ramponi2009-01-23T21:58:53Z2009-01-23T22:06:25Z<p>You can use</p>
<pre><code>fwrite (inputBuffer , 1 , inputFileLength , outputFile );
</code></pre>
<p>instead of <code>fprintf</code>, to avoid the zero-terminated string problem. It also "matches better" with <code>fread</code> :)</p>
http://stackoverflow.com/questions/474610/how-do-i-learn-programming-without-books/474673#4746730Answer by Federico Ramponi for How do I learn programming without books?Federico Ramponi2009-01-23T21:35:40Z2009-01-23T21:35:40Z<p>My first answer is, you've really got to change your attitude towards books.</p>
<p>My second is, if you really hate to read books, then <em>read other people's code</em>, lots of it, and refer to your book (K&R, not the 21 days one) when you have to grasp some new concepts. In one way or another (as guides or as references), books are essential to programmers.</p>
<p>And, all in all, to everyone else.</p>
http://stackoverflow.com/questions/474547/can-i-recover-a-file-in-linux-which-i-accidentally-did-an-rm-on/474592#4745928Answer by Federico Ramponi for Can I recover a file in linux which i accidentally did an "rm" on?Federico Ramponi2009-01-23T21:18:14Z2009-01-23T21:27:46Z<ul>
<li>Don't do anything on the partition; unmount it as it is;</li>
<li>Install the <a href="http://en.wikipedia.org/wiki/TestDisk" rel="nofollow">TestDisk</a> suite, or boot from a live distribution with a recovery suite installed (see the TestDisk wikipedia page);</li>
<li>I found the <a href="http://en.wikipedia.org/wiki/PhotoRec" rel="nofollow">PhotoRec</a> utility very useful in similar situations (it was on a VFAT partition, but I guess it works also on ext2).</li>
</ul>
http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431183#431183145Answer by Federico Ramponi for What was your first computer game that got you interested in computers?Federico Ramponi2009-01-10T15:59:31Z2009-01-23T20:59:36Z<p><a href="http://en.wikipedia.org/wiki/Doom_(video_game)" rel="nofollow">Doom</a>.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/d/de/Doom_ingame_1.png" alt="alt text" /></p>
http://stackoverflow.com/questions/467532/would-rich-text-help-comment-code/467553#4675532Answer by Federico Ramponi for Would rich-text help comment code?Federico Ramponi2009-01-21T23:51:11Z2009-01-21T23:51:11Z<p>If you let this idea pass and become popular, one day you will find Excel spreadsheets, or videos, embedded in someone's code. No, please, let source code, at least source code!, be plain old text.</p>
http://stackoverflow.com/questions/1868116/decorator-design-pattern/1868163#1868163Comment by Federico Ramponi on Decorator Design PatternFederico Ramponi2009-12-08T16:51:04Z2009-12-08T16:51:04ZI agree, adding functionality doesn't necessarily mean adding new operations.http://stackoverflow.com/questions/1341584/i-need-help-in-matlabComment by Federico Ramponi on i need help in matlabFederico Ramponi2009-08-27T15:10:41Z2009-08-27T15:10:41ZAlso, your carrier signal has the same frequency (200) of the message signal, whereas the problem suggests to heve it >10 times higherhttp://stackoverflow.com/questions/1341584/i-need-help-in-matlabComment by Federico Ramponi on i need help in matlabFederico Ramponi2009-08-27T15:06:07Z2009-08-27T15:06:07Zammod stands for <i>amplitude</i> modulation. Use fmmod instead...http://stackoverflow.com/questions/1194414/when-do-you-decide-to-represent-something-as-a-vector/1194490#1194490Comment by Federico Ramponi on When do you decide to represent something as a vector?Federico Ramponi2009-07-28T15:09:35Z2009-07-28T15:09:35ZYep, there's Gilbert Strang's course online, <a href="http://ocw.mit.edu/OcwWeb/Mathematics/18-06Spring-2005/VideoLectures/" rel="nofollow">ocw.mit.edu/OcwWeb/Mathematics/…</a>http://stackoverflow.com/questions/1185775/using-a-caesarian-cipher-on-a-string-of-text-in-python/1185816#1185816Comment by Federico Ramponi on Using a caesarian cipher on a string of text in python?Federico Ramponi2009-07-26T23:24:28Z2009-07-26T23:24:28Zwarning: what happens to y and z? Mod 26 required somewhere...http://stackoverflow.com/questions/1166839/intercept-slice-operations-in-pythonComment by Federico Ramponi on Intercept slice operations in PythonFederico Ramponi2009-07-22T17:28:34Z2009-07-22T17:28:34ZUsing 2.5.2. 'saving' printed during the extend() operation but not during the slice assignment.http://stackoverflow.com/questions/1166164/is-username-one-word-or-twoComment by Federico Ramponi on Is "username" one word or two?Federico Ramponi2009-07-22T15:39:54Z2009-07-22T15:39:54ZI have the same doubt for filename vs. fileNamehttp://stackoverflow.com/questions/477238/top-ten-signs-that-your-coworker-is-using-stackoverflow/477250#477250Comment by Federico Ramponi on Top ten signs that your coworker is using stackoverflow?Federico Ramponi2009-01-25T07:01:27Z2009-01-25T07:01:27ZTypical test to single out a "daily wtf"-reader.http://stackoverflow.com/questions/475007/problem-using-cat-in-windowsComment by Federico Ramponi on problem using cat in windowsFederico Ramponi2009-01-23T23:14:10Z2009-01-23T23:14:10Z"problem using cat in windows" - what would a non-programmer think? :)
http://stackoverflow.com/questions/474949/python-how-to-get-the-lower-32-bits-out-of-a-64-bit-number/474963#474963Comment by Federico Ramponi on Python: How to get the lower 32 bits out of a 64 bit number?Federico Ramponi2009-01-23T23:08:31Z2009-01-23T23:08:31Z0xDEADBEEFCAFEBABE is already interpreted as a longhttp://stackoverflow.com/questions/474949/python-how-to-get-the-lower-32-bits-out-of-a-64-bit-number/474971#474971Comment by Federico Ramponi on Python: How to get the lower 32 bits out of a 64 bit number?Federico Ramponi2009-01-23T23:04:42Z2009-01-23T23:04:42ZJust tried also on Python 2.5.1 and 2.4.5. It always seems to work.http://stackoverflow.com/questions/474547/can-i-recover-a-file-in-linux-which-i-accidentally-did-an-rm-on/474588#474588Comment by Federico Ramponi on Can I recover a file in linux which i accidentally did an "rm" on?Federico Ramponi2009-01-23T21:42:37Z2009-01-23T21:42:37ZWhen you have overwritten the whole file with random numbers about thirty times, <i>then</i> it is permanently deleted. Otherwise not.http://stackoverflow.com/questions/459503/how-can-i-avoid-dynamiccast-in-my-c-code/459545#459545Comment by Federico Ramponi on How can I avoid dynamic_cast in my C++ code?Federico Ramponi2009-01-20T02:23:20Z2009-01-20T02:23:20ZI second your answer. But I ask: Why would one "set" the FooEngine of a FooCar? A car constructor should build also the car's own engine: FooCar() {engine = new FooEngine(); } Engine* getEngine() { return engine; }
http://stackoverflow.com/questions/454566/how-can-i-make-a-list-in-python-like-0-6-12-144/454578#454578Comment by Federico Ramponi on How can I make a list in Python like (0,6,12, .. 144)? Federico Ramponi2009-01-18T03:18:23Z2009-01-18T03:18:23ZOh, damn it. You know, the fastest gun in the west thing :) +1http://stackoverflow.com/questions/454533/create-table-syntax-error/454553#454553Comment by Federico Ramponi on Create Table Syntax ErrorFederico Ramponi2009-01-18T03:02:41Z2009-01-18T03:02:41ZDoes MySQL allow something like int(11)?