User slim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T09:20:17Zhttp://stackoverflow.com/feeds/user/7512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/946396/compile-time-checking-in-groovy/1750725#17507250Answer by slim for compile-time checking in Groovyslim2009-11-17T18:10:40Z2009-11-17T18:10:40Z<p>One reason you might specify a type is to allow an IDE to help you.</p>
<pre><code>def foo
foo.[ctrl-space]
</code></pre>
<p>... won't help you very much</p>
<pre><code>List foo
foo.[ctrl-space]
</code></pre>
<p>... might (depending on the IDE) give you a choice of List's methods. Of course, a method that's not one of the choices might be a valid one to use, for the reasons given in other answers.</p>
<p>There are other automated software maintenance operations that benefit from clues about types. For example, refactoring.</p>
http://stackoverflow.com/questions/1724644/recommended-socket-server-frameworks1Recommended Socket Server frameworksslim2009-11-12T19:14:59Z2009-11-12T19:23:55Z
<p>I've written my fair share of loops around accept() or select(); fork() or Thread.start().</p>
<p>I'd like to avoid doing it again. I'd prefer not to re-use my own code. And I'd like to take advantage of benefits that a 'serious' framework offers, such as preforking, thread pooling, etc.</p>
<p>What frameworks do you recommend - in any language - that accept socket connections and present the programmer with a stream handle to work with? There are plenty of well known ones for HTTP. I'm looking for something one protocol level lower down.</p>
<p>Two I'm aware of are:</p>
<ul>
<li><a href="http://www.jboss.org/netty/index.html" rel="nofollow">Netty</a> for Java</li>
<li><a href="http://docs.python.org/library/socketserver.html" rel="nofollow">SocketServer</a> for Python</li>
</ul>
http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faq/100240#1002400Answer by slim for What is your tool for version control (FAQ)slim2008-09-19T07:26:50Z2009-10-22T05:01:46Z<p>RCS </p>
<p>RCS was pretty much superceded by CVS and later Subversion.</p>
<p>It relied on locking, which most people are glad to see the back of.</p>
<p>RCS could be compiled with strict locking or without it; it did not absolutely rely on locking versions.</p>
<p>For simple version control, RCS is a workable product. It has its deficiencies - in modern terms, the lack of changesets is one problem (changes are particular to a single file). But it was a solid VCS - as was SCCS in its day. And there are definitely people still using RCS - I do, for one. Granted, I'm looking to move to a DVCS; at the moment, though, RCS is my (private) VCS, and it works well for me.</p>
http://stackoverflow.com/questions/238173/worst-java-practice-found-in-your-experience/1503092#15030920Answer by slim for Worst Java practice found in your experience?slim2009-10-01T10:17:41Z2009-10-01T10:17:41Z<p>An API that requires the caller to do:</p>
<pre><code>Foobar f = new Foobar(foobar_id);
f = f.retrieve();
</code></pre>
<p>Any of the following would have been better:</p>
<pre><code>Foobar f = Foobar.retrieve(foobar_id);
</code></pre>
<p>or</p>
<pre><code>Foobar f = new Foobar(foobar_id); // implicit retrieve
</code></pre>
<p>or</p>
<pre><code>Foobar f = new Foobar();
f.retrieve(foobar_id); // but not f = ...
</code></pre>
http://stackoverflow.com/questions/1486727/is-reversing-i18n-translation-possible/1487211#14872110Answer by slim for Is reversing I18N translation possible?slim2009-09-28T14:01:24Z2009-09-28T14:01:24Z<p>You need to maintain a dictionary table of translated messages. You probably already have one in some form.</p>
<pre><code>Master message list
| Message key | English text |
| 1 | Payment rejected |
Translations
|Translation | Message key |
|Paiement rejeté | 1 |
|Talu Gwrthodwyd | 1 |
|Maksu hylätty | 1 |
</code></pre>
<p>You can use a join to search for the translated text from your data import, and map it back to the untranslated text (or just store the message key).</p>
<p>It might be worth making this more robust by 'reducing' the translated text - strip unneeded whitespace, replace accented characters etc. Do this before storing the translations, and before searching. DB indexes should make the search fast.</p>
http://stackoverflow.com/questions/1487078/need-a-lightweight-web-server-for-windows-xp-home/1487107#14871072Answer by slim for Need a lightweight web server for Windows XP Homeslim2009-09-28T13:41:26Z2009-09-28T13:41:26Z<p>For Java, <a href="http://www.mortbay.org/jetty/" rel="nofollow">Jetty</a> seems to fit the bill.</p>
<p>Having said that, very few web servers are "heavyweight" on modern hardware. Apache or Tomcat wouldn't strain your machine too much.</p>
http://stackoverflow.com/questions/1486996/java-in-bash-at-university-fails-with-noclassdeffounderror/1487016#14870161Answer by slim for Java in bash at university fails with NoClassDefFoundErrorslim2009-09-28T13:26:03Z2009-09-28T13:38:06Z<pre><code>java -verbose hello.class
</code></pre>
<p>... means "hey, Java, run the main() method in the class 'hello.class'.</p>
<p>Java can't find a class named "hello.class". Your class is called "hello".</p>
<pre><code>java -verbose hello
</code></pre>
<p>Since '.' is in your classpath, Java will find the 'hello' class in './hello.class'.</p>
<p>Extra tip: it's conventional in Java to start classes with a capital letter.</p>
<pre><code>public class Hello {
</code></pre>
<p>This helps to distinguish between class references and variable references in the rest of your code.</p>
<pre><code>Dessert dessert= new Dessert("tiramisu")
</code></pre>
http://stackoverflow.com/questions/1480570/a-regular-expression-question/1480877#14808772Answer by slim for A regular expression questionslim2009-09-26T09:49:36Z2009-09-26T11:21:36Z<p>As I write, there are two great answers which do it in one regex.</p>
<p>I want to suggest that unless you're optimising for performance (and remember, premature optimisation is bad, m'kay?) it's worth splitting into more, simpler, regexs, and using language features for readability.</p>
<p>Not that complex regex's are always efficient anyway -- it's easy to accidentally write a regex that backtracks all over the place.</p>
<p>It's also kind to readers of your code who may be unfamiliar with the more exotic features of whatever regex dialect you have.</p>
<pre><code>boolean isMatch(String s) {
// First pass test
Pattern basicPattern = Pattern.compile("\bMary\b.*\bare\b");
// ... and a test for exclusions
String rejectRE = "\bMary\b.*\bBob\b.*\bare\b";
Matcher m = basicPattern.matcher(s);
while(m.find()) {
// We have a candidate match
if(! m.group().matches(rejectRE)) {
// and it passed the secondary test
return true;
}
}
// we fell through
return false;
}
</code></pre>
http://stackoverflow.com/questions/1480762/java-regexp-how-common-is-it-and-how-much-resource-does-it-use/1480833#14808335Answer by slim for Java regexp: How common is it? And how much resource does it use?slim2009-09-26T09:20:48Z2009-09-26T09:20:48Z<p>Regex is a programming lanaguage -- it's a way of defining a finite state machine, and there's really no upper limit to the complexity of that FSM, beyond your own sanity.</p>
<p>It's not "magic" - you can understand how RE matching works behind the scenes, and once you do that, you'll be in control of how resource-hungry your REs are.</p>
<p>Simple REs are very cheap, but it's possible to write expensive REs that have to look ahead and do lots of backtracking.</p>
<p>I thoroughly recommend Jeff Friedl's "<a href="http://regex.info/" rel="nofollow">Mastering Regular Expressions</a>". It's not just for Perl, and you don't have to grind through the whole thing just lose the idea that RE is magic, and learn that it's a programming language you can optimise (or, indeed, write poorly perfoming code in).</p>
http://stackoverflow.com/questions/1477653/how-to-print-thousands-of-personalized-documents-over-the-web/1480820#14808200Answer by slim for How to print thousands of personalized documents over the webslim2009-09-26T09:09:14Z2009-09-26T09:09:14Z<p>Since the question was clarified as:</p>
<blockquote>
<p>Remote warehouse only has browser and printer. It connects to the server and enters information about the item that just arrived. In responce to that, printing of thousands of shipping labels should start, warehouse cannot wait until labels are printed elswhere and delivered to its location.</p>
</blockquote>
<p>...the rational way to do this would be to make all the printers network printers. The workstations could share them using Windows networking, or pick your own favourite print server technology.</p>
<p>The web application needs to be told which printer needs the labels. It then prints to whichever print server is appropriate.</p>
<p>The alternative - download the document and print locally - is too user-driven to be appropriate in my opinion.</p>
http://stackoverflow.com/questions/1454200/which-is-the-fastest-javascript-engine-and-does-it-really-matter/1455099#14550990Answer by slim for Which is the fastest javascript engine, and does it really matter?slim2009-09-21T15:26:55Z2009-09-21T15:26:55Z<p>Remember that not all Javascript runs in browsers.</p>
<p>For example, if you're running <a href="http://couchdb.apache.org/" rel="nofollow" title="CouchDB">CouchDB</a>, views are implemented as Javascript functions.</p>
<p><a href="http://sling.apache.org/site/index.html" rel="nofollow" title="Apache Sling">Apache Sling</a> allows server side scripting in Javascript.</p>
<p>I'm aware of BPM tools that use Javascript to write model steps.</p>
<p>Wikipedia lists many more <a href="http://en.wikipedia.org/wiki/Server-side%5FJavaScript" rel="nofollow">server side java applications</a>.</p>
<p>In these environments, where the Javascript engine is under your control, and not something in your user's browser, then certainly you'd be interested in performance.</p>
<p>On the other hand, many of these are tightly coupled to a specific Javascript implementation. It doesn't appear as if you could easily (for example) swap out SpiderMonkey for V8 in CouchDB.</p>
http://stackoverflow.com/questions/216511/profiling-webmethods-services0Profiling WebMethods services?slim2008-10-19T15:11:49Z2009-07-03T15:54:51Z
<p>What techniques are available to profile services running in WebMethods Integration Server?</p>
<p>That is, to obtain data which would indicate which parts would benefit most from optimisation.</p>
http://stackoverflow.com/questions/675188/lamp-xampp-for-production/675199#6751991Answer by slim for LAMP, XAMPP for production.slim2009-03-23T20:54:47Z2009-03-23T20:54:47Z<p>Roll your own combination of Apache, a DB and a scripting language, that meets your needs.</p>
<p>This is what hosting companies do for a living.</p>
<p>You may find that an enterprise Linux distribution is enough for your needs.</p>
http://stackoverflow.com/questions/674722/struggling-with-c-coming-from-object-oriented-land/675040#6750402Answer by slim for Struggling with C coming from Object Oriented land?slim2009-03-23T20:10:34Z2009-03-23T20:10:34Z<p>I had a bear of a time moving from procedural to OO thinking, so I feel your pain.</p>
<p>I found that in order to learn how to create objects, it was best to think about how they would look to the caller. The same approach might help you, going the other way. Consider what the API to your component would look like. One good way is to study existing C APIs (I used the standard Java APIs as a set of examples of an OO API).</p>
<p>You're used to using a queue component something like this:</p>
<pre><code>import some.package.Queue;
Queue q = new Queue();
q.add(item);
</code></pre>
<p>In a typical C api, you'd expect something more like:</p>
<pre><code>#include <queue.h> // provides queue, make_queue(), queue_add(), others
queue q = make_queue(); // queue is probably a struct, or a struct*
queue_add(q,item);
</code></pre>
<p>Whenever you find yourself thinking in objects, make a similar transform.</p>
<p>You can use pointers to functions and the like, to make object-like structures in C - but many thousands of C programmers have managed without.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/674700/regarding-javascript-for-loop-voodoo/674808#6748086Answer by slim for Regarding JavaScript for() loop voodoo...slim2009-03-23T19:09:07Z2009-03-23T19:18:54Z<p>The code you quote is obfuscated in my opinion. There are much clearer ways to write the same functionality.</p>
<p>However, your understanding is pretty much right. The following is the exact same code, except for whitespace and comments.</p>
<pre><code>for (
// Initializer
var j, x, i = o.length;
// Continue condition
i;
// Operation to be carried out on each loop
j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x
)
// empty body, equivalent to { }
;
</code></pre>
<p>It's much clearer to write the equivalent:</p>
<pre><code>var j,x,i = o.length;
while(i) {
j = parseInt(Math.random() * i);
x = o[--i];
o[i] = o[j];
o[j] = x;
}
</code></pre>
<p>There are other optimisations that could be made for readability - including using <code>while(i > 0)</code> instead of <code>while(i)</code>, and splitting out the <code>--i</code> into an <code>i--</code> on a separate line.</p>
<p>There's really no reason for for() to exist, except for readability. These two are equivalent:</p>
<pre><code>{ // this block is to scope int i
int i=0;
while(i<100) {
myfunc(i);
i++;
}
}
for(int i=0; i<100; i++) {
myfunc(i);
}
</code></pre>
<p>You should use whichever is most readable for a given time. I'd argue that the author of your code has done the opposite. In fairness, he may have done this in order to achieve a smaller JS file for faster loading (this is the kind of transform an automated code compactor could do).</p>
http://stackoverflow.com/questions/674041/is-there-an-elegant-way-to-convert-iso-639-2-3-letter-language-codes-to-java-lo/674197#6741970Answer by slim for Is there an elegant way to convert ISO 639-2 (3 letter) language codes to Java Locales?slim2009-03-23T16:53:08Z2009-03-23T16:53:08Z<p>Some modified code from my project, which has a similar requirement. We have our own historical timezone format so we can't use standard libraries. </p>
<pre><code>public class MyProjectTimeZoneFactory {
private static Map timeZoneDb;
/**
* Set up our timezone id mappings; call this from any constructor
* or static method that needs it.
*/
private static void init() {
if(null == TimeZoneDb) {
timeZoneDb = new HashMap(); // Maybe a TreeMap would be more appropriate
timeZoneDb.put(" ","GMT+00");
timeZoneDb.put("EAD ","GMT+10");
timeZoneDb.put("JST ","GMT+9");
// etc.
}
}
public static TimeZone getTimeZone(String id)
throws CommandFormatException {
init();
TimeZone tz;
if(timeZoneDb.containsKey(id)) {
tz = TimeZone.getTimeZone((String)timeZoneDb.get(id));
} else {
throw new CommandFormatException("Invalid Timezone value");
}
return tz;
}
}
</code></pre>
<p>You could argue that it would be better to have the map in configuration rather than code - perhaps in a properties file. That may be true - but do remember the Pragmatic Programmers' rule 'Your not going to need it'. </p>
http://stackoverflow.com/questions/673016/bash-how-to-do-a-variable-expansion-within-an-arithmetic-expression/673025#6730251Answer by slim for Bash: How to do a variable expansion within an arithmetic expression?slim2009-03-23T11:26:45Z2009-03-23T11:26:45Z<p>You can omit the $ within an arithmetic expression.</p>
<p>So:</p>
<pre><code>DAYS_TO_WEDNESDAY=$((3 - WEEKDAY))
</code></pre>
http://stackoverflow.com/questions/671639/strange-behavior-using-getchar-and-o3/671662#6716624Answer by slim for Strange behavior using getchar() and -O3slim2009-03-22T21:46:55Z2009-03-22T21:46:55Z<p>Since you haven't provided the external code (yet?), here's a guess.</p>
<pre><code>while(some condition) {
foo1();
foo2();
}
</code></pre>
<ul>
<li>foo1 prints '<code>one</code>' then waits for some input. You type '<code>f[enter]</code>'.</li>
<li>foo1 consumes the '<code>f</code>'.</li>
<li>foo2 prints 'two' then consumes the <code>[enter]</code> (a newline character).</li>
<li>Then you go back to the start, and it all happens again.</li>
</ul>
<p>With your second version, foo1() doesn't read anything any more.</p>
<p>So:</p>
<ul>
<li>foo1 prints '<code>one</code>'</li>
<li>foo2 prints '<code>two</code>' then waits for some input. You type '<code>f[enter]</code>'</li>
<li>foo2 consumes the '<code>f</code>'</li>
</ul>
<p>The only remaining question is why it stops when it does. To help you with that, we'd have to see what <code>(some condition)</code> actually is.</p>
<p>Note that it's fairly unusual to call <code>getchar()</code> without keeping the result (as in <code>c = getchar();</code>). Do you have a reason for doing this?</p>
<p>One useful C idiom is:</p>
<pre><code>(void) getchar();
</code></pre>
<p>The cast to void is an indication from the programmer that they know they're discarding the return value.</p>
http://stackoverflow.com/questions/658781/why-do-i-get-a-blank-line-while-substituting-a-string-with-in-perl/658907#6589070Answer by slim for Why do I get a blank line while substituting a string with '%>' in Perl?slim2009-03-18T15:59:08Z2009-03-19T17:41:06Z<p>Firstly, I strongly recommend against using regular expressions to manipulate HTML. Use something like <a href="http://search.cpan.org/dist/HTML-Tree" rel="nofollow">HTML::Tree</a>.</p>
<p>Nonetheless, when I tried your code, it worked. The only thing I changed was what I assume was a typo: your input included:</p>
<pre><code>href="../css style_hbpSA_css.jsp"
</code></pre>
<p>Your pattern was:</p>
<pre><code>href="../css/style_hbpSA_css.jsp"
</code></pre>
<p>I assume you wanted both to be the same (although it would be even better to have '..' in the pattern).</p>
<p>One thing I would check for is weird (that is, Windows) line endings in your input file.</p>
http://stackoverflow.com/questions/658622/true-not-pseudo-random-number-generators-whats-out-there/658702#6587024Answer by slim for True (not pseudo) random number generators. What's out there?slim2009-03-18T15:15:22Z2009-03-18T15:25:23Z<p>You didn't specify an environment.</p>
<p>From the documentation for Linux's /dev/random</p>
<blockquote>
<p>The random number generator gathers
environmental noise from device
drivers and other sources into an
entropy pool. The generator also keeps
an estimate of the number of bit of
the noise in the entropy pool. From
this entropy pool random numbers are
created.</p>
</blockquote>
<p>So this is a cryptographically secure random source, based on unpredictable input from such things as the arbitrary timings of ethernet packets, keyboard and mouse input, etc.</p>
<p>There's also Bruce Schneier's <a href="http://www.schneier.com/yarrow.html" rel="nofollow">Yarrow</a> PRNG server. Not truly random, but considered cryptographically secure.</p>
<p>... and also <a href="http://egd.sourceforge.net/" rel="nofollow">EGD</a>, the Entropy Gathering Daemon. Written in Perl and hence portable across many platforms.</p>
http://stackoverflow.com/questions/654905/legacy-code-nightmare/655236#6552360Answer by slim for Legacy Code Nightmareslim2009-03-17T17:25:12Z2009-03-17T17:25:12Z<p>I particularly like the diagram in Code Complete, in which you start with just legacy code, a rectangle of fuzzy grey texture. Then when you replace some of it, you have fuzzy grey at the bottom, solid white at the top, and a jagged line representing the interface between the two.</p>
<p>That is, everything is either 'nasty old stuff' or 'nice new stuff'. One side of the line or the other.</p>
<p>The line is jagged because you're migrating different parts of the system at different rates.</p>
<p>As you work, the jagged line gradually descends, until you have more white than grey, and eventually just grey.</p>
<p>Of course, that doesn't make the specifics any easier for you. But it does give you a model you can use to monitor your progress. At any one time you should have a clear understanding of where the line is: which bits are new, which are old, and how the two sides communicate.</p>
http://stackoverflow.com/questions/548351/are-games-the-most-complex-impressive-applications/650705#6507051Answer by slim for Are games the most complex / impressive applications?slim2009-03-16T14:39:27Z2009-03-16T14:39:27Z<p>I think there are interesting examples of 'impressive' code in the world of games. The place to look is games for fixed hardware such as games consoles and older home computing platforms. The software to look for is the titles that came out towards the end of those platforms' lives.</p>
<p>For example, Elite on the BBC Micro crammed a 3D space combat game, a market simulation and a map of a whole universe into 32KB. Later the same game was crammed onto a NES. This feat involves hand-optimised assembly language coding in which spending a day to shave off a byte was considered worthwhile.</p>
<p>You can find similarly impressive works on all the 8 and 16 bit platforms. Also look at the sound and graphic demos from the Amiga scene.</p>
<p>The driver for all of this is that you couldn't simply solve the problem with more hardware. Consumers couldn't upgrade the hardware, and were demanding ever more sophisticated games.</p>
<p>In addition, these games are impressive because they were written for devices that weren't initially designed for games. Something as simple as 'smooth 8 way scrolling' was considered a major feature for a game, because the hardware didn't support it directly and programmers had to be really clever to achieve it.</p>
<p>It's possible that those days are over. Maybe someone will push the PS3 or Xbox360 to do something mind boggling, but it seems that you can sell games without pushing this hardware all that hard, so the commercial pressure to do so isn't that high. All you get is small improvements in graphic quality, or larger environments, or more detailed environments.</p>
<p>Increasingly even handheld devices are too powerful to prompt that kind of impressive low level coding. You don't need to twiddle bits to write a 3D game on a modern phone.</p>
<p>So, look for other places where the hardware is limited. The Mars Rover is a good example.</p>
http://stackoverflow.com/questions/649515/recursion-leading-to-out-of-memory/649778#6497780Answer by slim for Recursion leading to out of memory slim2009-03-16T09:43:27Z2009-03-16T09:43:27Z<p>I don't think the recursion has much to do with your problem. The problem is merely that the data you're creating is big. Moving to an iterative solution won't help with that. As has been pointed out already, write output as you traverse, rather than storing it up in an in-memory structure.</p>
<p>You can, however, minimise what goes on the stack, by passing pointers in your recursive calls, rather than whole structs.</p>
http://stackoverflow.com/questions/642357/whats-the-difference-between-data-and-code/642413#6424130Answer by slim for What's the difference between data and code?slim2009-03-13T12:18:33Z2009-03-13T16:14:21Z<p>I would say that the distinction between data, code and configuration is something to be made within the context of a particular component. Sometimes it's obvious, sometimes less so.</p>
<p>For example, to a compiler, the source code it consumes and the object code it creates are both data - and should be separated from the compiler's own code.</p>
<p>In your case you seem to be describing the option of a particularly powerful configuration file, which can contain code. Much as, for example, the GIMP lets you 'configure' plugins using Scheme. As the developer of the component that reads this configuration, you would think of it as data. When working at a different level -- writing the configuration -- you would think of it as code.</p>
<p>This is a very powerful way of designing.</p>
<p>Applying this to the underlying question ("How would you code the above example?"), one option might be to adopt or design a high level Domain Specific Language (DSL) for specifying rules. At startup, or when first required, the server reads the rule and executes it.</p>
<p>Provide an admin interface allowing the administrator to</p>
<ul>
<li>test a new rule file</li>
<li>replace the current configuration with that from a new rule file</li>
</ul>
<p>... all of which would happen at runtime.</p>
<p>A DSL might be something as simple as a table parser or an XML parser, or it could be something as sophisticated as a scripting language. From C, it's easy to embed Python or Lua. From Java it's easy to embed Groovy or Clojure.</p>
<p>You could switch in compiled code at runtime, with clever linking or classloader tricks. This seems more difficult and less valuable than the embedded DSL option, in my opinion.</p>
http://stackoverflow.com/questions/638745/understanding-the-risk-of-non-ssl-login-forms/638783#6387836Answer by slim for Understanding the risk of non SSL login formsslim2009-03-12T14:11:31Z2009-03-12T14:53:57Z<p>The packet can be sniffed absolutely anywhere on the route between client and server. The attacker just needs to get physical access to one of those networks.</p>
<p>Obviously the closer you are to a 'trunk' (ISP) rather than a 'leaf' (Home router, home computer), the more stuff you can sniff.</p>
<p>With DNS spoofing, an attacker can modify that route so that it passes through a system they control.</p>
<p>Possibly the easiest way to get a feel for this is to try it for yourself. Install <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a>, and see how easy it is to watch stuff that passes by.</p>
http://stackoverflow.com/questions/638868/getting-out-of-crud/638978#6389783Answer by slim for Getting out of CRUDslim2009-03-12T14:49:30Z2009-03-12T14:49:30Z<p>I agree that CRUD's pretty boring. But I don't think it's the fact that it's financial data that makes it so. Perhaps you'd find that financial data a lot more interesting if, for example, it was streaming into a neural net based expert system you'd written to work out how best to invest it?</p>
<p>There's definitely an awful lot more to programming than CRUD. Find an aspect that interests you, and pursue it.</p>
http://stackoverflow.com/questions/638881/what-does-expressive-mean-when-referring-to-programming-languages/638929#6389292Answer by slim for What does "expressive" mean when referring to programming languages?slim2009-03-12T14:41:06Z2009-03-12T14:41:06Z<p>'Expressive' means that it's easy to write code that's easy to understand, both for the compiler and for a human reader.</p>
<p>Two factors that make for expressiveness:</p>
<ul>
<li>intuitively readable constructs</li>
<li>lack of boilerplate code</li>
</ul>
<p>Compare this expressive Groovy, with the less expressive Java eqivalent:</p>
<pre><code>3.times {
println 'Hip hip hooray'
}
</code></pre>
<p>vs</p>
<pre><code>for(int i=0; i<3; i++) {
System.out.println("Hip hip hooray");
}
</code></pre>
<p>Sometimes you trade precision for expressiveness -- the Groovy example works because it assumes stuff that Java makes you to specify explicitly.</p>
http://stackoverflow.com/questions/638700/how-scaleable-really-is-a-web-services-based-architecture/638747#6387471Answer by slim for How scaleable really is a web-services based architecture?slim2009-03-12T14:04:45Z2009-03-12T14:04:45Z<p>Web services don't give you scalability for free. In fact it's pretty easy to build a service that <em>won't</em> scale.</p>
<p>What they do give you is opportunities to build in scalability. And, by having well defined service interfaces, you can swap out a quick-and-dirty non-scalable implementation of a service with a better implementation when you need it.</p>
<p>The important thing is not to forget the 'A' in 'SOA'. You can make a huge mess by just wantonly creating a bunch of services. Make sure you have an architecture.</p>
<p>One huge step towards scalability is moving away from the basic, synchronous, query/response type services (such as SOAP RPC), towards asynchronous services. See Hohpe and Woolf's 'Enterprise Integration Patterns'</p>
http://stackoverflow.com/questions/638222/how-can-i-get-started-with-functional-programming/638688#6386882Answer by slim for How can I get started with functional programming?slim2009-03-12T13:48:17Z2009-03-12T13:48:17Z<p>The free online version of <a href="http://book.realworldhaskell.org/" rel="nofollow">Real World Haskell</a> is a good, cheap way to get started.</p>
<p>Once you've done a few chapters, you'll be in a position to decide whether FP is for you, and whether you want to continue with Haskell or move on to some other language. You may even go on to buy the dead tree version (as I did).</p>
<p>The paradigms you learn from this book, especially the opening chapters, apply equally well to other functional languages. (I like to think my Javascript and Groovy benefited from my studying Haskell).</p>
http://stackoverflow.com/questions/23860/what-is-the-best-way-to-learn-recursion/635187#6351871Answer by slim for What is the best way to learn recursion?slim2009-03-11T15:56:42Z2009-03-11T16:10:18Z<p>I think it's important to begin with the recognition that recursion is easy.</p>
<p>Far too many books and courses step into the subject by making it scary. There is a headline:</p>
<p><strong>RECURSION</strong></p>
<p>... and then there's a couple of paragraphs telling you to concentrate. In a school/college setting, perhaps there's mutterings from the year above "just wait til you reach recursion".</p>
<p>The fact is, there's nothing to fear. Approach it as such.</p>
<p>All recursion boils down to:</p>
<ul>
<li>this job is easy for the simplest case</li>
<li>if I (a function) don't get handed the simplest case, I can break off a piece that is, handle that, then ask another instance of myself to handle what's left in the same way</li>
<li>if I keep doing that, I'll end up with nothing more to handle.</li>
</ul>
<p>For example, sorting a list is a big job. But it's very simple if you say:</p>
<ul>
<li>a empty list, sorted, is an empty list</li>
<li>for any other list, take the first item, return the sorted list of items less than that item, then that item, then the sorted list of items greater than that item</li>
</ul>
<p>The nice thing is that we can casually toss in the word "sorted" into the 'for any other list' step, because we already know how to sort. Even though we are that implementation.</p>
<p>In Haskell:</p>
<pre><code>qsort [] = []
qsort (x:xs) = qsort (filter (< x) xs)
++ [x]
++ qsort (filter (>= x) xs)
</code></pre>
http://stackoverflow.com/questions/1099064/do-beautiful-user-friendly-java-applets-exist/1592385#1592385Comment by slim on Do beautiful, user-friendly Java applets exist?slim2009-11-27T15:39:50Z2009-11-27T15:39:50ZI think the Chrome demos you're thinking of are in Processing.js
Processing.js is a port of the 2D context from Processing.
Processing can output applets. Processing.js runs in a Javascript interpreter.http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238208#238208Comment by slim on What is the best UI you've ever used?slim2009-11-10T14:05:43Z2009-11-10T14:05:43ZThat's great news! It looks like it came out early '09.http://stackoverflow.com/questions/1523602/the-behavior-of-to-repeat-the-last-t-command-bothers-me-can-you-help-me-make/1533907#1533907Comment by slim on The behavior of ; to repeat the last t command bothers me. Can you help me make it better?slim2009-10-10T09:47:29Z2009-10-10T09:47:29Zthe downside is that when you move to a vim with the standard ; mapping, it'll drive you mad.http://stackoverflow.com/questions/1547476/easiest-way-to-split-a-string-on-newlines-in-net/1547484#1547484Comment by slim on Easiest way to split a string on newlines in .net?slim2009-10-10T09:45:28Z2009-10-10T09:45:28ZDon't go with this, due to Guffa's reasoning.http://stackoverflow.com/questions/1547476/easiest-way-to-split-a-string-on-newlines-in-net/1547498#1547498Comment by slim on Easiest way to split a string on newlines in .net?slim2009-10-10T09:43:53Z2009-10-10T09:43:53ZYou probably want to preserve genuine empty lines : \r\n\r\nhttp://stackoverflow.com/questions/1547476/easiest-way-to-split-a-string-on-newlines-in-net/1547483#1547483Comment by slim on Easiest way to split a string on newlines in .net?slim2009-10-10T09:42:33Z2009-10-10T09:42:33ZMove the clunk into your own method - possibly in your own StringUtils class.http://stackoverflow.com/questions/1501723/a-line-of-java-code-and-what-it-does/1501748#1501748Comment by slim on A line of java code and what it does?slim2009-10-01T11:52:05Z2009-10-01T11:52:05ZYes, the best thing here would be if( n != 0 || ! n.equals(""))http://stackoverflow.com/questions/1502910/how-can-i-count-runs-in-r/1503005#1503005Comment by slim on How can I count runs in R?slim2009-10-01T11:48:24Z2009-10-01T11:48:24ZYou're probably right though. If the original questioner confirms they only want R questions I'll delete this answer. http://stackoverflow.com/questions/1503342/what-is-foobar/1503362#1503362Comment by slim on what is foobar?slim2009-10-01T11:45:35Z2009-10-01T11:45:35Z@tharkun foo, bar and baz are useful for making examples more explicitly generic. If I give an example using a User class, the reader might think my example only applies to the domain of user management. If I use a Foo class, it shows that my example is more generally applicable.http://stackoverflow.com/questions/1502910/how-can-i-count-runs-in-rComment by slim on How can I count runs in R?slim2009-10-01T11:40:31Z2009-10-01T11:40:31ZDo you want answers in R?
If so, it's probably wise to start the question with "In R ..." rather than just having an R tag.
http://stackoverflow.com/questions/1502910/how-can-i-count-runs-in-r/1503005#1503005Comment by slim on How can I count runs in R?slim2009-10-01T11:37:30Z2009-10-01T11:37:30Z<mutter> Who mentioned R? Oh, look it's tucked away in a tag.http://stackoverflow.com/questions/238173/worst-java-practice-found-in-your-experience/238333#238333Comment by slim on Worst Java practice found in your experience?slim2009-10-01T10:19:59Z2009-10-01T10:19:59ZJava quite often requires you to catch an exception that can never happen. For example, an IOException reading from a ByteArrayInputStream - assuming you are in control of the creation of said ByteArrayInputStream.http://stackoverflow.com/questions/1487124/translate-goto-statements-to-if-switch-while-break-etc/1487140#1487140Comment by slim on Translate goto statements to if, switch, while, break, etc.slim2009-09-30T15:58:39Z2009-09-30T15:58:39Z@Guard Java has no goto, so by definition there is no "legal use of goto"!
In C, a label has function scope, so you can't goto another function.
However, I, like you, was thinking of the worst case where a goto sends you to different function. BBC BASIC allowed you to do this, as I'm sure many other languages do.
http://stackoverflow.com/questions/1487124/translate-goto-statements-to-if-switch-while-break-etc/1487140#1487140Comment by slim on Translate goto statements to if, switch, while, break, etc.slim2009-09-28T15:29:39Z2009-09-28T15:29:39Z+1 You read the question the same way I did, and I more or less agree with your answer. There may be specific uses of GOTO that can be automatically detected and replaced - but to do so in the general case might not be possible.http://stackoverflow.com/questions/1486996/java-in-bash-at-university-fails-with-noclassdeffounderror/1487016#1487016Comment by slim on Java in bash at university fails with NoClassDefFoundErrorslim2009-09-28T13:37:48Z2009-09-28T13:37:48ZOoops. How clumsy. Fixing.