User Bruno De Fraine - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:35:53Zhttp://stackoverflow.com/feeds/user/6918http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1700415/whats-the-best-way-to-write-a-maintainable-web-scraping-app/1700564#170056410Answer by Bruno De Fraine for What's the best way to write a maintainable web scraping app?Bruno De Fraine2009-11-09T11:57:35Z2009-11-09T11:57:35Z<p>In Perl, something like <a href="http://search.cpan.org/dist/WWW-Mechanize/" rel="nofollow"><code>WWW::Mechanize</code></a> can already make your script more simple and robust, because it can find HTML forms in previous responses from the website. You can fill in these forms to prepare a new request. For example:</p>
<pre><code>my $mech = WWW::Mechanize->new();
$mech->get($url);
$mech->submit_form(
form_number => 1,
fields => { password => $password },
);
die unless ($mech->success);
</code></pre>
http://stackoverflow.com/questions/1521462/bash-looping-through-content-of-a-file/1521498#15214987Answer by Bruno De Fraine for Bash: looping through content of a file?Bruno De Fraine2009-10-05T18:00:20Z2009-10-05T18:00:20Z<p>The correct syntax is:</p>
<pre><code>while read p; do
echo $p
done < peptides.txt
</code></pre>
http://stackoverflow.com/questions/132052/servlet-for-serving-static-content9Servlet for serving static contentBruno De Fraine2008-09-25T08:04:28Z2009-09-27T11:54:16Z
<p>I deploy a webapp on two different containers (Tomcat and Jetty), but their default servlets for serving the static content have a different way of handling the URL structure I want to use (<a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=42411" rel="nofollow">details</a>).</p>
<p>I am therefore looking to include a small servlet in the webapp to serve its own static content (images, CSS, etc.). The servlet should have the following properties:</p>
<ul>
<li>No external dependencies</li>
<li>Simple and reliable</li>
<li>Support for <a href="http://www.freesoft.org/CIE/RFC/1945/58.htm" rel="nofollow"><code>If-Modified-Since</code></a> header (i.e. custom <a href="http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpServlet.html#getLastModified(javax.servlet.http.HttpServletRequest)" rel="nofollow"><code>getLastModified</code></a> method)</li>
<li>(Optional) support for gzip encoding, etags,...</li>
</ul>
<p>Is such a servlet available somewhere? The closest I can find is <a href="http://www.unix.org.ua/orelly/java-ent/servlet/ch04_04.htm#ch04-35758" rel="nofollow">example 4-10</a> from the servlet book.</p>
<p><strong>Update:</strong> The URL structure I want to use - in case you are wondering - is simply:</p>
<pre><code> <servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/static/*</url-pattern>
</servlet-mapping>
</code></pre>
<p>So all requests should be passed to the main servlet, unless they are for the <code>static</code> path. The problem is that Tomcat's default servlet does not take the ServletPath into account (so it looks for the static files in the main folder), while Jetty does (so it looks in the <code>static</code> folder).</p>
http://stackoverflow.com/questions/1452218/ocaml-set-modules/1454842#14548422Answer by Bruno De Fraine for OCaml: Set modulesBruno De Fraine2009-09-21T14:35:04Z2009-09-21T14:35:04Z<p>In addition to Chris's answer, it may be useful to say that some standard library modules already adhere to the <code>OrderedType</code> signature. For example, you can simply do:</p>
<pre><code>module StringSet = Set.Make(String) ;; (* sets of strings *)
module Int64Set = Set.Make(Int64) ;; (* sets of int64s *)
module StringSetSet = Set.Make(StringSet) ;; (* sets of sets of strings *)
</code></pre>
<p>And so on.</p>
<p>Here's a simple usage example for <code>StringSet</code>; remember that sets are functional data structures, so adding a new element to a set returns a new set:</p>
<pre><code>let set = List.fold_right StringSet.add ["foo";"bar";"baz"] StringSet.empty ;;
StringSet.mem "bar" set ;; (* returns true *)
StringSet.mem "zzz" set ;; (* returns false *)
</code></pre>
http://stackoverflow.com/questions/1068852/how-do-you-put-text-below-other-text/1069159#10691593Answer by Bruno De Fraine for How do you put text below other text?Bruno De Fraine2009-07-01T13:31:00Z2009-07-01T13:31:00Z<p>Have you tried display mode math instead of text mode math. That is, try either:</p>
<pre><code>$\displaystyle\arg \max_{\substack{w \\ \phi}} f(w,\phi)$
</code></pre>
<p>Or try:</p>
<pre><code>\[ \arg \max_{\substack{w \\ \phi}} f(w,\phi) \]
</code></pre>
http://stackoverflow.com/questions/1068110/identifying-last-loop-when-using-for-each/1069054#10690542Answer by Bruno De Fraine for Identifying last loop when using for eachBruno De Fraine2009-07-01T13:09:09Z2009-07-01T13:09:09Z<p>What you are trying to do seems just a little too advanced for the foreach-loop. However, you can use <code>Iterator</code>s explicitly. For example, in Java, I would write this:</p>
<pre><code>Collection<String> ss = Arrays.asList("A","B","C");
Iterator<String> it = ss.iterator();
while (it.hasNext()) {
String s = it.next();
if(it.hasNext())
System.out.println("Looping: " + s);
else
System.out.println("Last one: " + s);
}
</code></pre>
http://stackoverflow.com/questions/1026699/force-my-custom-debian-package-to-resolve-r-dependency-from-specific-repository/1026756#10267561Answer by Bruno De Fraine for Force my custom debian package to resolve R dependency from specific repositoryBruno De Fraine2009-06-22T11:52:02Z2009-06-22T11:52:02Z<p>You really should not install other packages from the <code>preinst</code> script. This makes it impossible for <code>apt</code> or <code>dpkg</code> to figure out the package dependencies. The correct way is to state the up-to-date version as a dependency in the <code>debian/control</code> file:</p>
<pre><code>Depends: R (>= x.y)
</code></pre>
<p>For example:</p>
<pre><code>Depends: libapr0 (>= 2.0.54)
</code></pre>
<p>This may mean that the package is uninstallable for users that do not add the other repository as well; you should inform them of the other repository through other channels. Or you could consider including the package in your repository.</p>
http://stackoverflow.com/questions/940984/what-are-some-exotic-parsing-techniques/958209#9582091Answer by Bruno De Fraine for What are some exotic parsing techniques?Bruno De Fraine2009-06-05T21:19:02Z2009-06-05T21:19:02Z<p>Since you are talking about using OCaml for parsing, this page gives an overview of different parsing options for that language:</p>
<p><a href="http://www.lama.univ-savoie.fr/~raffalli/ocaml-parsing.html" rel="nofollow">Parser generators for the OCaml language</a></p>
<p>If you decide to settle for <code>ocamlyacc</code> (or <code>menhir</code>), these tutorials may be a little easier than the reference manual:</p>
<ul>
<li><a href="http://plus.kaist.ac.kr/~shoh/ocaml/ocamllex-ocamlyacc/ocamllex-tutorial/" rel="nofollow">Ocamllex tutorial</a></li>
<li><a href="http://plus.kaist.ac.kr/~shoh/ocaml/ocamllex-ocamlyacc/ocamlyacc-tutorial/" rel="nofollow">Ocamlyacc tutorial</a></li>
</ul>
http://stackoverflow.com/questions/432549/what-single-java-book-would-you-recommend-for-an-experienced-software-developer/902226#9022260Answer by Bruno De Fraine for What single Java book would you recommend for an experienced software developer?Bruno De Fraine2009-05-23T19:07:36Z2009-05-23T19:07:36Z<p>Consider <a href="http://oreilly.com/catalog/9780596007737/" rel="nofollow">Java in a nutshell</a></p>
<p>It has a chapter "Java syntax from the ground up" for which the description reads "Programmers with substantial experience with languages such as C and C++ should be able to pick up the Java syntax quickly by reading this chapter". Many other chapters are relevant as well.</p>
http://stackoverflow.com/questions/862950/subversion-prevent-local-modifications-to-one-file-from-being-committed5Subversion: prevent local modifications to one file from being committed?Bruno De Fraine2009-05-14T12:04:38Z2009-05-22T14:37:04Z
<p>I have a Subversion working copy where I made some local modifications to one file. The modifications are only relevant to me, I do not want to commit them. (The version in the repository contains some default values which are suitable for the other users, just not for me, which is why I want to override them locally.)</p>
<p>Note that although I do not want to commit my changes, I <em>do</em> want to receive any updates made in the repository when I do <code>svn update</code>. Also, it is only in my working copy that I do not want to commit the changes to that file, the other users should not be affected. So <code>svn:ignore</code> or commit hooks do not fit my purpose.</p>
<p>Currently, I simply do:</p>
<pre><code>svn commit file1 file2...
</code></pre>
<p>where I specify explicitly the files that have changes <em>excluding</em> the particular file that I do not want to commit.</p>
<p>However, while I'm working, I have the habit of simply writing:</p>
<pre><code>svn commit -m "Log of what I just did"
</code></pre>
<p>and I fear that I will inadvertently commit the "forbidden" file by using the above command at a moment when I'm not attentive.</p>
<p>In short, what I'm looking for is simply a way of "marking" a file in a working copy which prevents Subversion from committing the changes in that file (it doesn't have to be automatic exclusion, even if I just get an error when I try to commit all files, it is fine). Sort of like marking files in a "conflict" state...</p>
<p>Does such a thing exist?</p>
<p><strong>Update</strong>: akent, thanks for pointing out this <a href="http://stackoverflow.com/questions/635446/svn-is-there-a-way-to-mark-a-file-as-do-not-commit">very similar question</a>.</p>
http://stackoverflow.com/questions/862950/subversion-prevent-local-modifications-to-one-file-from-being-committed/898186#8981860Answer by Bruno De Fraine for Subversion: prevent local modifications to one file from being committed?Bruno De Fraine2009-05-22T14:37:04Z2009-05-22T14:37:04Z<p>There have been a few answers that can work:</p>
<ol>
<li>Create a pre-commit hook script that reject the commit when a specific property is being added. You can then add this property to files in the working copy to prevent commits. </li>
<li>TortoiseSVN will exclude files in the special changelist "ignore-on-commit". However, this is not honored by the SVN command-line client.</li>
</ol>
<p>CoverosGene suggested that the default commands such as <code>svn commit</code> operate on a default changelist, such that you can exclude a file if you assign it to another changelist, but I can't find any reference of that in the documentation, and in my testing <strong>this does not work</strong>.</p>
<p>Since there is no good solution for the SVN command-line client, I've opened an enhancement request <a href="http://subversion.tigris.org/issues/show%5Fbug.cgi?id=3415" rel="nofollow">here</a>. The request suggests that the command-line client could also honor the "ignore-on-commit" changelist.</p>
http://stackoverflow.com/questions/852814/how-can-i-remove-missing-files-with-spaces-in-svn/853001#8530010Answer by Bruno De Fraine for How can I remove missing files with spaces in svn?Bruno De Fraine2009-05-12T14:13:11Z2009-05-12T14:13:11Z<p>With GNU awk, I can do:</p>
<pre><code>svn stat | awk -v FIELDWIDTHS="1 6 1000 1" -v ORS=$'\0' '$1 == "!" { print $3 }' | xargs -0 svn rm
</code></pre>
http://stackoverflow.com/questions/63104/smarter-vim-recovery5Smarter Vim recovery?Bruno De Fraine2008-09-15T13:57:47Z2009-04-24T03:03:14Z
<p>When a previous Vim session crashed, you are greeted with the "Swap file ... already exists!" for each and every file that was open in the previous session.</p>
<p>Can you make this Vim recovery prompt smarter? (Without switching off recovery!) Specifically, I'm thinking of:</p>
<ul>
<li>If the swapped version does not contain unsaved changes and the editing process is no longer running, can you make Vim automatically delete the swap file?</li>
<li>Can you automate the suggested process of saving the recovered file under a new name, merging it with file on disk and then deleting the old swap file, so that minimal interaction is required? Especially when the swap version and the disk version are the same, everything should be automatic.</li>
</ul>
<p>I discovered the <code>SwapExists</code> autocommand but I don't know if it can help with these tasks.</p>
http://stackoverflow.com/questions/610911/what-configuration-file-sets-display-in-leopard/627344#6273442Answer by Bruno De Fraine for What configuration file sets $DISPLAY in Leopard?Bruno De Fraine2009-03-09T17:56:42Z2009-03-09T17:56:42Z<p>I think your <code>DISPLAY</code> variable looks all right. I don't think it is being set by a configuration file.</p>
<p>Normally you have a launchd configuration file such as <code>/System/Library/LaunchAgents/org.x.startx.plist</code>. This contains a section:</p>
<pre><code> <key>Sockets</key>
<dict>
<key>:0</key>
<dict>
<key>SecureSocketWithKey</key>
<string>DISPLAY</string>
</dict>
</dict>
</code></pre>
<p>I believe this causes launchd to open a socket and set the <code>DISPLAY</code> variable to its path. When a program contacts this socket, <code>startx</code> is invoked by launchd.</p>
http://stackoverflow.com/questions/622502/math-operator-in-specifying-figure-width-in-latex/627236#6272360Answer by Bruno De Fraine for Math operator in specifying figure width in LaTeXBruno De Fraine2009-03-09T17:32:50Z2009-03-09T17:32:50Z<p><code>\textwidth</code> is the horizontal width of the page body and not really appropriate for your purposes.</p>
<p><code>\linewidth</code> is the width of the current line; it will be updated appropriate to columns, indentation, etc.</p>
<p>The following paragraph produces a picture that should precisely fit the entire line width (i.e. no overful warning):</p>
<pre><code>\noindent\includegraphics[width=\linewidth]{myimage}
</code></pre>
<p>If you prefer small margins on the left and right, you can use:</p>
<pre><code>\begin{center}
\includegraphics[width=.9\linewidth]{myimage}
\end{center}
</code></pre>
<p>Or, if you want to specify the margins in an absolute size:</p>
<pre><code>\usepackage{calc}
...
\begin{center}
\includegraphics[width=\linewidth-20pt]{myimage}
\end{center}
</code></pre>
http://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request9Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-05T12:35:06Z2009-02-17T16:47:50Z
<p>I created a program that iterates over a bunch of files and invokes for some of them:</p>
<pre><code>scp <file> user@host:<remotefile>
</code></pre>
<p>However, in my case, there may be thousands of small files that need to transferred, and scp is opening a new ssh connection for each of them, which has quite some overhead.</p>
<p>I was wondering if there is no solution where I keep one process running that maintains the connection and I can send it "requests" to copy over single files.</p>
<p>Ideally, I'm looking for a combination of some sender and receiver program, such that I can start a single process (1) at the beginning: </p>
<pre><code>ssh user@host receiverprogram
</code></pre>
<p>And for each file, I invoke a command (2):</p>
<pre><code>senderprogram <file> <remotefile>
</code></pre>
<p>and pipe the output of (2) to the input of (1), and this would cause the file to be transferred. In the end, I can just send process (1) some signal to terminate.</p>
<p>Preferably the sender and receiver programs are open source C programs for Unix. They may communicate using a socket instead of a pipe, or any other creative solution.</p>
<p>However, it is an <strong>important constraint</strong> that each file gets transferred at the moment I iterate over it: it is not acceptable to collect a list of files and then invoke one instance of <code>scp</code> to transfer all the files at once at the end. Also, I have only simple shell access to the receiving host.</p>
<p><strong>Update:</strong> I found a solution for the problem of the connection overhead using the multiplexing features of ssh, see my own answer below. Yet, I'm starting a bounty because I'm curious to find if there exists a sender/receiver program as I describe here. It seems there should exist something that can be used, e.g. xmodem/ymodem/zmodem?</p>
http://stackoverflow.com/questions/541848/what-are-the-necessary-plugins-in-vim-for-latex/545123#5451234Answer by Bruno De Fraine for What are the necessary plugins in VIM for Latex?Bruno De Fraine2009-02-13T08:04:10Z2009-02-13T08:04:10Z<p>Actually, I think the default support that Vim includes for <code>filetype=tex</code> is already quite good. So strictly, no plugins are necessary.</p>
<p>However, I do recommend a few settings that you can cherry-pick from and adapt to your own taste. See the help to see what each command/setting does.</p>
<pre><code>setlocal iskeyword+=:,-
setlocal makeprg=pdflatex\ -file-line-error\ -interaction=nonstopmode\ %
inoremap <buffer> { {}<ESC>i
inoremap <buffer> [ []<ESC>i
iab <buffer> ,b \begin{
iab <buffer> ,e \end{
" More abbreviations...
</code></pre>
<p>You can put these in <code>~/.vim/ftplugin/tex.vim</code> to load them for every <code>tex</code> file. The following are some global settings that I keep in <code>~/.vimrc</code>:</p>
<pre><code>let g:tex_flavor = "latex"
set suffixes+=.log,.aux,.bbl,.blg,.idx,.ilg,.ind,.out,.pdf
</code></pre>
http://stackoverflow.com/questions/520033/lookup-tables-in-ocaml/527909#5279093Answer by Bruno De Fraine for Lookup tables in OCamlBruno De Fraine2009-02-09T12:14:47Z2009-02-09T12:14:47Z<p>To store the table in a separate file (e.g. as an array), simply create a file <code>strings.ml</code> with the content:</p>
<pre><code>let tbl = [|
"String 0";
"String 1";
"String 2";
...7000 more...
|]
</code></pre>
<p>Compile this with:</p>
<pre><code>ocamlc -c strings.ml
</code></pre>
<p>As explained in the <a href="http://caml.inria.fr/pub/docs/manual-ocaml/manual004.html#toc17" rel="nofollow">manual</a>, this defines a module <code>Strings</code> that other Ocaml modules can reference. For example, you can start a toplevel:</p>
<pre><code>ocaml strings.cmo
</code></pre>
<p>And lookup a string by accessing a particular position in the array:</p>
<pre><code>Strings.tbl.(1234) ;;
</code></pre>
http://stackoverflow.com/questions/520033/lookup-tables-in-ocaml/520695#5206954Answer by Bruno De Fraine for Lookup tables in OCamlBruno De Fraine2009-02-06T15:23:12Z2009-02-06T15:23:12Z<p>If the strings are addressed using consecutive integers you could use an array.</p>
<p>Otherwise you can use a hash table (non-functional) or a Map (functional). To get started with the Map try:</p>
<pre><code>module Int =
struct
type t = int
let compare = compare
end ;;
module IntMap = Map.Make(Int) ;;
</code></pre>
<p>If the table is too large to store in memory, you could store it in an external database and use bindings to <a href="http://caml.inria.fr/pub/docs/manual-ocaml/libref/Dbm.html" rel="nofollow">dbm</a>, bdb, <a href="http://www.ocaml.info/home/ocaml_sources.html#toc13" rel="nofollow">sqlite</a>,...</p>
http://stackoverflow.com/questions/519309/how-do-i-read-utf-8-with-diamond-operator/519585#5195855Answer by Bruno De Fraine for How do I read UTF-8 with diamond operator (<>)?Bruno De Fraine2009-02-06T08:50:27Z2009-02-06T13:01:58Z<p>You can switch on UTF8 by default with the <code>-C</code> flag:</p>
<pre><code>perl -CSD -ne 'print join("\n",split //);' utf8.txt
</code></pre>
<p>The switch <code>-CSD</code> turns on UTF8 unconditionally; if you use simply <code>-C</code> it will turn on UTF8 only if the relevant environment variables (<code>LC_ALL</code>, <code>LC_TYPE</code> and <code>LANG</code>) indicate so. See <a href="http://man.cx/perlrun" rel="nofollow">perlrun</a> for details.</p>
<p>This is not recommended if you don't invoke perl directly (in particular, it might not work reliably if you pass options to perl from the shebang line). See the other answers in that case.</p>
http://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request/519412#51941219Answer by Bruno De Fraine for Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-06T07:20:46Z2009-02-06T07:20:46Z<p>I found a solution from another angle. Since <a href="http://marc.info/?l=openbsd-announce&m=109284742930930&w=2" rel="nofollow">version 3.9</a>, OpenSSH supports <strong>session multiplexing</strong>: a single connection can carry multiple login or file transfer sessions. This avoids the set-up cost per connection.</p>
<p>For the case of the question, I can first open a connection with sets up a control master (<code>-M</code>) with a socket (<code>-S</code>) in a specific location. I don't need a session (<code>-N</code>).</p>
<pre><code>ssh user@host -M -S /tmp/%r@%h:%p -N
</code></pre>
<p>Next, I can invoke <code>scp</code> for each file and instruct it to use the same socket:</p>
<pre><code>scp -o 'ControlPath /tmp/%r@%h:%p' <file> user@host:<remotefile>
</code></pre>
<p>This command starts copying almost instantaneously!</p>
<p>You can also use the control socket for normal ssh connections, which will then open immediately:</p>
<pre><code>ssh user@host -S /tmp/%r@%h:%p
</code></pre>
<p>If the control socket is no longer available (e.g. because you killed the master), this falls back to a normal connection. More information is available in <a href="http://www.debian-administration.org/articles/290" rel="nofollow">this article</a>.</p>
http://stackoverflow.com/questions/496270/where-exactly-did-you-get-the-servletutils-class-in-staticservlet/511049#5110490Answer by Bruno De Fraine for Where exactly did you get the ServletUtils class in StaticServlet?Bruno De Fraine2009-02-04T11:57:24Z2009-02-04T11:57:24Z<p>This question is related to <a href="http://stackoverflow.com/questions/132052/servlet-for-serving-static-content/132932#132932">my answer to another question</a> and it is answered in an update there.</p>
http://stackoverflow.com/questions/132052/servlet-for-serving-static-content/132932#1329324Answer by Bruno De Fraine for Servlet for serving static contentBruno De Fraine2008-09-25T12:14:08Z2009-02-04T11:53:30Z<p>I ended up rolling my own <code>StaticServlet</code>. It supports <code>If-Modified-Since</code>, gzip encoding and it should be able to serve static files from war-files as well. It is not very difficult code, but it is not entirely trivial either.</p>
<p>The code is available: <a href="http://bruno.defraine.net/StaticServlet.java" rel="nofollow">StaticServlet.java</a>. Feel free to comment.</p>
<p><strong>Update:</strong> Khurram asks about the <code>ServletUtils</code> class which is referenced in <code>StaticServlet</code>. It is simply a class with auxiliary methods that I used for my project. The only method you need is <code>coalesce</code> (which is identical to the SQL function <a href="http://en.wikipedia.org/wiki/Null_(SQL)#COALESCE" rel="nofollow"><code>COALESCE</code></a>). This is the code:</p>
<pre><code>public static <T> T coalesce(T...ts) {
for(T t: ts)
if(t != null)
return t;
return null;
}
</code></pre>
http://stackoverflow.com/questions/235345/looking-for-pattern-approach-suggestions-for-handling-long-running-operation-tied/235625#2356250Answer by Bruno De Fraine for Looking for pattern/approach/suggestions for handling long-running operation tied to web appBruno De Fraine2008-10-24T23:50:34Z2008-10-24T23:50:34Z<p>Java servlets can do <a href="http://www.unix.com.ua/orelly/java-ent/servlet/ch03_05.htm" rel="nofollow">background processing</a>. You could do something similar to this technology in a web technology with threading support. I don't know about PHP though.</p>
http://stackoverflow.com/questions/205666/what-is-the-best-way-to-perform-timestamp-comparison-in-bash/205710#2057109Answer by Bruno De Fraine for What is the Best Way to Perform Timestamp Comparison in BashBruno De Fraine2008-10-15T17:47:03Z2008-10-15T17:47:03Z<p>By far the easiest is to store time stamps as modification times of dummy files. GNU <code>touch</code> and <code>date</code> commands can set/get these times and perform date calculations. Bash has tests to check whether a file is newer than (<code>-nt</code>) or older than (<code>-ot</code>) another.</p>
<p>For example, to only send a notification if the last notification was more than an hour ago:</p>
<pre><code>touch -d '-1 hour' limit
if [ limit -nt last_notification ]; then
#send notification...
touch last_notification
fi
</code></pre>
http://stackoverflow.com/questions/203677/cant-compile-class-calling-a-method-in-an-interface-with-a-generic-list-argument/204456#2044561Answer by Bruno De Fraine for Can't compile class calling a method in an interface with a generic list argumentBruno De Fraine2008-10-15T12:02:36Z2008-10-15T12:02:36Z<p>This has got to do with the subtyping rules for parametrized types. I'll explain it in three steps:</p>
<h2>Non-nested case</h2>
<p>When you have the following subtype relation (where <code><:</code> is the symbol for "is a subtype of"):</p>
<pre><code>_ModelDto <: BaseObject
</code></pre>
<p>The following relation does <strong>not</strong> hold:</p>
<pre><code>List<_ModelDto> <: List<BaseObject>
</code></pre>
<p>But the following relations do:</p>
<pre><code>List<_ModelDto> <: List<? extends _ModelDto> <: List<? extends BaseObject>
</code></pre>
<p>This is the reason why Java has wildcards: to enable these kind of subtype relations. All of this is explained in the <a href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" rel="nofollow">Generics tutorial</a>. If you understand this, we can continue with the nested case...</p>
<h2>Nested case</h2>
<p>Let's do exactly the same, but with one more level of nesting. Starting from the subtype relation:</p>
<pre><code>List<_ModelDto> <: List<? extends BaseObject>
</code></pre>
<p>The following relation does <strong>not</strong> hold, for exactly the same reasons as above:</p>
<pre><code>MyAsync<List<_ModelDto>> <: MyAsync<List<? extends BaseObject>>
</code></pre>
<p>This is <em>precisely</em> the conversion you are trying to do when calling <code>service.getList(callBack)</code>, and since the subtype relation does not hold, the conversion fails.</p>
<p>However, as above, you <strong>do</strong> have the following relations:</p>
<pre><code>MyAsync<List<_ModelDto>>
<: MyAsync<? extends List<_ModelDto>>
<: MyAsync<? extends List<? extends BaseObject>>
</code></pre>
<h2>Solution</h2>
<p>So you should write the signature of <code>getList</code> as follows to make the call work:</p>
<pre><code>public void getList(MyAsync<? extends List<? extends BaseObject>> callback);
</code></pre>
<p>The difference will be that the body of <code>getList</code> will be constrained with how it can use the <code>callback</code>. If <code>MyAsync</code> contains the following members:</p>
<pre><code>public interface MyAsync<T> {
T get();
void set(T t);
}
</code></pre>
<p>Then, the body of <code>getList</code> will be able to <code>get</code> a list from the callback. However, it cannot <code>set</code> the list (except setting it to <code>null</code>), because it does not know exactly what kind of list is represented by the <code>?</code>.</p>
<p>In contrast, with your original signature, <code>set</code> is available, and that is why the compiler cannot allow your argument.</p>
http://stackoverflow.com/questions/200229/eclipse-generated-method-parameters-final/200308#2003081Answer by Bruno De Fraine for Eclipse - generated method parameters finalBruno De Fraine2008-10-14T07:55:58Z2008-10-14T07:55:58Z<p>It is indeed in the "save actions". Check this blog post for a screenshot: <a href="http://enfranchisedmind.com/blog/2007/12/05/eclipse-and-the-automagical-final/" rel="nofollow">Eclipse and the automagical final</a></p>
http://stackoverflow.com/questions/199918/explaining-pattern-matching-vs-switch/200277#2002778Answer by Bruno De Fraine for Explaining pattern matching vs switch.Bruno De Fraine2008-10-14T07:39:46Z2008-10-14T07:49:42Z<p>Patterns give you a small language to describe the structure of the values you want to match. The structure can be arbitrarily deep and you can bind variables to parts of the structured value.</p>
<p>This allows you to write things extremely succinctly. You can illustrate this with a small example, such as a derivative function for a simple type of mathematical expressions:</p>
<pre><code>type expr =
| Int of int
| Var of string
| Add of expr * expr
| Mul of expr * expr;;
let rec d(f, x) =
match f with
| Var y when x=y -> Int 1
| Int _ | Var _ -> Int 0
| Add(f, g) -> Add(d(f, x), d(g, x))
| Mul(f, g) -> Add(Mul(f, d(g, x)), Mul(g, d(f, x)));;
</code></pre>
<p>Additionally, because pattern matching is a static construct for static types, the compiler can (i) verify that you covered all cases (ii) detect redundant branches that can never match any value (iii) provide a very efficient implementation (with jumps etc.).</p>
http://stackoverflow.com/questions/200205/good-way-to-do-a-switch-in-a-makefile/200222#2002224Answer by Bruno De Fraine for Good way to do a "switch" in a MakefileBruno De Fraine2008-10-14T07:09:42Z2008-10-14T07:09:42Z<p>Configuring such parameters would be the task of a <code>configure</code> script.</p>
<p>That being said, you can look into the syntax for <a href="http://www.gnu.org/software/make/manual/make.html#Conditionals" rel="nofollow">conditionals</a> and <a href="http://www.gnu.org/software/make/manual/make.html#Conditional-Functions" rel="nofollow">conditional functions</a>. For example, you could try the following:</p>
<pre><code>ifeq ($(PLATFORM)_$(BUILD_TYPE),Linux_x86_release)
CFLAGS = -O3
endif
ifeq ($(PLATFORM)_$(BUILD_TYPE),Linux_x86_debug)
CFLAGS = -O0 -g
endif
</code></pre>
http://stackoverflow.com/questions/199331/is-it-worth-learning-bash-when-i-know-perl/200208#2002084Answer by Bruno De Fraine for Is it worth learning BASH when I know Perl?Bruno De Fraine2008-10-14T06:56:57Z2008-10-14T06:56:57Z<p>Things like <code>bash</code> and <code>awk</code> still represent the Unix spirit of <a href="http://www.faqs.org/docs/artu/minilanguageschapter.html" rel="nofollow">little languages</a>:</p>
<ul>
<li><code>bash</code> is a language just for executing and connecting programs and it is extremely suitable for that</li>
<li><code>awk</code> is a language just for processing records of data and it is extremely suitable for that</li>
</ul>
<p>While <code>perl</code> borrows heavily from these two, it is designed as a <em>general-purpose</em> language. Sure, you can do these tasks in <code>perl</code>, and you might prefer that because you are familiar with its syntax.</p>
<p>But once you become familiar with <code>bash</code> - which is not so difficult, the language is much smaller than <code>perl</code> - it will become easier and certainly more economical to use the more specific tool.</p>
<p>I learned <code>perl</code> for web development and I used to use it for almost everything. Now, I find that most jobs are either simple enough for <code>bash</code> and <code>awk</code>, or difficult enough to justify a compiled language.</p>
http://stackoverflow.com/questions/1694445/ocaml-syntax-error/1695120#1695120Comment by Bruno De Fraine on Ocaml Syntax ErrorBruno De Fraine2009-11-09T12:47:59Z2009-11-09T12:47:59Z<code>SymbolSet</code> by itself is not a valid type expression; the message from the Ocaml compiler is incorrect, this is because it uses the "error" mechanism of ocamlyacc (and yacc) to guess what the error may be.http://stackoverflow.com/questions/132052/servlet-for-serving-static-content/1052224#1052224Comment by Bruno De Fraine on Servlet for serving static contentBruno De Fraine2009-06-29T06:51:53Z2009-06-29T06:51:53ZCan you download the source code for that somewhere?http://stackoverflow.com/questions/762754/how-do-pstricks-and-tikz-compare-for-ease-of-learning-and-for-quality-of-api-desi/810438#810438Comment by Bruno De Fraine on How do PStricks and TikZ compare for ease of learning and for quality of API design?Bruno De Fraine2009-05-31T11:43:24Z2009-05-31T11:43:24ZIt's been too long since I used PSTricks, so I can't answer the question, but I like to add that TikZ has a very nice 500+ pages manual full of examples. Once you are familiar with the basics of TikZ, you can quickly use almost any feature by looking in the manual for 10 minutes. I've written some TikZ extensions such as new node shapes, and this is not so hard if you understand the TeX calculation primitives and look at the TikZ source code.http://stackoverflow.com/questions/862950/subversion-prevent-local-modifications-to-one-file-from-being-committed/863055#863055Comment by Bruno De Fraine on Subversion: prevent local modifications to one file from being committed?Bruno De Fraine2009-05-14T13:09:26Z2009-05-14T13:09:26Z@akent: per-working-copy is exactly what I wanthttp://stackoverflow.com/questions/862950/subversion-prevent-local-modifications-to-one-file-from-being-committed/863055#863055Comment by Bruno De Fraine on Subversion: prevent local modifications to one file from being committed?Bruno De Fraine2009-05-14T13:08:42Z2009-05-14T13:08:42ZChangelists seem very cool, but what you say isn't quite right: when I create a changelist "mylocal", then "svn commit" will still consider all modified files. As far as I see, there is no mention of the "default" changelist in the documentation.http://stackoverflow.com/questions/862950/subversion-prevent-local-modifications-to-one-file-from-being-committed/863008#863008Comment by Bruno De Fraine on Subversion: prevent local modifications to one file from being committed?Bruno De Fraine2009-05-14T12:42:48Z2009-05-14T12:42:48ZApparently, this is also the answer from the FAQ. However, this is a hassle and it overlooks one very important point: whenever the "forbidden" file is updated in the repository, I want svn up to merge the remote changes with my local modifications (and signal a conflict if necessary). With an unversioned file, you have to do this manually, which means that your build.conf will probably grow out of date compared to build.conf.example.http://stackoverflow.com/questions/862950/subversion-prevent-local-modifications-to-one-file-from-being-committedComment by Bruno De Fraine on Subversion: prevent local modifications to one file from being committed?Bruno De Fraine2009-05-14T12:16:04Z2009-05-14T12:16:04Zwhat IDE? :-) I usually use svn from the command line.http://stackoverflow.com/questions/825559/is-java-lang-math-pi-equal-to-gccs-mpi/825631#825631Comment by Bruno De Fraine on Is java.lang.Math.PI equal to GCC's M_PI?Bruno De Fraine2009-05-06T06:14:07Z2009-05-06T06:14:07ZIn C, you can do double pi = M_PI; printf("%lld\n", pi); to obtain the same 64bit integer: 4614256656552045848http://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request/551844#551844Comment by Bruno De Fraine on Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-16T08:51:43Z2009-02-16T08:51:43ZHi Joshua, cpio looks like a very useful building block! However, if I try for example <code>cpio -H newc -o | { cd out-dir; cpio -H newc -im; }</code> and then enter a few names on stdin, I notice the previous file is not copied until the next one is entered, since cpio waits to read an entire block?http://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request/539987#539987Comment by Bruno De Fraine on Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-14T09:59:39Z2009-02-14T09:59:39ZThe timeout doesn't help. I think <code>read</code> immediately returns an empty string when the file descriptor from which it reads is closed. Try this: ksh -xc 'while true; do read l; print -R $l; done' < /dev/nullhttp://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request/543112#543112Comment by Bruno De Fraine on Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-14T09:49:43Z2009-02-14T09:49:43ZAll right, you mean the compression. Note that ssh connections can be compressed as well with the <code>-C</code> flag or the <code>Compression</code> option.http://stackoverflow.com/questions/520033/lookup-tables-in-ocaml/527909#527909Comment by Bruno De Fraine on Lookup tables in OCamlBruno De Fraine2009-02-13T17:41:14Z2009-02-13T17:41:14ZDo <code>open Bar;;</code>: module names start with a capital. <code>ocamlc</code> without <code>-c</code> also does linking: you provide all files that need to be linked in: <code>ocamlc -o foo bar.cmo foo.ml</code>http://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request/543112#543112Comment by Bruno De Fraine on Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-13T07:28:36Z2009-02-13T07:28:36ZI'm all for keeping it simple, but as explained, I can't transfer the files all at once. Also, this seems a less optimal version of <code>scp -rp files user@other.site.com</code>http://stackoverflow.com/questions/515726/sender-and-receiver-to-transfer-files-over-ssh-on-request/539987#539987Comment by Bruno De Fraine on Sender and receiver to transfer files over ssh on request?Bruno De Fraine2009-02-12T11:18:55Z2009-02-12T11:18:55ZThanks for the ideas! I tried the simplest version, which after some fixes (print -R, length should be size) can transfer one file, but the receiver goes in an endless loop after that: as far as I can tell, <code>read</code> seems to return immediately although there is nothing to read yet...http://stackoverflow.com/questions/520033/lookup-tables-in-ocaml/520695#520695Comment by Bruno De Fraine on Lookup tables in OCamlBruno De Fraine2009-02-09T12:15:49Z2009-02-09T12:15:49ZPlease see my other answer.