User Davide - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T00:19:33Zhttp://stackoverflow.com/feeds/user/25891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876890/how-to-conditionalize-a-makefile-based-upon-grep-results/1877060#18770600Answer by Davide for How to conditionalize a makefile based upon grep results?Davide2009-12-09T21:35:53Z2009-12-09T21:35:53Z<p>If this is <a href="http://www.gnu.org/software/make/" rel="nofollow">gnu make</a>, you can do</p>
<pre><code> your-target: $(objects)
ifeq (your-condition)
do-something
else
do-something-else
endif
</code></pre>
<p>See here for <a href="http://www.gnu.org/software/make/manual/make.html#Conditional-Example" rel="nofollow">Makefile contionals</a></p>
<p>If your make doesn't support conditionals, you can always do</p>
<pre><code> your-target:
dplus -VV | grep -q "build date and time: Nov 1 2009 19:31:28" || $(MAKE) -s another-target; exit 0
do-something
another-target:
do-something-else
</code></pre>
http://stackoverflow.com/questions/1760455/convert-latex-to-html-in-java-or-c/1876991#18769910Answer by Davide for Convert latex to html in Java or C++?Davide2009-12-09T21:23:19Z2009-12-09T21:23:19Z<p><a href="http://www.tex.ac.uk/tex-archive/support/latex2html/" rel="nofollow">Latex2html</a> is the way to go. You say that you don't want any dependency, but any library you'll pick will be something you'll depend on. Latex2html:</p>
<ul>
<li>works great, </li>
<li>it's part of TeX</li>
<li>it's relatively small that you can bundle the executable with your app</li>
<li>it's open source (GPL), so you might also try to link it within your program and not have an external dependency (you need to release with a GPL-compatible license, though)</li>
<li>support bibtex out of the box,</li>
<li>understand hyperlinks (if you convert from a postscript, you'll lose the hyperlinks)</li>
</ul>
<p>I believe it compiles on all the major platforms (Linux, Windows, Mac) - but honestly I only have Linux so I can't say for sure.</p>
http://stackoverflow.com/questions/1828654/programmer-friendly-search-engine/1853936#18539366Answer by Davide for Programmer-friendly search engine?Davide2009-12-05T23:55:32Z2009-12-09T19:12:33Z<p>The answer, of course, is Google :-)
In particular, <a href="http://www.google.com/codesearch" rel="nofollow">Google Code Search</a>. See for example the queries for your requests (sorry StackOverflow links are broken with these, you'll have to cut and paste) (edit: fixed the links)</p>
<p><code>>>></code>
<a href="http://www.google.com/codesearch?q=%3e%3e%3e" rel="nofollow"> <a href="http://www.google.com/codesearch?q=" rel="nofollow">http://www.google.com/codesearch?q=</a>>>> </a></p>
<p><code>$</code> <a href="http://www.google.com/codesearch?q=%5c%24" rel="nofollow"> <a href="http://www.google.com/codesearch?q=" rel="nofollow">http://www.google.com/codesearch?q=</a>\$</a></p>
<p><code>#</code> <a href="http://www.google.com/codesearch?q=%5c%23" rel="nofollow">http://www.google.com/codesearch?q=\%23</a></p>
<p>EDIT: Ok, from your latest comment to the question, I see your point now. This would be useful to many (for me, just the very few times in my life that I might need it). But, as far as I know, there isn't any way of doing that. If you search the forums for "symbol search" you'll find lot of complains like <a href="http://groups.google.com/group/google-code-search/browse%5Fthread/thread/f3983a059db6dd06/8a3bc056cf5d97ef" rel="nofollow">this</a>. </p>
<p>The closest thing that I've found is this, which is pretty happy to search for symbols (but only withing that relatively small community, which is not what you are looking for):
<a href="http://perlmonks.org/" rel="nofollow">http://perlmonks.org/</a></p>
<p>Why don't we <strong>write</strong> such a programmer search engine??</p>
http://stackoverflow.com/questions/1870372/skip-an-element-in-zip0skip an element in zipDavide2009-12-08T22:34:43Z2009-12-09T02:59:15Z
<p>I have two files that are <code>zipped</code> with something like the following:</p>
<pre><code>for line in zip(open(file1), open(file2)):
# do-something
</code></pre>
<p>Unfortunately, now file2 has changed, and there is an additional line at the beginning. Yes, I could get rid of that manually (or with an additional script/program), but since the actual number of involved files is huge, I'd prefer to solve the problem at this level.</p>
<p>So, what I want is something like the following (which would be valid, if open(file) were subscriptable):</p>
<pre><code>for line in zip(open(file1), open(file2)[1:]):
# do-something
</code></pre>
http://stackoverflow.com/questions/1857659/open-source-licenses-lgpl-vs-creative-commons/1857923#18579232Answer by Davide for Open Source Licenses: LGPL vs. Creative CommonsDavide2009-12-07T05:08:19Z2009-12-07T05:08:19Z<p>FSF has a nice page in which they describe <a href="http://www.fsf.org/licensing/licenses/why-not-lgpl.html" rel="nofollow">why you should <strong>not</strong> use LGPL</a>. Of course if your goals are the same as the ones of FSF. You should think carefully about what you'd like to "give", and what you don't (which IMHO is not completely clear from your question). </p>
<p>Note that often people have strong feelings about licensing, and they think that their choice is best, whereas the ones of others are wrong, so you might easily end up with "do this" kind of recommendations.</p>
<p>I suggest that your read both <a href="http://www.fsf.org/licensing/licenses/" rel="nofollow">FSF</a> and <a href="http://www.opensource.org/licenses/category" rel="nofollow">OSI</a> pages describing various licensing options, so you can clarify what you really want. Then, picking your license will be obvious.</p>
http://stackoverflow.com/questions/1857296/can-gcc-on-ubuntu-on-a-64-bit-machine-generate-an-executable-where-long-is-32-bit/1857353#18573531Answer by Davide for Can gcc on Ubuntu on a 64-bit machine generate an executable where long is 32-bits?Davide2009-12-07T01:49:54Z2009-12-07T04:47:35Z<p>Yes, you can use the <code>-m32</code></p>
<p><a href="http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/i386-and-x86%5F002d64-Options.html#i386-and-x86%5F002d64-Options" rel="nofollow">http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/i386-and-x86%5F002d64-Options.html#i386-and-x86%5F002d64-Options</a></p>
<p>EDIT: I wrote this answer before he mentioned pointers in the question. See <a href="http://stackoverflow.com/questions/1857296/can-gcc-on-ubuntu-on-a-64-bit-machine-generate-an-executable-where-long-is-32-bit/1857614#1857614">my other answer</a></p>
http://stackoverflow.com/questions/1857296/can-gcc-on-ubuntu-on-a-64-bit-machine-generate-an-executable-where-long-is-32-bit/1857614#18576140Answer by Davide for Can gcc on Ubuntu on a 64-bit machine generate an executable where long is 32-bits?Davide2009-12-07T03:15:11Z2009-12-07T03:15:11Z<p>I don't think this is possible on Linux.
See <a href="http://en.wikipedia.org/wiki/LLP64#Specific%5Fdata%5Fmodels" rel="nofollow">wikipedia</a> for details.</p>
http://stackoverflow.com/questions/1830179/what-is-the-overhead-of-a-method-call-in-a-good-java-vm/1857464#1857464-1Answer by Davide for What is the overhead of a method call in a good Java VM?Davide2009-12-07T02:28:47Z2009-12-07T02:28:47Z<p>The point here is that you are comparing apples and oranges. Java compiles at runtime (have you heard of JIT?), so it's not exactly comparable to C which compiles offline. Most of the overhead comes from the time which you don't count in C (the compilation process) and not from the "method call" as you suppose</p>
http://stackoverflow.com/questions/1856759/find-value-in-a-txt-put-it-as-an-input-in-b-txt-using-batch/1857074#18570740Answer by Davide for find value in a.txt , put it as an input in b.txt using batchDavide2009-12-06T23:55:28Z2009-12-06T23:55:28Z<p>If your file <code>a.txt</code> doesn't change in size, your best option is to save the line number where the thing you're looking for is. </p>
http://stackoverflow.com/questions/1856868/how-to-license-a-project/1857067#18570670Answer by Davide for How to license a projectDavide2009-12-06T23:50:18Z2009-12-06T23:50:18Z<p>Technically, if you forbid commercial use, your software is not "Free Software". There are several "nonfree" licenses that do what you ask, there is a list at the <a href="http://www.fsf.org/licensing/licenses/" rel="nofollow">FSF website</a>, e,g. the <a href="http://www.fsf.org/licensing/licenses/#UtahPublicLicense" rel="nofollow">University of Utah Public License</a>. Note the harsh criticism that the Free Software Foundation has for this nonfree license.</p>
http://stackoverflow.com/questions/1855596/how-to-remember-all-technologies-we-learn/1855698#18556981Answer by Davide for How to remember all technologies we learn?Davide2009-12-06T15:35:13Z2009-12-06T17:24:06Z<p>The good technologies are the ones that disappear. Disappear in that they become transparent, used, but out of your way, like say phones or emails (can you believe that <em>how to use emails</em> was once taught in universities?)</p>
<p>That's why I hate things like GUI-programming and I love configuration files. GUI programming must be done over and over by hand (think VisualStudio, that unfortunately I had to use several years ago). Configuration files can be scripted, automated, placed under version control and forgotten. When needed, they will resurface from your repository for free.</p>
<p>Spend your time only in good technologies that are likely to disappear.</p>
http://stackoverflow.com/questions/1585067/is-there-any-self-improving-compiler-around/1854536#18545361Answer by Davide for Is there any self-improving compiler around?Davide2009-12-06T06:18:42Z2009-12-06T06:18:42Z<p><a href="http://ctuning.org/wiki/index.php/CTools%3AMilepostGCC" rel="nofollow">MilepostGCC</a> is a MachineLearning compiler, which improve itself with time in the sense that it is able to change itself in order to become "better" with time. A simpler <a href="http://www.lri.fr/~girbal/site%5Fwrapit/iterative.html" rel="nofollow">iterative compilation</a> approach is able to improve pretty much any compiler.</p>
http://stackoverflow.com/questions/478158/what-machine-learning-benchmarks-are-out-there/1854519#18545191Answer by Davide for What machine learning benchmarks are out there?Davide2009-12-06T06:09:38Z2009-12-06T06:09:38Z<p><a href="http://www.csie.ntu.edu.tw/~cjlin/libsvmtools/datasets/" rel="nofollow">Here</a> there is a list (most are UCI)</p>
http://stackoverflow.com/questions/1832076/what-is-the-difference-between-supervised-learning-and-unsupervised-learning/1854449#18544491Answer by Davide for What is the difference between supervised learning and unsupervised learning?Davide2009-12-06T05:24:58Z2009-12-06T05:24:58Z<p>Since you ask this very basic question, it looks like it's worth specifying what Machine Learning itself is.</p>
<p>Machine Learning is a class of algorithms which is data-driven, i.e. unlike "normal" algorithms it is the data that "tells" what the "good answer" is. Example: an hypothetical non-machine learning algorithm for face recognition in images would try to define what a face is (round skin-like-colored disk, with dark area where you expect the eyes etc). A machine learning algorithm would not have such coded definition, but will "learn-by-examples": you'll show several images of faces and not-faces and a good algorithm will eventually learn and be able to predict whether or not an unseen image is a face.</p>
<p>This particular example of face recognition is <strong>supervised</strong>, which means that your examples must be <em>labeled</em>, or explicitly say which ones are faces and which ones aren't.</p>
<p>In an <strong>unsupervised</strong> algorithm your examples are not <em>labeled</em>, i.e. you don't say anything. Of course in such a case the algorithm itself cannot "invent" what a face is, but it could be able to <a href="http://en.wikipedia.org/wiki/Cluster%5Fanalysis" rel="nofollow">cluster</a> the data in different class, e.g. it could be able to distinguish that faces are very different from panoramas, which are very different from horses.</p>
<p>Since another answer mention it (in an incorrect way), there are "intermediate" form of supervision, i.e. <strong>semi-supervised</strong> and <strong>active learning</strong> techniques. Technically, these are supervised methods, in which there is some "smart" way to avoid the large number of labeled examples. In active learning, the algorithm itself decides which thing you should label (e.g. it can be pretty sure about a panorama and a horse, but it might ask you to confirm if a gorilla is indeed the picture of a face). In semi-supervised approach, there are two different algorithms, which start with the labeled examples, and then "tell" each other way they think about some large number of unlabeled data. From this "discussion" they learn.</p>
http://stackoverflow.com/questions/1254627/what-tried-and-true-algorithms-for-suggesting-related-articles-are-out-there/1854423#18544230Answer by Davide for What tried and true algorithms for suggesting related articles are out there?Davide2009-12-06T05:06:11Z2009-12-06T05:06:11Z<p>This is a typical case of <a href="http://en.wikipedia.org/wiki/Document%5Fclassification" rel="nofollow">Document Classification</a> which is studied in every class of Machine Learning. If you like statistics, mathematics and computer science, I recommend that you have a look at the unsupervised methods like <a href="http://en.wikipedia.org/wiki/Kmeans" rel="nofollow">kmeans++</a>, <a href="http://en.wikipedia.org/wiki/Naive%5FBayes%5Fclassifier" rel="nofollow">Bayesian methods</a> and <a href="http://en.wikipedia.org/wiki/Latent%5FDirichlet%5Fallocation" rel="nofollow">LDA</a>. In particular, Bayesian methods are <a href="http://en.wikipedia.org/wiki/Naive%5FBayes%5Fclassifier#Example%3A%5Fdocument%5Fclassification" rel="nofollow">pretty good</a> at what are you looking for, their only problem is being slow (but unless you run a very large site, that shouldn't bother you much).</p>
<p>On a more practical and less theoretical approach, I recommend that you have a look a <a href="http://norvig.com/spell-correct.html" rel="nofollow">this</a> and <a href="http://www.blogcatalog.com/blog/the-mendicant-bug/d857e27bdc3e83b205a63b0f63ef7a08" rel="nofollow">this other</a> great code examples.</p>
http://stackoverflow.com/questions/1796684/is-there-an-api-or-tool-that-can-automate-software-updating/1853863#18538630Answer by Davide for Is there an API or tool that can automate software updating?Davide2009-12-05T23:34:32Z2009-12-05T23:42:11Z<p>For windows, I'd use <a href="http://code.google.com/p/omaha/" rel="nofollow">Google Update, also known as omaha</a>.</p>
<p>Since you didn't tag this question as windows, I'd also mention a <a href="http://code.google.com/p/update-engine/" rel="nofollow">UpdateEngine</a> for Mac.</p>
<p>And (best of all) <a href="http://en.wikipedia.org/wiki/Advanced%5FPackaging%5FTool" rel="nofollow">apt</a>, which is available for free on all <a href="http://www.debian.org" rel="nofollow">Debian</a>-based <a href="http://en.wikipedia.org/wiki/Linux" rel="nofollow">Linux</a> and <a href="http://www.debian.org/ports/netbsd/" rel="nofollow">BSD</a> distributions, like <a href="http://www.ubuntu.com" rel="nofollow">Ubuntu</a></p>
http://stackoverflow.com/questions/1727670/should-i-be-concerned-with-bit-flips-on-amazon-s3/1853833#18538330Answer by Davide for Should I be concerned with bit flips on Amazon S3?Davide2009-12-05T23:22:38Z2009-12-05T23:28:07Z<p>I see your question from two points of view, a theoretical and practical.</p>
<p>From a theoretical point of view, yes, you should be concerned - and not only about bit flipping, but about several other possible problems. In particular <a href="http://aws.amazon.com/agreement/#11" rel="nofollow">section 11.5</a> of the customer agreements says that Amazon</p>
<blockquote>
<p>MAKE NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE WITH RESPECT TO THE SERVICE OFFERINGS. (..omiss..) WE AND OUR LICENSORS DO NOT WARRANT THAT THE SERVICE OFFERINGS WILL FUNCTION AS DESCRIBED, WILL BE UNINTERRUPTED OR ERROR FREE, OR FREE OF HARMFUL COMPONENTS, OR THAT THE DATA YOU STORE WITHIN THE SERVICE OFFERINGS WILL BE SECURE OR NOT OTHERWISE LOST OR DAMAGED. </p>
</blockquote>
<p>Now, in practice, I'd not be concerned. If your data will be lost, you'll blog about it and (although they might not face any legal action), their business will be pretty much over.</p>
<p>On the other hand, that depends on how much vital your data is. Suppose that you were rolling your own stuff in your own data center(s). How would you plan for disaster recovery there? If you says: I'd just keep two copies in two different racks, just use the same technique with Amazon, maybe keeping two copies in two different datacenters (since you wrote that you are not interested in <em>how</em> to protect against bit flips, I'm providing only a trivial example here)</p>
http://stackoverflow.com/questions/1640916/kanban-scrumish-tools-to-get-started4kanban scrumish tool(s) to get startedDavide2009-10-29T00:04:18Z2009-12-01T00:01:58Z
<p>After investigating a little bit scrum and kanban, I finally read <a href="http://stackoverflow.com/questions/1367491/apply-kanban-in-an-agile-team/1367633#1367633">this answer</a> and decided to start using kanban, picking something from scrum (note that I'm working mostly by myself, and I do have read <a href="http://stackoverflow.com/questions/1407189/can-agile-scrum-be-used-by-1-or-2-developers">this question and its answers</a>). </p>
<p>Now, my question is: which tool would be best to get started? </p>
<ol>
<li>whiteboard and postit</li>
<li><a href="http://agilezen.com" rel="nofollow">agilezen.com</a> </li>
<li><a href="http://www.atlassian.com/software/greenhopper/" rel="nofollow">JIRA with greenhopper</a> </li>
<li>a spreadsheet (possibly on Google Docs)</li>
<li><a href="http://www.brightgreenprojects.com/" rel="nofollow">brightgreenprojects.com</a></li>
<li><a href="http://www.agile42.com/cms/pages/agilo/" rel="nofollow">Agilo</a></li>
<li>something else (please specify)</li>
</ol>
<p>Notes about each:</p>
<ol>
<li><p>I would lean towards the whiteboard, but there are several drawbacks (e.g. cannot make automatic charts, time measurements, metrics, and sometimes I work from home - where I need it most - and it's not convenient to carry :-) </p></li>
<li><p>I don't want to remember another username/password (I promised to myself to signup only to OpenID-enabled services)</p></li>
<li><p>My employer has JIRA but my group doesn't use it - I might ask for an account (it shouldn't require another password) and maybe later involve the rest of the group. But I don't know if they are using greenhopper and if it's a big deal installing it.</p></li>
<li><p>I generally hate spreadsheets</p></li>
<li><p>maybe overkill?</p></li>
<li><p>I'd be happy to have a localhost instance, but it could be problematic to give access to the whole group (per network/firewalls) - not a deal-breaker but surely a concern</p></li>
</ol>
<p>What I'd like to get from this?</p>
<ul>
<li>being more productive</li>
<li>tracking how much time I spend in any given task, possibly discussing the issue with my supervisor</li>
<li>tracking what "blocks" me most often</li>
<li>immediately see where I am compared to my schedule</li>
<li>manage in a better way my long todo list (e.g. answering faster to the "what I should do next?" question)</li>
</ul>
<p>Do you have any suggestion?</p>
<p>Note on the scrumish tag: read the <a href="http://www.crisp.se/henrik.kniberg/Kanban-vs-Scrum.pdf" rel="nofollow">Henrik Kniberg's PDF</a>. He first introduced the definition of scrumish on page 9.</p>
http://stackoverflow.com/questions/1817442/how-to-recognize-rectangles-in-this-image/1817551#18175510Answer by Davide for How to recognize rectangles in this image?Davide2009-11-30T02:07:47Z2009-11-30T02:07:47Z<p>There are several different approaches to your problem. I'd use a <a href="http://en.wikipedia.org/wiki/Morphological%5Fimage%5Fprocessing" rel="nofollow">morphological image processing</a> tool like <a href="http://www.mmorph.com/" rel="nofollow">this one</a>. You will have the flexibility to define "rectangle" even something that not "exactly closed" (where the fill algorithm will fail).</p>
<p>Another possibility could be to use a <a href="http://en.wikipedia.org/wiki/Machine%5Flearning" rel="nofollow">machine learning</a> approach, which basically is more data-driven than definition-driven like the previous one. You'll have to give your algorithm several "examples" of what a rectangle is, and it will eventually learn (with a <a href="http://en.wikipedia.org/wiki/Inductive%5Fbias" rel="nofollow">bias</a> and an error rate).</p>
http://stackoverflow.com/questions/1811691/running-an-outside-program-executable-in-python/1811704#18117040Answer by Davide for running an outside program (executable) in python?Davide2009-11-28T05:41:45Z2009-11-28T05:41:45Z<p>I like more <code>subprocess.Popen</code> instead of <code>call</code>. It gives you more control. See <a href="http://docs.python.org/library/subprocess.html#module-subprocess" rel="nofollow">here</a> for details.</p>
http://stackoverflow.com/questions/1811683/how-to-pass-this-command-to-subprocess-call/1811693#18116930Answer by Davide for How to pass this command to subprocess.call?Davide2009-11-28T05:38:28Z2009-11-28T05:38:28Z<p>Have you tried <code>'"500x<"'</code> instead of <code>'\'500x<\''</code>?</p>
http://stackoverflow.com/questions/1792479/decoding-802-11-b/1792953#17929530Answer by Davide for decoding 802.11 bDavide2009-11-24T21:13:22Z2009-11-24T21:13:22Z<p>If your data is really <em>raw</em> then you basically have to build every piece of the signal processing chain in software, which is possible but not really straightforward. Have you checked the relevant <a href="http://en.wikipedia.org/wiki/Software-defined%5Fradio" rel="nofollow">wikipedia page</a>? You might use <a href="http://gnuradio.org/" rel="nofollow">gnuradio</a> instead of starting from scratch.</p>
http://stackoverflow.com/questions/1758095/mapping-points-from-euclician-2-space-onto-a-poincare-disc/1786574#17865741Answer by Davide for Mapping points from Euclician 2-space onto a Poincare discDavide2009-11-23T22:40:37Z2009-11-23T22:40:37Z<p>If I understand everything correctly, the answer you get on the other forum is for the Beltrami–Klein model. Once you have that, you can get to the coordinates in the Poicare' disk with</p>
<pre><code>p = b / (1 + sqrt(1 - b * b))
</code></pre>
<p>Where <code>p</code> is the vector of coordinates in the Poincare' disk (i.e. what you need) and <code>b</code> is the one in the Beltrami–Klein model (i.e. what you get from the other answer).</p>
http://stackoverflow.com/questions/630519/can-you-make-vi-advance-the-screen-when-opened/1783816#17838160Answer by Davide for Can you make vi "advance" the screen when opened?Davide2009-11-23T15:24:21Z2009-11-23T15:24:21Z<p>This is not a solution, but a nice workaround, that I've just started using. Create the following wrapper script for vi (I placed it in my ~/bin/vim-wrapper) and possibly alias it with something like:</p>
<pre><code>alias vi='~/bin/vim-wrapper'
</code></pre>
<p>Content of <code>vim-wrapper</code> (see <a href="http://stackoverflow.com/questions/1780483/lines-and-columns-environmental-variables-lost-in-a-script/1782909#1782909">this answer</a> for details):</p>
<pre><code>#!/bin/bash
LINES=$(tput lines)
for i in `seq 1 $LINES`; do
echo $i
done
vim $@
</code></pre>
<p>This will solve completely the <em>screen wiped out</em> issue. Unfortunately, it does <strong>not</strong> solve the <em>have to scroll up quite a lot</em> when you edit a long file in vim. But if you set a large enough buffer in your xterm-like (I use gnome terminal 2.22.1) you'd be ok.</p>
http://stackoverflow.com/questions/1780483/lines-and-columns-environmental-variables-lost-in-a-script0LINES and COLUMNS environmental variables lost in a scriptDavide2009-11-23T00:01:06Z2009-11-23T14:14:03Z
<p>Consider the following:</p>
<pre><code>me@mine:~$ cat a.sh
#!/bin/bash
echo "Lines: " $LINES
echo "Columns: " $COLUMNS
me@mine:~$ ./a.sh
Lines:
Columns:
me@mine:~$ echo "Lines: " $LINES
Lines: 52
me@mine:~$ echo "Columns: " $COLUMNS
Columns: 157
me@mine:~$
</code></pre>
<p>The variables <code>$LINES</code> and <code>$COLUMNS</code> are shell variables, <strong>not</strong> environmental variables, and thus are not exported to the child process (but they are automatically updated when I resize the xterm window, even when logged in via ssh from a remote location). Is there a way in which I can let my script know the current terminal size?</p>
<p>EDIT:
I need this as a workaround do <a href="http://stackoverflow.com/questions/630519/can-you-make-vi-advance-the-screen-when-opened">this problem</a>: vi (as well as vim, less, and similar commands) messes up the screen every time I use it. Changing the terminal is not an option, and thus I'm looking for workarounds (scrolling down <code>$LINES</code> lines surely is not the perfect solution, but at least is better than losing the previous screen)</p>
http://stackoverflow.com/questions/1573361/find-duplicate-lines-and-remove-using-regular-expression-with-replace-feature/1573635#15736351Answer by Davide for find duplicate lines and remove using regular expression with replace featureDavide2009-10-15T16:46:42Z2009-11-19T04:38:32Z<p>See my request for more info, I'm answering in the <em>easy way</em> now.</p>
<ol>
<li><p>If the order doesn't matter, just a</p>
<p>sort -u</p>
<p>will do the trick</p></li>
<li><p>If the order does matter but you don't mind re-run multiple passes (this is vim syntax), you can use:</p>
<p>%s/\(.*\)\(\_.*\)\(\1\)/\2\1/g</p>
<p>to preserve the last occurrence, or </p>
<p>%s/\(.*\)\(\_.*\)\(\1\)/\1\2/g</p>
<p>to preserve the first occurrence.</p></li>
</ol>
<p>If you do mind re-run multiple passes, than it's more difficult, so before we work on that, please say so in the question!</p>
<p>EDIT: in your edit you weren't very clear, but it looks like you want just a single-pass duplicate ADJACENT lines removal! Well, that's much easier!</p>
<p>A simple:</p>
<pre><code>/(.*)\1*/\1/
</code></pre>
<p>(<code>/\(.*\)\1*/\1/</code> in vim) i.e. searching for <code>(.*)\1*</code> and replacing it with just <code>\1</code> will do the trick</p>
http://stackoverflow.com/questions/1754115/libsvm-model-file-format1libsvm model file formatDavide2009-11-18T06:53:49Z2009-11-18T17:01:36Z
<p>According to <a href="http://www.csie.ntu.edu.tw/~cjlin/libsvm/faq.html#f402" rel="nofollow">this FAQ</a> the model format in libsvm should be straightforward. And in fact it is, when I call just <code>svm-train</code>. As an example, the first SV for the <code>a1a</code> dataset is</p>
<pre><code> 1 3:1 11:1 14:1 19:1 39:1 42:1 55:1 64:1 67:1 73:1 75:1 76:1 80:1 83:1
</code></pre>
<p>On the other hand, if I use the <code>easy.py</code> script, my first SV ends up being:</p>
<pre><code> 512 1:-1 2:-1 3:1 4:-1 5:-1 6:-1 7:-1 8:-1 9:-1 10:-1 11:1 13:-1 14:1 15:-1 16:-1 17:-1 18:-1 19:1 20:-1 21:-1 22:-1 23:-1 24:-1 25:-1 26:-1 27:-1 28:-1 29:-1 30:-1 31:-1 32:-1 33:-1 34:-1 35:-1 36:-1 37:-1 38:-1 39:1 40:-1 41:-1 42:1 43:-1 44:-1 45:-1 46:-1 47:-1 48:-1 49:-1 50:-1 51:-1 52:-1 53:-1 54:-1 55:1 56:-1 57:-1 58:-1 59:-1 61:-1 62:-1 63:-1 64:1 65:-1 66:-1 67:1 68:-1 69:-1 70:-1 71:-1 72:-1 73:1 74:-1 75:1 76:1 77:-1 78:-1 79:-1 80:1 81:-1 82:-1 83:1 84:-1 85:-1 86:-1 87:-1 88:-1 90:-1 91:-1 92:-1 93:-1 94:-1 95:-1 97:-1 98:-1 99:-1 100:-1 101:-1 102:-1 103:-1 104:-1 105:-1 106:-1 107:-1 108:-1 109:-1 110:-1 112:-1 113:-1 114:-1 115:-1 117:-1 118:-1 119:-1
</code></pre>
<p>which is an instance that doesn't exist at all in my training set! In fact if I do:</p>
<pre><code> $ grep "119:" a1a
-1 1:1 6:1 18:1 22:1 36:1 42:1 49:1 66:1 67:1 73:1 74:1 76:1 80:1 119:1
-1 1:1 6:1 18:1 26:1 35:1 43:1 53:1 65:1 67:1 73:1 74:1 76:1 80:1 119:1
-1 2:1 6:1 15:1 19:1 39:1 42:1 55:1 62:1 67:1 72:1 74:1 76:1 78:1 119:1
-1 4:1 6:1 16:1 21:1 35:1 44:1 49:1 64:1 67:1 72:1 74:1 76:1 78:1 119:1
-1 2:1 6:1 14:1 30:1 35:1 42:1 49:1 65:1 67:1 72:1 74:1 76:1 78:1 119:1
-1 2:1 6:1 17:1 20:1 37:1 40:1 57:1 63:1 67:1 73:1 74:1 76:1 80:1 119:1
-1 5:1 6:1 18:1 22:1 36:1 40:1 54:1 61:1 67:1 72:1 75:1 76:1 80:1 119:1
-1 5:1 6:1 17:1 26:1 35:1 42:1 53:1 62:1 67:1 73:1 74:1 76:1 80:1 119:1
</code></pre>
<p>There isn't any instance with 119:-1 (and even if it's just swapping <code>+1</code> with <code>-1</code>, there isn't any instance with 119:1 and 118:1 either - missing attributes are zeros) </p>
<p>If I do this <a href="http://www.csie.ntu.edu.tw/~cjlin/libsvm/faq.html#f433" rel="nofollow">source code modification</a>, I clearly see that in the former case (only <code>svm-train</code> involved) the first SV is also the first instance. But in the latter case (i.e. with <code>easy.py</code> script), the output which should give me which instance is the SV is eaten by <code>grid.py</code></p>
<p>What's going on, here?</p>
http://stackoverflow.com/questions/1745385/auto-abbreviating-jlabel/1745536#17455360Answer by Davide for auto abbreviating JLabelDavide2009-11-16T23:23:31Z2009-11-16T23:23:31Z<p>For improved swing, before writing your own extensions, I recommend to check <a href="http://swinglabs.org" rel="nofollow">SwingLabs</a>. In particular there is a cool <a href="http://swinglabs.org/hudson/job/SwingX%20Weekly%20Build/javadoc/org/jdesktop/swingx/JXLabel.html" rel="nofollow">JXLabel</a> (although it's not clear what you want that the regular JLabel has not)</p>
http://stackoverflow.com/questions/1735199/swig-crashes-on-aix-with-python-and-probably-everything-else-swig-support0SWIG crashes on AIX (with python, and probably everything else SWIG support)Davide2009-11-14T18:55:30Z2009-11-14T19:26:25Z
<p>SWIG compiles and install easily on AIX. Unfortunately, a simple <a href="http://www.swig.org/tutorial.html" rel="nofollow">SWIG hello world</a> (which also compiles - but not so easily) crashes with Segmentation Fault or Illegal Instruction (depending on some details of the compilation/linker process). This happens with both gcc and xlc (IBM c compiler). I tried only the native AIX linker ld, because the homonyms GNU ld was not installed on my system. </p>
<p>File: example.c</p>
<pre><code> #include <time.h>
double My_variable = 3.0;
int fact(int n) {
if (n <= 1) return 1;
else return n*fact(n-1);
}
int my_mod(int x, int y) {
return (x%y);
}
char *get_time()
{
time_t ltime;
time(&ltime);
return ctime(&ltime);
}
</code></pre>
<p>File: example.i</p>
<pre><code>%module example
%{
/* Put header files here or function declarations like below */
extern double My_variable;
extern int fact(int n);
extern int my_mod(int x, int y);
extern char *get_time();
%}
extern double My_variable;
extern int fact(int n);
extern int my_mod(int x, int y);
extern char *get_time();
</code></pre>
<p>Makefile snippet:</p>
<pre><code>swig -python example.i
xlc -q64 -c example.c example_wrap.c -I/your-python-path/include/python2.5/
ld -G -b64 -berok -bnoentry -bexpall -brtl example.o example_wrap.o -o _example.so
</code></pre>
<p>The linker step is the problematic one. If you follow the examples on the <a href="http://www.swig.org/tutorial.html" rel="nofollow">tutorial</a>, you should do</p>
<pre><code>ld -bshared example.o example_wrap.o -o _example.so #the b is not a typo, but a different syntax in AIX vd GNU ld
</code></pre>
<p>Unfortunately this does not work for several reasons. I believe that IBM/AIX and the Open Source communities have quite a different thoughts on what "shared library" means. The most common shared objects (so) that you get from the AIX native linker have no symbols at all in them (and are in fact less than 1kB in size). It's also pretty easy to get broken output from the linker (in such a case a quite long list of unresolved symbols like the following appears while linking):</p>
<pre><code>ld: 0711-317 ERROR: Undefined symbol: PyType_Type
</code></pre>
<p>Doing what one is <a href="http://en.wikipedia.org/wiki/RTFM" rel="nofollow">supposed to do</a>, it seems clear that the solution is hacking with the various linker options, <code>-berok</code>, <code>-bnoentry</code>, <code>-bexpall</code>, <code>-brtl</code>, <code>-bshared</code>, <code>-bM:SRE</code>, <code>-bexpfull</code>. In fact, it is possible to find some combinations which create a non-empty .so library, without generating errors. One of these combinations is reported in the Makefile snippet above (there are others). Unfortunately, all of them fail in one of the following two modes!</p>
<pre><code>$ python -c "import example"
Illegal instruction (core dumped)
</code></pre>
<p>or </p>
<pre><code>$ python -c "import example"
Segmentation fault (core dumped)
</code></pre>
<p>Using the gcc, or a different version of python (we have 7!) either 32 bit or 64 bit does not change anything: you can find a "good" link option, but it crashes at runtime. How to solve this?</p>
http://stackoverflow.com/questions/1735199/swig-crashes-on-aix-with-python-and-probably-everything-else-swig-support/1735313#17353130Answer by Davide for SWIG crashes on AIX (with python, and probably everything else SWIG support)Davide2009-11-14T19:26:25Z2009-11-14T19:26:25Z<p>This is not an actual question, but a report on how I fixed my problem (see <a href="http://meta.stackoverflow.com/questions/17463/is-it-poor-etiquette-to-answer-your-own-question">here</a> why I'm doing this). And actually I wasn't able to solve it myself, but it was thanks to <a href="http://stackoverflow.com/questions/185073/crash-when-calling-into-c-library-from-perl-using-swig-aix-5-1">this other guy</a>. I am rewriting it here, because he was too specific (AIX 5.1 with perl and C++, and I found him serendipitously, while I was searching for something else! I wasn't able to find his answer at all when I was searching for this problem! I hope this post will be more findable to others!
My problem is on AIX 5.3 with python and C. I believe that it is common to every SWIG installation on AIX (thus I didn't tag python and C). I'll contact the developers soon so they might fix the help in the first place.</p>
<p>Well, the fix is simply to use a different link line, in particular as follows:</p>
<pre><code>ld -G -bI:/your-python-path/lib/python2.5/config/python.exp -bnoentry -bexpall -lC -lc -ldl example.o example_wrap.o -o _example.so
</code></pre>
<p>The key is the exp file, which you should find yourself for your language/installation:</p>
<pre><code>find /your-python-or-perl-or-other-language-path/ -name *exp
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1828654/programmer-friendly-search-engine/1853936#1853936Comment by Davide on Programmer-friendly search engine?Davide2009-12-09T23:37:27Z2009-12-09T23:37:27ZSurely we don't need their bandwidth, and neither their processing power nor speed. Programmers are a tiny fraction of web users, and for such a service they could happily wait more seconds than on a common Google search. Surely storage can be a problem, but again, if we find a smart way of indexing only "programming-related" pages, than we are set: I believe that a small cluster can handle it pretty easily! Now, developing the right algorithm and the right rank system, that could be hard.http://stackoverflow.com/questions/1876890/how-to-conditionalize-a-makefile-based-upon-grep-resultsComment by Davide on How to conditionalize a makefile based upon grep results?Davide2009-12-09T21:09:20Z2009-12-09T21:09:20ZWhich make is this? gnu?http://stackoverflow.com/questions/1870372/skip-an-element-in-zip/1870431#1870431Comment by Davide on skip an element in zipDavide2009-12-08T22:52:14Z2009-12-08T22:52:14Z+1 Actually I am using izip :-) but wanted to keep the question simpler. Thanks! http://stackoverflow.com/questions/1856759/find-value-in-a-txt-put-it-as-an-input-in-b-txt-using-batch/1867697#1867697Comment by Davide on find value in a.txt , put it as an input in b.txt using batchDavide2009-12-08T20:45:16Z2009-12-08T20:45:16ZYou should edit your question and delete all these answers which are creating only confusion!http://stackoverflow.com/questions/1830179/what-is-the-overhead-of-a-method-call-in-a-good-java-vm/1857464#1857464Comment by Davide on What is the overhead of a method call in a good Java VM?Davide2009-12-07T04:49:50Z2009-12-07T04:49:50ZWhy downvote? This is simple and accurate (and more up-to-date than other answers which were written before the question was modified)http://stackoverflow.com/questions/1822315/data-driven-tests-with-junit/1823134#1823134Comment by Davide on Data-driven tests with jUnitDavide2009-12-07T02:32:44Z2009-12-07T02:32:44Z+1 that's exactly what I'd have written :-)http://stackoverflow.com/questions/1857296/can-gcc-on-ubuntu-on-a-64-bit-machine-generate-an-executable-where-long-is-32-bit/1857353#1857353Comment by Davide on Can gcc on Ubuntu on a 64-bit machine generate an executable where long is 32-bits?Davide2009-12-07T02:03:50Z2009-12-07T02:03:50ZYou are right, but since he didn't mention pointers at all, I believe he's just concerned about longs. In addition true LLP64 is not possible in Linux (to best of my knowledge, I can be wrong).http://stackoverflow.com/questions/1856868/how-to-license-a-project/1856877#1856877Comment by Davide on How to license a projectDavide2009-12-06T23:46:52Z2009-12-06T23:46:52ZIt doesn't "effectively excludes commercial use", but (at present) most businesses doing commercial uses are (unmotivatedly, IMO) scared of GPL and might not use a GPL-licensed project. This might change in future (and I hope it will!)http://stackoverflow.com/questions/1828654/programmer-friendly-search-engineComment by Davide on Programmer-friendly search engine?Davide2009-12-06T21:26:17Z2009-12-06T21:26:17ZYou insist that you want to search for documentation, but either "documentation is plain text sentences" that normal google will index correctly, or "documentation is code snippets" that any of the "code search engine" mentioned below should be able to find. If you provide a better example of what are you looking for, that a "normal" and "code" web engines don't find, you might get the answer you want!http://stackoverflow.com/questions/1828654/programmer-friendly-search-engine/1853936#1853936Comment by Davide on Programmer-friendly search engine?Davide2009-12-06T21:18:34Z2009-12-06T21:18:34ZSee my comment to your questionhttp://stackoverflow.com/questions/1754873/unsupervised-classification-methods-availableComment by Davide on Unsupervised classification methods availableDavide2009-12-06T06:00:15Z2009-12-06T06:00:15ZSVM is supervised, not unsupervised, so it is not ok for what you wanthttp://stackoverflow.com/questions/1783669/any-python-support-vector-machine-library-around-that-allows-online-learning/1816714#1816714Comment by Davide on Any python Support Vector Machine library around that allows online learning?Davide2009-12-06T05:58:06Z2009-12-06T05:58:06Zbeware that batch mode can be worst than random, if implemented naively.http://stackoverflow.com/questions/1760455/convert-latex-to-html-in-java-or-cComment by Davide on Convert latex to html in Java or C++?Davide2009-12-06T00:01:57Z2009-12-06T00:01:57ZWhat's bad about latex2html mentioned at the first of your links? I use it often and it's great. Does it not work on your platform?http://stackoverflow.com/questions/1758095/mapping-points-from-euclician-2-space-onto-a-poincare-discComment by Davide on Mapping points from Euclician 2-space onto a Poincare discDavide2009-11-30T15:41:18Z2009-11-30T15:41:18ZI want to let you know that I just discovered this site (powered by the same software as stackoveflow) where this kind of questions might get more attention/discussion: <a href="http://mathoverflow.net/" rel="nofollow">mathoverflow.net</a>http://stackoverflow.com/questions/1817539/java-compiler-error-cannot-find-symbolComment by Davide on Java compiler error. Cannot find symbolDavide2009-11-30T02:12:08Z2009-11-30T02:12:08Zplease show an <code>ls</code> in the same directory and the <code>SystemController</code> class. I suppose a mis-spelling.