User Matteo Caprari - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:33:49Z http://stackoverflow.com/feeds/user/9645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1179655/erlang-how-can-i-reference-an-anonymous-function-from-within-the-body 5 Erlang: how can I reference an anonymous function from within the body? Matteo Caprari 2009-07-24T19:25:20Z 2009-10-08T13:52:59Z <p>In <a href="http://en.wikipedia.org/wiki/Erlang%5F%28programming%5Flanguage%29" rel="nofollow">Erlang</a> is there a way reference the currently executing function)?</p> <p>That would be useful to spawn an infinite loop:</p> <pre><code>spawn(fun() -&gt; do_something, this_fun() end) </code></pre> <p>In JavaScript <code>arguments.callee</code> does just that, see the specification on <a href="https://developer.mozilla.org/En/Core%5FJavaScript%5F1.5%5FReference/Functions%5Fand%5Ffunction%5Fscope/arguments/callee" rel="nofollow">MDC</a>.</p> <p>Edit to answer a 'why would you do that': mostly curiosity; it is also useful to define a timer when prorotyping:</p> <pre><code>Self = self(), spawn(fun() -&gt; Self ! wake_up, receive after 1000 -&gt; nil end, this_fun() end), %% ... </code></pre> http://stackoverflow.com/questions/1193751/eventually-consistent-mnesia-database-with-erlang-best-practices-anyone 2 Eventually consistent mnesia database with erlang. Best practices anyone? Matteo Caprari 2009-07-28T12:22:55Z 2009-08-06T02:33:16Z <p>Hi.</p> <p>I'm writing a bittorrent tracker in erlang. Given the nature of the service, I won't need absolute consistency (ie. a client can be perfectly happy with a slightly outdated list of peers or torrent status).</p> <p>My strategy so far has been to create mnesia tables in RAM with disc_copies enabled, so to have mnesia automatically dump the memory to disk when the log size exceeds a certain size.</p> <p>If the server crashes, some information will be lost. Not a big deal.</p> <p>A different approach would be to instance two tables (one ram only and one disk only) and have a process copy from ram to disk every minute or so. This is more naive, but would allow to dump just a subset of what's in memory, reducing the overall disk overhead and possibly avoid the usage of a log altogether (I'm actually not sure about this last statement).</p> <p>I'm sure there are many other ways to do this. What's yours?</p> <p>-teo</p> http://stackoverflow.com/questions/1202539/how-do-i-do-dependency-injection-and-mocks-in-erlang 8 How do I do dependency injection and mocks in erlang? Matteo Caprari 2009-07-29T19:36:12Z 2009-08-06T00:22:59Z <p>Hi.</p> <p>When writing code in Java, it is very helpful to embrace <a href="http://en.wikipedia.org/wiki/Object%5Fcomposition" rel="nofollow">composition</a> and <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">dependency injection</a> to make it possible and easy to do pure unit testing by mocking collaborating objects.</p> <p>I find that doing the same in Erlang is less straightforward and makes for dirtier code.</p> <p>That's likely to be my fault, as I'm quite new to Erlang and quite addicted to JUnit, EasyMock and java interfaces...</p> <p>Let's say I have this stupid function:</p> <pre><code>%% module mymod handle_announce(Announce) -&gt; AnnounceDetails = details_db:fetch_details(Announce), AnnounceStats = stats_db:fetch_stats(Announce), {AnnounceDetails, AnnounceStats}. </code></pre> <p>When unit testing <code>mymod</code>, I only want to prove that <code>details_db</code> and <code>stats_db</code> are invoked with the right parameters, and that the return values are the used correctly. The ability od <code>details_db</code> and <code>stats_db</code> to generate correct value is tested in other places.</p> <p>To solve the problem I could refactor my code this way:</p> <pre><code>%% module mymod handle_announce(Announce, [DetailsDb, StatsDb]) -&gt; AnnounceDetails = DetailsDb:fetch_details(Announce), AnnounceStats = StatsDb:fetch_stats(Announce), {AnnounceDetails, AnnounceStats}. </code></pre> <p>And test it this way (basically stubbing the calls directly into the test module):</p> <pre><code>%% module mymod_test handle_announce_test() -&gt; R = mymod:handle_announce({announce, a_value}, [?MODULE, ?MODULE, ?MODULE]), ?assertEqual({details,stats}, R). fetch_details({announce, a_value}) -&gt; details. fetch_stats({announce, a_value}) -&gt; stats. </code></pre> <p>It works, but the application code becomes dirty and I always have to carry around that ugly list of modules.</p> <p>I've tried a couple of mock libraries (<a href="http://sheyll.blogspot.com/2009/02/erlang-mock-erlymock.html" rel="nofollow">erlymock</a> and (<a href="http://charpi.net/blog/2008/10/09/enhanced-erlang-mock-implementation/" rel="nofollow">this other one</a>) but I wasn't satisfied.</p> <p>How do you unit test your erlang code? </p> <p>Thanks!</p> http://stackoverflow.com/questions/1179405/in-erlang-otp-how-do-i-start-appmon-to-monitor-an-existing-node 2 In erlang/OTP how do I start appmon to monitor an existing node? Matteo Caprari 2009-07-24T18:38:29Z 2009-07-24T19:49:30Z <p>Hi.</p> <p>I have a running erlang application, launched with this command line</p> <pre><code>erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin/mochiweb -s peasy start </code></pre> <p>If I start a new node and run appmon:start(), the 'peasy' node won't show up, even if using the same cookie. The same happens with webtool:start()</p> <p>Anyone?</p> http://stackoverflow.com/questions/1179405/in-erlang-otp-how-do-i-start-appmon-to-monitor-an-existing-node/1179819#1179819 3 Answer by Matteo Caprari for In erlang/OTP how do I start appmon to monitor an existing node? Matteo Caprari 2009-07-24T19:49:30Z 2009-07-24T19:49:30Z <p>Found.</p> <p>As always with erlang, to have two nodes speak to each other, you need to ping:</p> <pre><code>1&gt; net_adm:ping(other_node_you_want_to_monitor). pong 2&gt; appmon:start(). {ok,&lt;0.48.0&gt;} </code></pre> <p>And off you go :)</p> http://stackoverflow.com/questions/1137447/whats-a-good-ide-for-erlang-programming/1179600#1179600 1 Answer by Matteo Caprari for What's a good IDE for Erlang programming? Matteo Caprari 2009-07-24T19:13:16Z 2009-07-24T19:13:16Z <p>I use Erlide on eclipse (<a href="http://erlide.sourceforge.net/" rel="nofollow">http://erlide.sourceforge.net/</a>).</p> <p>Pros: Syntax highlight, autocompletion and suggestion all work well. During suggest it will display some documentationif available: very useful when exploring a module.</p> <p>Error and warning annotiations are quick and helpful.</p> <p>All things considered the user experience is good, especially if you are used to eclipse.</p> <p>Cons: Erlide can also run your modules, but I find the shell is too clunky to be usable. I always keep a "real" erlang shell open and compile/test my code from there.</p> <p>There is also a Textmate bundle (google), but I have not tried that yet.</p> <p>Bye :)</p> http://stackoverflow.com/questions/1161831/erlang-how-can-i-match-tuple-contents-with-qlc-and-mnesia 2 erlang - how can I match tuple contents with qlc and mnesia ? Matteo Caprari 2009-07-21T21:23:04Z 2009-07-23T14:42:15Z <p>Hi.</p> <p>I have a mnesia table for this record.</p> <pre><code>-record(peer, { peer_key, %% key is the tuple {FileId, PeerId} last_seen, last_event, uploaded = 0, downloaded = 0, left = 0, ip_port, key }). </code></pre> <p>Peer_key is a tuple {FileId, ClientId}, now I need to extract the ip_port field from all peers that have a specific FileId. </p> <p>I came up with a workable solution, but I'm not sure if this is a good approach:</p> <pre><code>qlc:q([IpPort || #peer{peer_key={FileId,_}, ip_port=IpPort} &lt;- mnesia:table(peer), FileId=:=RequiredFileId]) </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/65820/unit-testing-c-code/65962#65962 6 Answer by Matteo Caprari for Unit Testing C Code Matteo Caprari 2008-09-15T19:27:50Z 2009-06-24T12:44:15Z <p><a href="http://www.jera.com/techinfo/jtns/jtn002.html" rel="nofollow">Minunit</a> is an incredibly simple unit testing framework. I'm using it to unit test c microcontroller code for avr.</p> http://stackoverflow.com/questions/877379/in-javascript-how-can-i-detect-if-a-browser-will-display-or-download-a-pdf 1 in javascript how can I detect if a browser will display or download a pdf? Matteo Caprari 2009-05-18T12:01:38Z 2009-05-18T14:21:55Z <p>Hi.</p> <p>Say i have</p> <ul> <li>a webpage with an iframe: </li> <li>an url pointing to a pdf document: <a href="http://www.example.com" rel="nofollow">http://www.example.com</a></li> <li>some javascript that will do iframe.src=pdfurl</li> <li><p>a button that will trigger such javascript</p> <ul> <li><p>if the browser is going to display the pdf inline, the button will say "view pdf" and when clicked will make the iframe visible</p></li> <li><p>otherwise it will say "download pdf"</p></li> </ul></li> </ul> <p>I found a way to detect wether the pdf has been loaded in the iframe: reading iframe.contentDocument.contentType after onload has fired, but </p> <ul> <li>this won't allow me to display the correct button</li> <li>onload does not fire if the file is being downloaded</li> </ul> <p>Thanks :)</p> http://stackoverflow.com/questions/1193751/eventually-consistent-mnesia-database-with-erlang-best-practices-anyone/1236699#1236699 Comment by Matteo Caprari on Eventually consistent mnesia database with erlang. Best practices anyone? Matteo Caprari 2009-08-06T08:33:06Z 2009-08-06T08:33:06Z Currently announce and torrent data are stored in memory-only mnesia tables (I still keep the disc copied disabled), which is of course extremely fast. Persisting to disk would anyway make the service more resilient to a system failure (even accounting for bittorrent implicit resilience) and to keep minimal torrent related information over time (numer of completed downloads). (<a href="http://mcaprari.github.com/peasy-torrent-tracker/" rel="nofollow">mcaprari.github.com/peasy-torrent-tracker</a>) http://stackoverflow.com/questions/1202539/how-do-i-do-dependency-injection-and-mocks-in-erlang/1202941#1202941 Comment by Matteo Caprari on How do I do dependency injection and mocks in erlang? Matteo Caprari 2009-07-29T21:42:48Z 2009-07-29T21:42:48Z Thanks Gordon, very well explained. I'm still trying to switch to the functional paradigm. Anyway, in this project I'm writing (a torrent tracker), all calls originate from the web layer and end up in the database, so most modules do have or depend from side-effects. I'll try the standard test framework. http://stackoverflow.com/questions/877379/in-javascript-how-can-i-detect-if-a-browser-will-display-or-download-a-pdf/877391#877391 Comment by Matteo Caprari on in javascript how can I detect if a browser will display or download a pdf? Matteo Caprari 2009-05-18T12:11:56Z 2009-05-18T12:11:56Z To the best of my knowledge, Content-Type and Content-Disposition are sent from the server to the client. The server won't have any knowlwdge about browser capabilities. The server can exploit those two headers to force the browser to perform a download instead of a display.