User Sébastien RoccaSerra - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T06:35:17Zhttp://stackoverflow.com/feeds/user/2797http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1484581/how-to-best-install-rhino-on-osx-10-6-snow-leopard/1701929#17019291Answer by Sébastien RoccaSerra for How to best install Rhino on OSX 10.6 Snow LeopardSébastien RoccaSerra2009-11-09T15:52:43Z2009-11-09T15:52:43Z<p>As jrunscript has been mentioned in other answers & comments, it's a convenient tool, but it doesn't support full Javascript 1.5.</p>
<pre><code>$ jrunscript -q
Language ECMAScript 1.6 implemention "Mozilla Rhino" 1.6 release 2
</code></pre>
<p>Javascript 1.5 is fully supported as of Rhino 1.6R6, and Rhino 1.7 supports JavaScript 1.7.</p>
<p>Rhino 1.6Rx is supposed to support E4X, but curiously this simple exemple fails in jrunscript:</p>
<pre><code>$ jrunscript -e 'toto = <tata/>'
script error: sun.org.mozilla.javascript.internal.EvaluatorException: erreur de
syntaxe (<string>#1) in <string> at line number 1
</code></pre>
<p>And I had troubles making jrunscript work with John Resig's <a href="http://ejohn.org/blog/bringing-the-browser-to-the-server/" rel="nofollow">env.js</a> (that allows to load jQuery, Prototype, and other libs in Rhino scripts), because 1.6R2 doesn't implements get & set properties (they were added in 1.6R6 IIRC).</p>
<p>More info on Rhino versions here:</p>
<ul>
<li><a href="https://developer.mozilla.org/en/Rhino/Downloads_archive" rel="nofollow">https://developer.mozilla.org/en/Rhino/Downloads_archive</a></li>
</ul>
<p>So I think Rhino 1.7R2 is better for you, as you already have it. Just use an alias or something to make the command line shorter.</p>
http://stackoverflow.com/questions/1649943/readable-way-of-knowing-if-there-is-at-least-one-difference-between-two-maplong0Readable way of knowing if there is at least one difference between two Map<Long, Integer> in Java ?Sébastien RoccaSerra2009-10-30T13:54:02Z2009-10-30T14:26:59Z
<p>I have two maps of type Map<Long, Integer>, one named "old" representing the old state of an object, and the other named "new" representing the new state of the same object.</p>
<p>Is there a simple & readable way of knowing if the old state and the new state are different (ie. if the state has changed)?</p>
<p>Ideally, I'd like some "java.utils" or "Apache Commons" library function like:</p>
<pre><code>hasChanged = !MapUtils.diff(old, new).isEmpty();
</code></pre>
<p>Note: I looked for, but didn't find one.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/250151/lua-as-a-general-purpose-scripting-language/253755#2537557Answer by Sébastien RoccaSerra for Lua as a general-purpose scripting language?Sébastien RoccaSerra2008-10-31T14:40:55Z2009-10-08T13:12:00Z<p>Lua has fewer libraries than Python. But be sure to have a look at <a href="http://luaforge.net/" rel="nofollow">LuaForge</a>. It has a lot of interesting libs, like <a href="http://luaforge.net/projects/luacurl/" rel="nofollow">LuaCURL</a>, <a href="http://wxlua.sourceforge.net/" rel="nofollow">wxLua</a> or <a href="http://luaforge.net/projects/getopt/" rel="nofollow">getopt</a>.</p>
<p>Then, visit <a href="http://luarocks.org/" rel="nofollow">LuaRocks</a>, the package management system for Lua. With it, you can search and install most mature Lua modules with dependencies. It feels like <a href="http://en.wikipedia.org/wiki/RubyGems" rel="nofollow">RubyGems</a> or <a href="http://en.wikipedia.org/wiki/Aptitude%5F%28software%29" rel="nofollow">aptitude</a>.</p>
<p>The site <a href="http://lua-users.org/" rel="nofollow">lua-users.org</a> has a lot of interesting resources too, like tutorials or the <a href="http://lua-users.org/wiki" rel="nofollow">Lua Wiki</a>.</p>
<p>What I like about Lua is not its speed, it's its minimal core language, flexibility and extensibility.</p>
<p>That said, I would probably use Python for the tasks you mentionned because of the larger community doing such things in Python.</p>
http://stackoverflow.com/questions/31982/looking-for-a-good-book-to-learn-sql6Looking for a good book to learn SQLSébastien RoccaSerra2008-08-28T10:25:00Z2009-09-22T01:16:16Z
<p>I'm looking for a good and short book to learn SQL in general, and good modern SQL practices.</p>
<p>Any suggestions? Thanks!</p>
http://stackoverflow.com/questions/34155/looking-for-examples-of-real-uses-of-continuations12Looking for examples of "real" uses of continuationsSébastien RoccaSerra2008-08-29T08:07:58Z2009-09-01T16:35:35Z
<p>I'm trying to grasp the concept of continuations and I found several small teaching examples like this one from the <a href="http://en.wikipedia.org/wiki/Continuation" rel="nofollow">Wikipedia article</a>:</p>
<pre><code>(define the-continuation #f)
(define (test)
(let ((i 0))
; call/cc calls its first function argument, passing
; a continuation variable representing this point in
; the program as the argument to that function.
;
; In this case, the function argument assigns that
; continuation to the variable the-continuation.
;
(call/cc (lambda (k) (set! the-continuation k)))
;
; The next time the-continuation is called, we start here.
(set! i (+ i 1))
i))
</code></pre>
<p>I understand what this little function does, but I can't see any obvious application of it. While I don't expect to use continuations all over my code anytime soon, I wish I knew a few cases where they can be appropriate. </p>
<p>So I'm looking for more explicitely usefull code samples of what continuations can offer me as a programmer.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1245463/how-do-you-become-a-programmer/1245607#12456070Answer by Sébastien RoccaSerra for How do you become a programmer?Sébastien RoccaSerra2009-08-07T15:59:46Z2009-08-07T16:08:06Z<p>Read the article <a href="http://norvig.com/21-days.html" rel="nofollow">Teach Yourself Programming in Ten Years</a>, by Peter Norvig!</p>
<p>A small quote:</p>
<ul>
<li><p>Get interested in programming, and do some because it is fun. Make sure that it keeps being enough fun so that you will be willing to put in ten years.</p></li>
<li><p>Talk to other programmers; read other programs. This is more important than any book or training course.</p></li>
<li><p>Program. The best kind of learning is learning by doing.</p></li>
</ul>
http://stackoverflow.com/questions/606533/how-do-i-get-my-brain-moving-in-lisp-mode/606911#6069113Answer by Sébastien RoccaSerra for How do I get my brain moving in "lisp mode?"Sébastien RoccaSerra2009-03-03T15:48:20Z2009-03-29T00:03:40Z<p>Some thoughts on Lisps, not specific to Clojure (I'm not a Lisp expert, so I hope they're mostly correct and useful):</p>
<h3>Coding in AST</h3>
<p>I know little about compiler or interpreter theory, but every time I code in Lisp, it amazes me that it feels like directly building an AST.</p>
<p>That's part of what "code = data" means, coding in Lisp is a lot like filling data structures (nested lists) with AST nodes. Amazing, and it's easy to read too (with the right text editor).</p>
<h3>A Programmable Programming Language</h3>
<p>So code chunks are just nested lists, and list operations are part of the language. So you can very easily write Lisp code that generates Lisp code (see Lisp macros). This makes Lisp a programmable (in itself!) programming language.</p>
<p>This makes building a <a href="http://en.wikipedia.org/wiki/Domain-specific%5Fprogramming%5Flanguage" rel="nofollow">DSL</a> or an interpreter in Lisp is very easy (see also <a href="http://en.wikipedia.org/wiki/Metacircular%5Fevaluation" rel="nofollow">meta-circular evaluation</a>).</p>
<h3>Never reboot anything</h3>
<p>And in most Lisp systems, code (including documentation) can be introspected and hot swapped at run time.</p>
<h3>Advanced OOP</h3>
<p>Then, most Lisp Systems have some sort of Object System derived from CLOS, which is an advanced (compared to many OOP implementations) and configurable Object System (see <a href="http://en.wikipedia.org/wiki/The%5FArt%5Fof%5Fthe%5FMetaobject%5FProtocol" rel="nofollow">The Art of the Metaobject Protocol</a>).</p>
<p>All these features where invented long ago, but I'm not sure they are available in many other programming languages (although most are catching up, e.g. with closures), so you have to "rediscover" and get used to these by practicing (see the books in other answers).</p>
http://stackoverflow.com/questions/685512/how-would-you-enforce-dry-dont-repeat-yourself-in-a-sql-script3How would you enforce DRY (Don't Repeat Yourself) in a SQL script?Sébastien RoccaSerra2009-03-26T12:16:04Z2009-03-26T20:21:21Z
<p>Hi,</p>
<p>I'm changing a database (oracle) with a script containing a few updates looking like:</p>
<pre><code>UPDATE customer
SET status = REPLACE(status, 'X_Y', 'xy')
WHERE status LIKE '%X_Y%'
AND category_id IN
(SELECT id
FROM category
WHERE code = 'ABC');
UPDATE customer
SET status = REPLACE(status, 'X_Z', 'xz')
WHERE status LIKE '%X_Z%'
AND category_id IN
(SELECT id
FROM category
WHERE code = 'ABC');
-- More updates looking the same...
</code></pre>
<p>In this case, how would you enforce DRY (Don't Repeat Yourself)?</p>
<p>I'd particularly interested in solving the two following recurring problems:</p>
<ul>
<li><p>Define a function, available from this script only, to extract the subquery <code>SELECT id FROM category WHERE code = 'ABC'</code></p></li>
<li><p>Create a set of replace rules (that could look like <code>{"X_Y": "yx", "X_Z": "xz", ...}</code> in a popular programming language) and then iterate a single update query on it.</p></li>
</ul>
<p>Thanks!</p>
http://stackoverflow.com/questions/643542/doesnt-javascript-support-closures-with-local-variables/643752#6437522Answer by Sébastien RoccaSerra for Doesn't JavaScript support closures with local variables?Sébastien RoccaSerra2009-03-13T17:24:33Z2009-03-13T17:24:33Z<p>John Resig's <a href="http://ejohn.org/apps/learn/" rel="nofollow">Learning Advanced JavaScript</a> explains this and more. It's an interactive presentation that explains a lot about JavaScript, and the examples are fun to read and execute.</p>
<p>It has a chapter about closures, and <a href="http://ejohn.org/apps/learn/#62" rel="nofollow">this example</a> looks a lot like yours.</p>
<p>Here's the broken example:</p>
<pre><code>var count = 0;
for ( var i = 0; i < 4; i++ ) {
setTimeout(function(){
assert( i == count++, "Check the value of i." );
}, i * 200);
}
</code></pre>
<p>And the fix:</p>
<pre><code>var count = 0;
for ( var i = 0; i < 4; i++ ) (function(i){
setTimeout(function(){
assert( i == count++, "Check the value of i." );
}, i * 200);
})(i);
</code></pre>
http://stackoverflow.com/questions/171156/best-practices-always-return-a-never-a/172633#17263316Answer by Sébastien RoccaSerra for Best Practices: Always return a ____, never a ____Sébastien RoccaSerra2008-10-05T20:48:23Z2009-03-06T09:27:22Z<p>Concerning returning empty arrays instead of <code>null</code> in Java, see Item 43 of Joshua Bloch's <a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Effective Java Second Edition</a> (Return empty arrays or collections, not null).</p>
<p>The reason is that returning <code>null</code> forces your callers to treat <code>null</code> as a special case.</p>
<p>E.g. suppose <code>getSomePeople()</code> can return <code>null</code>:</p>
<pre><code>final Person[] persons = getSomePeople()
//Don't forget to test for null, or you can get a NullPointerException!
if(null != persons) {
for(final Person person : persons) {
// ...
}
}
</code></pre>
<p>Same example if <code>getSomePeople()</code> returns <code>new Person[0]</code>:</p>
<pre><code>for(final Person person : getSomePeople()) {
// ...
}
</code></pre>
<p>Safer, and easier to read.</p>
<p>And if profiling reveals that creating empty arrays costs too much, store your empty array in a <code>final static</code> member (empty arrays are immutable in Java, and can be shared freely).</p>
<p>There is also</p>
<ul>
<li><code>Collections.emptySet()</code>,</li>
<li><code>Collections.emptyList()</code>,</li>
<li><code>Collections.emptyMap()</code>,</li>
</ul>
<p>three generic methods that return immutable empty collections.</p>
<p>As for <em>always</em> returning an Enum instead of a boolean, or an iterator instead of an instance, it looks like a very bizarre thing to do, but maybe it's just me...</p>
<pre><code>if (YES == isInflatable()) // I'd hate to read this!
</code></pre>
<p>Cheers!</p>
http://stackoverflow.com/questions/595631/how-to-atomically-rename-a-file-in-java-even-if-the-dest-file-already-exists3How to atomically rename a file in Java, even if the dest file already exists?Sébastien RoccaSerra2009-02-27T16:59:33Z2009-03-01T03:57:16Z
<p>I have a cluster of machines, each running a Java app.</p>
<p>These Java apps need to access a unique <code>resource.txt</code> file concurently.</p>
<p>I need to atomically rename a <code>temp.txt</code> file to <code>resource.txt</code> in Java, even if <code>resource.txt</code> already exist.</p>
<p>Deleting <code>resource.txt</code> and renaming <code>temp.txt</code> doesn't work, as it's not atomic (it creates a small timeframe where <code>resource.txt</code> doesn't exist).</p>
<p>And it should be cross-platform...</p>
<p>Thanks !</p>
http://stackoverflow.com/questions/56843/looking-for-an-hql-builder-hibernate-query-language2Looking for an HQL builder (Hibernate Query Language)Sébastien RoccaSerra2008-09-11T15:12:52Z2009-02-25T15:15:04Z
<p>I'm looking for a builder for <a href="http://www.hibernate.org/hib_docs/reference/en/html/queryhql.html" rel="nofollow">HQL</a> in Java. I want to get rid of things like:</p>
<pre><code>StringBuilder builder = new StringBuilder()
.append("select stock from ")
.append( Stock.class.getName() )
.append( " as stock where stock.id = ")
.append( id );
</code></pre>
<p>I'd rather have something like:</p>
<pre><code>HqlBuilder builder = new HqlBuilder()
.select( "stock" )
.from( Stock.class.getName() ).as( "stock" )
.where( "stock.id" ).equals( id );
</code></pre>
<p>I googled a bit, and I couldn't find one.</p>
<p>I wrote a quick & dumb <code>HqlBuilder</code> that suits my needs for now, but I'd love to find one that has more users and tests than me alone.</p>
<p>Note: I'd like to be able to do things like this and more, which I failed to do with the Criteria API:</p>
<pre><code>select stock
from com.something.Stock as stock, com.something.Bonus as bonus
where stock.someValue = bonus.id
</code></pre>
<p>ie. select all stocks whose property <code>someValue</code> points to <em>any</em> bonus from the Bonus table.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/565424/is-smalltalk-better-than-lisp/565515#5655154Answer by Sébastien RoccaSerra for Is Smalltalk better than Lisp?Sébastien RoccaSerra2009-02-19T14:22:07Z2009-02-19T14:22:07Z<p>I don't know if Smalltalk is better than Lisp, but reading about Smalltalk is not enough.</p>
<p>You have to use Smalltalk, browse through its classes, through implementors and senders, through changesets, write small methods, change the system itself while it is running, use automated refactorings, close your image and instantaneously open it later in the exact same state, inspect any displayed element by clicking on it and change its source code...</p>
<p>And from <a href="http://lists.squeakfoundation.org/pipermail/seaside/2002-June/000470.html" rel="nofollow">this post</a> by Avi Bryant:</p>
<blockquote>
<p>On the face of it, Smalltalk's lack of macros makes it rather less useful
than Lisp. However, Smalltalk makes an engineering trade off. It says,
no, you don't get macros, you get one syntax and one paradigm. It's a
very powerful paradigm, but it's the only one you get. In return,
however, we can do this: because we know exactly what paradigm you're
writing your code in, we can support it in all these amazing ways. We can
have browsers that structure your code meaningfully, we can have change
sets that track program modifications semantically instead of textually,
we can build automated refactoring support, and so on. To me, this is a
worthwhile trade off: I lose some of the strict power of Lisp, but I gain
a hugely productive environment.</p>
</blockquote>
http://stackoverflow.com/questions/559634/elisp-function-guide/561198#5611981Answer by Sébastien RoccaSerra for Elisp Function Guide?Sébastien RoccaSerra2009-02-18T14:14:38Z2009-02-18T14:14:38Z<p>Have you tryed <code><f1> f</code> ? It is bound to <code>describe-function</code>. Example with <code>point</code>:</p>
<pre><code>point is a built-in function in C source code.
(point)
Return value of point, as an integer.
Beginning of buffer is position (point-min).
[back]
</code></pre>
<p>Like most Lisp systeme, Emacs has an integrated documentation tool!</p>
<ul>
<li>Any Lisp function or variable can declare an optional doc string.</li>
<li>Almost all standard command or function do declare a usefull doc string.</li>
<li>Emacs (like most Lisp systems) allows you to display the doc string of any function or variable (<code><f1> f</code> and <code><f1> v</code>) at any time.</li>
<li>When displayed, the doc string is browsable, meaning that you can click on symbols to see their doc string, or go to the source of the corresponding function or variable.</li>
<li>As soon as you evaluate any <code>defun</code> or <code>defvar</code>, its doc string is available through <code>describe-function</code> or <code>describe-variable</code>: this doc is alive!</li>
</ul>
http://stackoverflow.com/questions/524033/how-can-i-simulate-oo-style-polymorphism-in-c/524679#5246790Answer by Sébastien RoccaSerra for How can I simulate OO-style polymorphism in C ?Sébastien RoccaSerra2009-02-07T22:00:15Z2009-02-07T22:00:15Z<p>Appendix B of the article <a href="http://www.vpri.org/pdf/tr2006003a_objmod.pdf" rel="nofollow">Open Reusable Object Models</a>, by Ian Piumarta and Alessandro Warth of <a href="http://vpri.org/" rel="nofollow">VPRI</a> is an implementation of an Object model in C, in a few lines of code. It's a fascinating read !</p>
<p>Here's the uncached version of the macro that sends messages to objects:</p>
<pre><code>typedef struct object *oop;
typedef oop *(*method_t)(oop receiver, ...);
//...
# define send(RCV, MSG, ARGS...) ({ \
oop r = (oop)(RCV); \
method_t method = _bind(r, (MSG)); \
method(r, ##ARGS); \
})
</code></pre>
http://stackoverflow.com/questions/177404/how-can-a-programmer-improve-their-web-design-abilities/507169#5071691Answer by Sébastien RoccaSerra for How can a programmer improve their web-design abilities?Sébastien RoccaSerra2009-02-03T14:00:48Z2009-02-03T14:00:48Z<p>As others have said, read "The Non-Designer's Design Book" and other great books.</p>
<p>Then use a CSS framework, like <a href="http://bluetrip.org/" rel="nofollow">Bluetrip</a>. It will help you apply these ideas relatively easily (and it will look the same on most browsers).</p>
http://stackoverflow.com/questions/491086/does-any-programmer-have-to-know-c-yes-why-no-why/491131#4911312Answer by Sébastien RoccaSerra for Does any programmer have to know C? Yes, why? No, why?Sébastien RoccaSerra2009-01-29T10:24:16Z2009-01-29T10:24:16Z<p>C is not my language of choice, but even to this day, C is everywhere.</p>
<p>When I do some small code in Lua using LuaCurl, I use a C library. Lua itself is written in C.</p>
<p>When I do some Seaside Web application in Squeak Smalltalk, I use a VM generated in C (the Squeak VM is written in Smalltalk, and then it generates C code as a portable assembler).</p>
<p>So I would not start learning programming with C (see <a href="http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with">this thread</a> for other choices), but as a programmer, knowing C is very handy even if it is not your language of choice.</p>
http://stackoverflow.com/questions/490990/should-i-still-learn-c-if-i-already-know-assembly/491014#4910141Answer by Sébastien RoccaSerra for Should I still learn C if I already know Assembly?Sébastien RoccaSerra2009-01-29T09:32:20Z2009-01-29T09:32:20Z<p>C is portable (if you write it carefully), that is a good reason for me.</p>
http://stackoverflow.com/questions/98225/vim-macros-dont-work-when-using-viper-vimpulse-in-emacs/482859#4828592Answer by Sébastien RoccaSerra for Vim macros don't work when using viper + vimpulse in emacs.Sébastien RoccaSerra2009-01-27T10:13:36Z2009-01-27T16:33:52Z<p>I don't know how to make Vim macros work, but since you asked for tweaks for making emacs as vim-like as possible, here's a few additions to vimpulse I use everyday:</p>
<pre><code>(define-key viper-vi-global-user-map [(delete)] 'delete-char)
(define-key viper-vi-global-user-map "/" 'isearch-forward-regexp)
(define-key viper-vi-global-user-map "?" 'isearch-backward-regexp)
(define-key viper-vi-global-user-map "\C-wh" 'windmove-left)
(define-key viper-vi-global-user-map "\C-wj" 'windmove-down)
(define-key viper-vi-global-user-map "\C-wk" 'windmove-up)
(define-key viper-vi-global-user-map "\C-wl" 'windmove-right)
(define-key viper-vi-global-user-map "\C-wv" '(lambda () (interactive)
(split-window-horizontally)
(other-window 1)
(switch-to-buffer (other-buffer))))
(define-key viper-visual-mode-map "F" 'viper-find-char-backward)
(define-key viper-visual-mode-map "t" 'viper-goto-char-forward)
(define-key viper-visual-mode-map "T" 'viper-goto-char-backward)
(define-key viper-visual-mode-map "e" '(lambda ()
(interactive)
(viper-end-of-word 1)
(viper-forward-char 1)))
(push '("only" (delete-other-windows)) ex-token-alist)
(push '("close" (delete-window)) ex-token-alist)
</code></pre>
<p>Of course, learning Emacs is very important too, but Emacs relies on customization to make it behave exactly like you want it to. And the default Vim key bindings are so comfortable that using Viper simply means that Viper does some Emacs customization for you.</p>
<p>As for using Vim instead of Emacs, I love Vim, but I love the interactiveness of the Lisp system that is Emacs. Nothing feels like typing a line of code anywhere in your editor and instantly evaluating it with a single keystroke, changing or inspecting the state of your editor <em>from your editor</em> (including the live documentation) with a single keystroke (<code>C-M-x</code>) <em>while it is running</em>.</p>
http://stackoverflow.com/questions/296603/does-your-email-client-let-you-add-custom-headers-programmatically/482980#4829804Answer by Sébastien RoccaSerra for Does your email client let you add custom headers programmatically?Sébastien RoccaSerra2009-01-27T10:58:31Z2009-01-27T10:58:31Z<p>Emacs can do this programmatically. You can create a buffer (<code>get-buffer-create</code>), fill it with header information, and call <code>mail-send</code> non interactivelly (set <code>mail-interactive</code> to <code>nil</code>).</p>
<p>Example of buffer content (header+body) to use with <code>mail-send</code>:</p>
<pre><code>From: "Toto" <toto@toto.net>
To: somebody@somewhere.net
Subject: Something
BCC: sebastien.rocca-serra@f4-group.com
--text follows this line--
Hello, how are you?
</code></pre>
<p>You can also alter every outgoing email (header + body) by adding a hook to <code>mail-send-hook</code>.</p>
http://stackoverflow.com/questions/459323/what-is-the-best-scheme-or-lisp-implementation-for-os-x/482927#4829274Answer by Sébastien RoccaSerra for What is the best Scheme or LISP implementation for OS X?Sébastien RoccaSerra2009-01-27T10:42:02Z2009-01-27T10:42:02Z<p>For Scheme, <a href="http://www.plt-scheme.org/software/drscheme/" rel="nofollow">DrScheme</a> is awsome (included in <a href="http://www.plt-scheme.org/" rel="nofollow">PLT Scheme</a>).</p>
<p>For Common Lisp, <a href="http://www.newartisans.com/blog/projects/ready-lisp.html" rel="nofollow">Ready Lisp</a> is great. A single dmg with SBCL, Aquamacs and Slime working out of the box.</p>
<p>From the Web site:</p>
<blockquote>
<p>Ready Lisp is a binding together of several popular Common Lisp packages especially for Mac OS X, including: Aquamacs, SBCL and SLIME. Once downloaded, you’ll have a single application bundle which you can double-click — and find yourself in a fully configured Common Lisp REPL.</p>
<p>It’s ideal for OS X users who want to try out the beauty of Common Lisp with a minimum of hassle. It could also be used by teachers to give their Mac students a free, complete Common Lisp environment to take home with them.
Requirements</p>
<p>The current version of Ready Lisp is 20090127 and requires Mac OS X 10.5 (Leopard).</p>
<p>It includes the following component software versions:</p>
<pre><code>Aquamacs 1.6
SBCL 1.0.24
SLIME 2009-01-23
CL-FAD 0.6.2
CL-PPCRE 2.0.1
LOCAL-TIME 0.9.3
SERIES 2.2.10
CL HyperSpec 7.0
paredit.el 20
redshank.el 1
cldoc.el 1.16
</code></pre>
</blockquote>
http://stackoverflow.com/questions/479565/how-do-you-define-a-class-of-constants-in-java/479641#4796410Answer by Sébastien RoccaSerra for How do you define a class of constants in Java?Sébastien RoccaSerra2009-01-26T12:32:27Z2009-01-26T12:32:27Z<p>As Joshua Bloch notes in Effective Java:</p>
<ul>
<li>Interfaces should only be used to define types,</li>
<li>abstract classes don't prevent instanciability (they can be subclassed, and even suggest that they are designed to be subclassed).</li>
</ul>
<p>You can use an Enum if all your constants are related (like planet names), put the constant values in classes they are related to (if you have access to them), or use a non instanciable utility class (define a private default constructor).</p>
<pre><code>class SomeConstants
{
// Prevents instanciation of myself and my subclasses
private SomeConstants() {}
public final static String TOTO = "toto";
public final static Integer TEN = 10;
//...
}
</code></pre>
<p>Then, as already stated, you can use static imports to use your constants.</p>
http://stackoverflow.com/questions/471703/c-string-initializer-doesnt-include-terminator/472820#4728201Answer by Sébastien RoccaSerra for C string initializer doesn't include terminator?Sébastien RoccaSerra2009-01-23T13:11:48Z2009-01-23T13:11:48Z<p>Alterenatively, you can use:</p>
<pre><code>char* myString[2] = {"123456789", "123456789" };
</code></pre>
<p>Like this, the initializer computes the right size for your null terminated strings.</p>
http://stackoverflow.com/questions/419344/c-get-request-or-how-do-you-download-files-to-work-with-in-c/419448#4194481Answer by Sébastien RoccaSerra for C++ 'GET' request or how do you download files to work with in C++?Sébastien RoccaSerra2009-01-07T07:03:58Z2009-01-07T07:03:58Z<p>You can't do that with the standard library. Since it's win32, you can follow Paul Keister's advice.</p>
<p>But have a look at <a href="http://curl.haxx.se/libcurl/" rel="nofollow">libcurl</a>, and since you are in C++, I'd recommend <a href="http://pocoproject.org/docs/" rel="nofollow">POCO</a> it's very usefull too. They are very handy tools!</p>
http://stackoverflow.com/questions/413799/how-to-know-which-urls-are-mapped-in-the-current-servlet-context-in-a-spring-2-02How to know which URLs are mapped in the current servlet context in a Spring 2.0 Controller method?Sébastien RoccaSerra2009-01-05T17:06:01Z2009-01-06T13:07:34Z
<p>In Spring 2.0, is there a quick way to have a list of the current servlet context's mapped URLs from inside a Controller method?</p>
<p>I'm writing a method called <code>getMappedUrls()</code>, and the purpose of this method is to show what urls are mapped in the current servlet context.</p>
<p>This method is to be used to generate an small online doc of available services.</p>
<p>Thanks!</p>
<p>[Edit]</p>
<p>Kent Lai's answer works for me:</p>
<pre><code>final Map<Object, AbstractUrlHandlerMapping> beans =
getApplicationContext().getBeansOfType(AbstractUrlHandlerMapping.class);
for (final AbstractUrlHandlerMapping bean : beans.values())
{
final Map<String, Object> mapping = bean.getHandlerMap();
for(final String url : mapping.keySet())
urls.add(url);
}
</code></pre>
http://stackoverflow.com/questions/371513/how-do-you-keep-your-metadata-under-version-control1How do you keep your metadata under version control?Sébastien RoccaSerra2008-12-16T14:39:15Z2008-12-17T23:10:19Z
<p>We have a database that persist our metadata and data.</p>
<p>Our metadata is produced buy a dedicated team, using a Web application on the development server, and is a critical part of our application.</p>
<p>Then the customer generates data according to this metadata.</p>
<p>We already version the database schema, and all schema change. The next step is to put our metadata under version control.</p>
Naive solution
<p>A naive solution would be to dump all the metadata, and commit it under version control before generating the corresponding packages. Since it's a dump, it can easily be restored. But there is probably a better way, like an incremental solution (only version diffs).</p>
Text dumps
<p>Another solution is to export all metadata tables in text format (like XML), and then version those text files. But then you have to find a way to reimport them.</p>
<p>So, is your metadata under version control? Why? How?</p>
http://stackoverflow.com/questions/303276/suggest-chapters-topics-for-oop-book/358599#3585991Answer by Sébastien RoccaSerra for Suggest chapters/topics for OOP BookSébastien RoccaSerra2008-12-11T06:51:03Z2008-12-12T12:23:20Z<p>You can also add Lua and Javascript to the languages, their prototype-oriented OOP is minimal but easily extensible. See <a href="http://code.google.com/p/joose-js/" rel="nofollow">Joose</a> for a nice example of Javascript extension.</p>
<p>[Edit to answer comment]</p>
<p>Lua provides facilities & syntactic sugar to support an object-oriented programming style. <a href="http://www.lua.org/pil/16.html" rel="nofollow">Chapter 16</a> of Programming in Lua (PiL) describes simple OOP programming styles in Lua. </p>
<p>For more advanced features, like a super() function, you can write your own OOP module in Lua (I'm trying to write one <a href="http://lua-users.org/wiki/ObjectLua" rel="nofollow">here</a>) or use one of <a href="http://lua-users.org/wiki/ObjectOrientedProgramming" rel="nofollow">these</a>.</p>
http://stackoverflow.com/questions/303276/suggest-chapters-topics-for-oop-book/358596#3585961Answer by Sébastien RoccaSerra for Suggest chapters/topics for OOP BookSébastien RoccaSerra2008-12-11T06:47:23Z2008-12-11T06:47:23Z<p>You can add Common Lisp CLOS to the languages, it is a very impressive implementation of OOP (read <a href="http://en.wikipedia.org/wiki/The_Art_of_the_Metaobject_Protocol" rel="nofollow">The Art of the Metaobject Protocol</a> if you haven't, it is an enlightening book on OOP, defining a metaobject protocol for CLOS).</p>
http://stackoverflow.com/questions/355796/how-do-you-explain-oo-to-new-programmers/355888#3558881Answer by Sébastien RoccaSerra for How do you explain OO to new programmers?Sébastien RoccaSerra2008-12-10T12:28:58Z2008-12-10T12:28:58Z<p>How about "each molding is built using a mold", or "each model is built using a template", and so "each object is built using a class" ?</p>
<p>Note that it works for class-oriented OOP (which is what you want), but not for prototype-oriented OOP.</p>
<p>As for explaining OOP to a programmer, I'd add examples illustrating:</p>
<h3>Separating state from behavior</h3>
<p>Most of the time, an instance describe a state, and a class describe a behavior.</p>
<h3>Delegation</h3>
<p>An instance delegates its behavior to its class, and the class in turn can delegate its behavior to its superclasses (or mixins or traits)</p>
<h3>Polymorphism</h3>
<p>If class A inherits from class B, an instance of A can be used anywhere an instance of class B can be used.</p>
<h3>Messages & methods</h3>
<p>A message (or generic function, or virtual function) is like a question. Most of the time, several classes can answer to this question.</p>
<p>A corresponding method is a possible answer to the question, that resides in a class.</p>
<p>When sending a message to an instance, the instance looks up for a corresponding method in its class. If found, it calls it (with the instance bound to 'self' or 'this'. Otherwise, it looks for a corresponding method in its mixins, traits, or superclasses, and calls it.</p>
http://stackoverflow.com/questions/292066/why-does-flex-let-me-treat-a-class-as-an-object/334594#3345941Answer by Sébastien RoccaSerra for Why does Flex let me treat a class as an objectSébastien RoccaSerra2008-12-02T16:31:01Z2008-12-03T11:22:21Z<p>It seems like in Flex, the collections don't specify the type of the values they should contain. </p>
<pre><code>var a:ArrayCollection = new ArrayCollection();
</code></pre>
<p>So it feels logical to me that the compiler doesn't check the types of the values you add to it. Then assigning variables from collection elements can only be checked at runtime, since the compiler doesn't have the information.</p>
<p>As for classes being objects (and responding to messages), it is very convenient to build all kind of debugging / inspection / reflexion tools.</p>
http://stackoverflow.com/questions/1481579/want-to-learn-to-write-2d-games/1510504#1510504Comment by Sébastien RoccaSerra on Want to learn to write 2d gamesSébastien RoccaSerra2009-11-24T11:17:21Z2009-11-24T11:17:21ZFlixel is great, perfect for 2D games. You can use FlashDevelop, but also FlexBuilder or even just your favourite text editor like Emacs: just use the free Flex SDK command line tools. If you go the text editor + command line way though, you'll have to use a build system like Make, Ant, or Rake.http://stackoverflow.com/questions/1649943/readable-way-of-knowing-if-there-is-at-least-one-difference-between-two-maplong/1650113#1650113Comment by Sébastien RoccaSerra on Readable way of knowing if there is at least one difference between two Map<Long, Integer> in Java ?Sébastien RoccaSerra2009-10-30T20:57:37Z2009-10-30T20:57:37ZThanks, that's interesting. In my case though, the maps are really small (ten elements or so), and shared once in a while by value over HTTP. So equals is just what I need.http://stackoverflow.com/questions/1649943/readable-way-of-knowing-if-there-is-at-least-one-difference-between-two-maplongComment by Sébastien RoccaSerra on Readable way of knowing if there is at least one difference between two Map<Long, Integer> in Java ?Sébastien RoccaSerra2009-10-30T14:10:04Z2009-10-30T14:10:04ZNo reason at all, I guess I need some rest! Thanks.http://stackoverflow.com/questions/1649943/readable-way-of-knowing-if-there-is-at-least-one-difference-between-two-maplong/1649961#1649961Comment by Sébastien RoccaSerra on Readable way of knowing if there is at least one difference between two Map<Long, Integer> in Java ?Sébastien RoccaSerra2009-10-30T14:08:53Z2009-10-30T14:08:53ZIt works, I need some sleep I guess. Thanks.http://stackoverflow.com/questions/20735/useful-vim-features/36305#36305Comment by Sébastien RoccaSerra on Useful Vim featuresSébastien RoccaSerra2009-08-07T09:43:32Z2009-08-07T09:43:32ZThanks. Too bad, this page was really useful.http://stackoverflow.com/questions/56843/looking-for-an-hql-builder-hibernate-query-language/57100#57100Comment by Sébastien RoccaSerra on Looking for an HQL builder (Hibernate Query Language)Sébastien RoccaSerra2009-07-15T14:56:06Z2009-07-15T14:56:06ZThanks, it's what I needed.
I added a projection on the id field in the first criteria:
bonuses.setProjection(Property.forName("id"));
Is it required / good practice / bad practice ? Why ? Thanks again.http://stackoverflow.com/questions/636126/best-way-to-create-an-empty-map-in-java/636151#636151Comment by Sébastien RoccaSerra on Best way to create an empty map in javaSébastien RoccaSerra2009-03-11T20:20:02Z2009-03-11T20:20:02ZIn most cases, type inference works (ie. map = Collections.emptyMap() works)http://stackoverflow.com/questions/56843/looking-for-an-hql-builder-hibernate-query-language/586392#586392Comment by Sébastien RoccaSerra on Looking for an HQL builder (Hibernate Query Language)Sébastien RoccaSerra2009-02-25T16:52:32Z2009-02-25T16:52:32ZInteresting, thanks!http://stackoverflow.com/questions/565424/is-smalltalk-better-than-lisp/565515#565515Comment by Sébastien RoccaSerra on Is Smalltalk better than Lisp?Sébastien RoccaSerra2009-02-19T14:33:52Z2009-02-19T14:33:52ZAnd there's an Emacs key binding for Squeak; I'm not sure if it's convenient though, as it can shadow useful squeak shortcuts.http://stackoverflow.com/questions/565424/is-smalltalk-better-than-lisp/565515#565515Comment by Sébastien RoccaSerra on Is Smalltalk better than Lisp?Sébastien RoccaSerra2009-02-19T14:33:20Z2009-02-19T14:33:20ZYes, not having Emacs or VI is a problem. But you get a totally configurable working environment with convenient shortcuts (browse implementors, browse senders, accept, browse references...), browsable source code and an awsome debugger.http://stackoverflow.com/questions/525754/what-next-c-python-or-ruby/525770#525770Comment by Sébastien RoccaSerra on What Next: C++, Python or RubySébastien RoccaSerra2009-02-09T10:00:30Z2009-02-09T10:00:30ZI agree with "better yet, C". Comming from .Net, the benefits of learning a language of the C family will stand out more if you learn C than C++. (And I agree even more with "I'd suggest something a bit more exotic", and add Lisp!)http://stackoverflow.com/questions/515061/where-do-you-use-smalltalk/515113#515113Comment by Sébastien RoccaSerra on Where do you use Smalltalk?Sébastien RoccaSerra2009-02-05T09:16:43Z2009-02-05T09:16:43ZAbout the lack of Interfaces, did you try Smalltalk Traits ?http://stackoverflow.com/questions/98225/vim-macros-dont-work-when-using-viper-vimpulse-in-emacs/484163#484163Comment by Sébastien RoccaSerra on Vim macros don't work when using viper + vimpulse in emacs.Sébastien RoccaSerra2009-01-29T12:17:56Z2009-01-29T12:17:56ZIn my Windows version of gVim, "Ctrl-W s" (or "Ctrl-W v") splits in two windows, not two frames.http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks/490771#490771Comment by Sébastien RoccaSerra on Lua Patterns,Tips and TricksSébastien RoccaSerra2009-01-29T08:58:08Z2009-01-29T08:58:08ZExactly, and great books.http://stackoverflow.com/questions/484469/when-is-it-ok-to-break-the-law-of-demeter/484660#484660Comment by Sébastien RoccaSerra on When is it ok to break "the law of demeter"?Sébastien RoccaSerra2009-01-29T08:31:36Z2009-01-29T08:31:36ZIsn't the law of Demeter about reducing dependencies and least knowledge ? To me, introducing DateYearProxy and DateMonthProxy classes (or interfaces) looks worse than method chaining regarding the law of Demeter. I might be wrong though.