User Alexandru Nedelcu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T19:28:59Zhttp://stackoverflow.com/feeds/user/3280http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36347/what-are-the-differences-between-generic-types-in-c-and-java/36364#363644Answer by Alexandru Nedelcu for What are the differences between "generic" types in C++ and Java?Alexandru Nedelcu2008-08-30T21:34:05Z2009-06-15T17:13:27Z<p>There is a big difference between them. In C++ you don't have to specify a class or an interface for the generic type. That's why you can create truly generic functions and classes, with the caveat of a looser typing.</p>
<pre><code><typename T> T sum(T a, T b) { return a + b; }
</code></pre>
<p>The method above adds two objects of the same type, and can be used for any type T that has the "+" operator available.</p>
<p>In Java you have to specify a type if you want to call methods on the objects passed, something like:</p>
<pre><code><T extends Something> T sum(T a, T b) { return a.add ( b ); }
</code></pre>
<p>In C++ generic functions/classes can only be defined in headers, since the compiler generates different functions for different types (that it's invoked with). So the compilation is slower. In Java the compilation doesn't have a major penalty, but Java uses a technique called "erasure" where the generic type is erased at runtime, so at runtime Java is actually calling ...</p>
<pre><code>Something sum(Something a, Something b) { return a.add ( b ); }
</code></pre>
<p>So generic programming in Java is not really useful, it's only a little syntactic sugar to help with the new foreach construct.</p>
http://stackoverflow.com/questions/987746/current-state-of-mono-on-linux/987832#98783210Answer by Alexandru Nedelcu for Current state of Mono on Linux?Alexandru Nedelcu2009-06-12T17:04:26Z2009-06-12T17:04:26Z<p>A high-level status: <a href="http://mono-project.com/Plans" rel="nofollow">mono-project.com/Plans</a></p>
<p>API status: <a href="http://go-mono.com/status/" rel="nofollow">go-mono.com/status</a></p>
<p>In case you want to migrate an existing app to Linux: <a href="http://www.mono-project.com/MoMA" rel="nofollow">MoMA</a></p>
<p>I also think it would be a better idea to ...</p>
<ul>
<li>think about certain use-cases you might have for Mono ... your current question is too general</li>
<li>ask concrete questions on the mailing lists, since many smart and knowledgeable people that are active there probably don't read StackOverflow: <a href="http://mono-project.com/Mailing%5FLists" rel="nofollow">mono-project.com/Mailing_Lists</a></li>
</ul>
<p>A summary from my short experience:</p>
<ul>
<li>Asp.net 2.0 is fully implemented, and I could get Asp.net MVC to work</li>
<li>Windows Forms is supported but will never be high quality because it's not a priority. Save yourself the pain and just create a Gtk# interface for your Linux port</li>
<li>the base libraries are implemented, and Linq DB is almost there, but you won't have any luck with Windows specific APIs, like WPF and WCF, although Silverlight is implemented in <a href="http://mono-project.com/Moonlight" rel="nofollow">Moonlight</a></li>
<li>Mono is having success in recent games that need a powerful scripting environment. See companies using Mono: <a href="http://www.mono-project.com/Companies%5FUsing%5FMono" rel="nofollow">mono-project.com/Companies_Using_Mono</a></li>
</ul>
<p>For news and stuff, follow Miguel's blog at <a href="http://tirania.org/blog/" rel="nofollow">tirania.org/blog/</a></p>
http://stackoverflow.com/questions/980206/when-why-if-ever-should-i-think-about-doing-generic-programming-meta-programm/980246#9802463Answer by Alexandru Nedelcu for When/Why ( if ever ) should i think about doing Generic Programming/Meta ProgrammingAlexandru Nedelcu2009-06-11T09:46:16Z2009-06-11T09:46:16Z<p>For advanced templates and techniques, I recommend: <a href="http://rads.stackoverflow.com/amzn/click/0201704315" rel="nofollow">Modern C++ Design</a>, by Andrei Alexandrescu</p>
<p>C++ is a rigid language, with practically no runtime introspection capabilities. A lot of the troubles you'll encounter can be dealt with templates. Also, the templating language is turing-complete, making it possible to generate complex data-structures and pre-calculate values at compile-time, among other things.
For many scenarios, it may be more trouble than it's worth it though.</p>
http://stackoverflow.com/questions/974952/python-splitting-an-integer-into-digits/975039#9750395Answer by Alexandru Nedelcu for Python: splitting an integer into digitsAlexandru Nedelcu2009-06-10T11:30:36Z2009-06-10T11:30:36Z<pre><code>while number:
digit = number % 10
# do whatever with digit
number /= 10
</code></pre>
<p>On each iteration of the loop, it removes the last digit from number, assigning it to $digit.
It's in reverse, starts from the last digit, finishes with the first</p>
http://stackoverflow.com/questions/974850/size-of-a-dictionary/974934#9749340Answer by Alexandru Nedelcu for Size of a dictionaryAlexandru Nedelcu2009-06-10T11:07:23Z2009-06-10T11:07:23Z<p>One way to do it ... initialize your tree with an arbitrary number of elements, measure the memory size consumed by the process, add 1000 new elements, measure the memory size again, subtract and divide.</p>
http://stackoverflow.com/questions/974583/is-java-100-object-oriented/974624#9746248Answer by Alexandru Nedelcu for Is java 100% object oriented ?Alexandru Nedelcu2009-06-10T09:49:16Z2009-06-10T09:49:16Z<p>When Java first appeared (versions 1.x) the JVM was really, really slow.
Not implementing primitives as first-class objects was a compromise they had taken for speed purposes, although I think in the long run it was a really bad decision.</p>
<p>"Object oriented" also means lots of things for lots of people.
You can have class-based OO (C++, Java, C#), or you can have prototype-based OO (Javascript, Lua).</p>
<p>100% object oriented doesn't mean much, really. Ruby also has problems that you'll encounter from time to time.</p>
<p>What bothers me about Java is that it doesn't provide the means to abstract ideas efficiently, to extend the language where it has problems. And whenever this issue was raised (see Guy Steele's "Growing a Language") the "oh noes, but what about Joe Sixpack?" argument is given. Even if you design a language that prevents shooting yourself in the foot, there's a difference between accidental complexity and real complexity (see <a href="http://www.virtualschool.edu/mon/SoftwareEngineering/BrooksNoSilverBullet.html" rel="nofollow">No Silver Bullet</a>) and mediocre developers will always find creative ways to shoot themselves.</p>
<p>For example Perl 5 is not object-oriented, but it is extensible enough that it allows <a href="http://www.iinteractive.com/moose/" rel="nofollow">Moose</a>, an object system that allows very advanced techniques for dealing with the complexity of OO. And <a href="http://search.cpan.org/~flora/MooseX-Declare-0.22/lib/MooseX/Declare.pm" rel="nofollow">syntactic sugar</a> is no problem.</p>
http://stackoverflow.com/questions/964535/does-anyone-here-use-struts-1-for-a-new-project/964633#9646335Answer by Alexandru Nedelcu for Does anyone here use Struts 1 for a new project?Alexandru Nedelcu2009-06-08T12:19:37Z2009-06-08T12:19:37Z<p>I've lived a similarly painful scenario. To win an argument you first have to convince them.</p>
<p>Saying that "Struts 1 sucks" won't cut it, since they can always say that "it's tested, and it works for the other projects".</p>
<p>What I did is this:</p>
<p>1) I created a prototype in a better framework that I found suited for the job (in my case was Rife) ... in 3 days.</p>
<p>2) I created the same prototype in Struts 1.x ... I managed to do it in 5 days, but it was a lot more painful, as anticipated.</p>
<p>3) I then created a presentation with pretty pictures, code metrics, and things that I get for free from a framework like Rife, that I don't get from Struts 1.</p>
<p>In the end their choice was Struts 2 with Hibernate. Better, but still, it was in the end a bad decision. We delivered our application in 18 months when we could've done it in 3. The technological choice isn't the only one to blame here ... we had all sorts of internal procedures we had to follow, and we also had to rewrite large portions of code because of the shifting policies of our management, not to mention integration with all sorts of deprecated internal systems.</p>
<p>The only conclusion I came to was that enterprise software done in big shops really suck the life out of software developers.</p>
http://stackoverflow.com/questions/964453/simulate-enums-in-tsql/964536#9645361Answer by Alexandru Nedelcu for Simulate enums in TSQL?Alexandru Nedelcu2009-06-08T11:54:51Z2009-06-08T12:01:44Z<p>In PostgreSql I just use VARCHARs with constraints attached ...</p>
<pre><code>CREATE TABLE movie_clip (
type VARCHAR(40) NULL CHECK(type IN ('trailer', 'commercial')),
);
#=> insert into movie_clip (type) values ('trailer');
INSERT 0 1
#=> insert into movie_clip (type) values ('invalid value');
ERROR: new row for relation "movie_clip" violates check constraint "movie_clip_type_check"
#=> \d movie_clip
....
"movie_clip_type_check" CHECK (type::text = ANY (ARRAY['trailer'::character varying, 'commercial'::character varying]::text[]))
</code></pre>
<p>I don't like using numeric types for simulating ENUMs, because they are not descriptive enough. With the above schema I can see right away what possible values it receives, and I also get the meaning of those values right away. I also get type-safety, since I can't insert invalid values in that column.</p>
<p>For more details on constraints for Postgres, see here:
<a href="http://www.postgresql.org/docs/8.1/static/ddl-constraints.html" rel="nofollow">http://www.postgresql.org/docs/8.1/static/ddl-constraints.html</a></p>
http://stackoverflow.com/questions/964479/email-move-files-recursively/964515#9645152Answer by Alexandru Nedelcu for Email & Move Files RecursivelyAlexandru Nedelcu2009-06-08T11:47:24Z2009-06-08T11:47:24Z<p>That's because a file handle is already opened for the file you're trying to move.</p>
<p>The Net.Mail.Attachment implements IDisposable, so to release the file lock you should call $att.Dispose()</p>
http://stackoverflow.com/questions/964396/absolute-path-confused-ubuntu/964462#9644622Answer by Alexandru Nedelcu for absolute path... confused (ubuntu)Alexandru Nedelcu2009-06-08T11:31:29Z2009-06-08T11:37:11Z<p>The path is relative to the current working directory, not to the directory your application is under.</p>
<p>A simple solution would be to have a SH script that changes the working directory to your application's directory, and then executes your app, like so:</p>
<pre><code>$!/bin/sh
cd `dirname $0` # changes the working dir to the script's dir
./application-name # executes your application
# no need changing back to your previous working directory
# the chdir persists only until the end of the script
</code></pre>
<p>It's not uncommon for applications to have initialization scripts. </p>
<p>You could also do this inside your main C/C++ application. Since the path of the executable is passed in the main method's argv[0], you could do the same.</p>
<p>But I would advise against it, because when you're redistributing your application on Linux, data files are usually placed in a different directory (usually /var/lib) than your executables (usually /usr/bin).</p>
<p>So it's either an initialization script, or passing the path of your data directory in an environment variable, executing it like so ...</p>
<pre><code>MY_APP_DATA_PATH=/var/lib/my-app /path/to/executable
</code></pre>
http://stackoverflow.com/questions/959709/robust-fault-tolerant-mysql-replication/963665#9636651Answer by Alexandru Nedelcu for Robust fault tolerant MySQL replicationAlexandru Nedelcu2009-06-08T06:37:18Z2009-06-08T06:37:18Z<p>What error are you getting? You also haven't described what replication scheme or Mysql version you're using. The errors you're getting are also important.</p>
<p>Replication usually stops when there's a primary/unique key conflict in a Master-Master replication. Other than that on a typical Master-Slave replication setup, networking issues shouldn't cause problems.</p>
<p>Try using Mysql 5.1 or newer, since replication in 5.0 is statement-based and causes problems in Master-Master setups, or when you're using stored-procedures.</p>
<p>(Also, stay away from Mysql Cluster ... noticed the advice on another comment).</p>
http://stackoverflow.com/questions/38370/php-session-variable-arent-usable-when-site-is-redirected/38382#383820Answer by Alexandru Nedelcu for PHP : session variable aren't usable when site is redirectedAlexandru Nedelcu2008-09-01T20:26:20Z2008-09-01T20:26:20Z<p>What do you mean?
Are you saying that when you go from www.mysmallwebsite.com to www.myIsv.com/myWebSite/ then the PHP session is lost?</p>
<p>PHP recognizes the session with an ID (alpha-numeric hash generated on the server). The ID is passed from request to request using a cookie called PHPSESSID or something like that (you can view the cookies a websites sets with the help of your browser ... on Firefox you have Firebug + FireCookie and the wonderful Web Developer Toolbar ... with which you can view the list of cookies without a sweat).</p>
<p>So ... PHP is passing the session ID through the PHPSESSID cookie. But you can pass the session ID as a plain GET request parameters.</p>
<p>So when you place the html link to the ugly domain name, assuming that it is the same PHP server (with the same sessions initialized), you can put it like this ...</p>
<pre><code>www.myIsv.com/myWebSite/?PHPSESSID=<?=session_id()?>
</code></pre>
<p>I haven't worked with PHP for a while, but I think this will work. </p>
http://stackoverflow.com/questions/38338/why-is-lua-considered-a-game-language/38368#3836812Answer by Alexandru Nedelcu for Why is Lua considered a game language?Alexandru Nedelcu2008-09-01T20:17:12Z2008-09-01T20:17:12Z<p>Lua is a great scripting language: it is extensible, it is simple to learn, and provides the basic primitives such that programmers can use OOP or functional programming (in the same league as Scheme and Javascript). It is one of the few scripting languages with support for coroutines, which help a lot when doing multi-threading programming.</p>
<p>In my tests (and I am an addict when it comes to programming languages) ... Lua is the fastest dynamic language I ever worked with. It is also very small, and can be embedded easily in a C/C++ application.</p>
<p>I think that Lua has all the qualities of a scripting language used for coding game logic. And game shops experiment with all kinds of technologies, from Lisp to Haskel, and Lua just happens to be a good compromise between flexibility and speed.</p>
<p>Lua is also not appropriate for web applications for a number of reasons ... lack of libraries, and (most annoying for me) a total lack of unicode support (although Ruby has this same flaw, and few people are complaining ... but still, it matters).</p>
http://stackoverflow.com/questions/37089/how-can-an-app-utilize-multiple-cores-or-cpus-in-net-or-java/37096#370960Answer by Alexandru Nedelcu for How can an app utilize multiple cores or CPUs in .Net or Java?Alexandru Nedelcu2008-08-31T20:59:04Z2008-08-31T20:59:04Z<p>The operating system takes care of multi-threading when the virtual machine is using native threads (as opposed to green-threads), and you can't specify low level details, like choosing a processor for a certain thread. It is better that way because you usually have many more threads than you have processors available, so the operating system needs to do time-slicing to give all threads a chance to run.</p>
<p>That being said, you can set threads priorities if you have a critical task, and a threading API usually provides this possibility. See the Java API for example: <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#setPriority" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#setPriority</a>(int)</p>
<p>PS: there's something broken in the parsing engine ... I had to add the above link as plain text</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/36937#3693729Answer by Alexandru Nedelcu for What's the best way to implement an 'enum' in Python?Alexandru Nedelcu2008-08-31T16:06:14Z2008-08-31T16:06:14Z<p>Python doesn't have an equivalent but you can implement your own.</p>
<p>Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ...</p>
<pre><code>class Animal:
DOG=1
CAT=2
x = Animal.DOG
</code></pre>
http://stackoverflow.com/questions/14569/best-license-for-selling-open-source-software/36349#363490Answer by Alexandru Nedelcu for Best License for Selling Open Source SoftwareAlexandru Nedelcu2008-08-30T21:19:47Z2008-08-30T21:19:47Z<p>You cannot restrict commercial usage of the application with a valid open-source license (OSI-approved).</p>
<p>Dual-licensing works for developer-tools/code libraries that have to be linked/distributed with commercial software. Trolltech and MySql are good examples.</p>
<p>If you want to make money out of open-source software, your open-source product has to be a complement to something that can be sold. For example you could have a core with basic functionality, and for extended features you could sell a commercial license. This worked for PyDev (an Eclipse plugin for Python development). And if the product is complex and enterpriseish, you could sell support.</p>
http://stackoverflow.com/questions/28178/8086-assembler-tutorial/36345#363450Answer by Alexandru Nedelcu for 8086 Assembler TutorialAlexandru Nedelcu2008-08-30T21:09:59Z2008-08-30T21:09:59Z<p>Free book: <a href="http://savannah.nongnu.org/projects/pgubook/" rel="nofollow">Programming from the Ground Up</a></p>
http://stackoverflow.com/questions/36294/f-language-hints-for-newbie/36337#363371Answer by Alexandru Nedelcu for F# language - hints for newbieAlexandru Nedelcu2008-08-30T20:54:27Z2008-08-30T20:54:27Z<p>Check out the <a href="http://msdn.microsoft.com/en-gb/fsharp/default.aspx" rel="nofollow">F# Developer Center</a>. There is also <a href="http://cs.hubfs.net/forums/default.aspx" rel="nofollow">hubFS</a>, a forum dedicated to F#.</p>
http://stackoverflow.com/questions/33744/is-scala-the-next-big-thing/35448#354489Answer by Alexandru Nedelcu for Is Scala the next big thing?Alexandru Nedelcu2008-08-29T23:01:44Z2008-08-29T23:01:44Z<p>I don't think it really matters if a language is the next big thing or not. And because of the Internet heterogeneous groups can form and coexist.</p>
<p>If you enjoy Scala, that's all that you need to know. </p>
<p>I think Scala makes a very interesting combination between functional programming and OOP, and having access to JVM libraries is a big bonus. But still, I don't like it because I found it too complicated to learn the edge-cases. F#/Ocaml has a better design if you want functional programming.</p>
http://stackoverflow.com/questions/35420/mysql-software-any-suggestions-to-oversee-my-mysql-replication-server/35438#354382Answer by Alexandru Nedelcu for mysql software: any suggestions to oversee my mysql replication server?Alexandru Nedelcu2008-08-29T22:49:44Z2008-08-29T22:49:44Z<p>To monitor the servers we use the free <a href="http://www.maatkit.org/tools.html" rel="nofollow">tools from Maatkit</a> ... simple, yet efficient.</p>
<p>The binary replication is available in 5.1, so I guess you've got some balls. We still use 5.0 and it works OK, but of course we had our share of issues with it.</p>
<p>We use a Master-Master replication with a MySql Proxy as a load-balancer in front, and to prevent it from having errors:</p>
<ul>
<li>we removed all unique indexes</li>
<li>for the few cases where we really needed unique constraints we made sure we used REPLACE instead of INSERT (MySql Proxy can be used to guard for proper usage ... it can even rewrite your queries)</li>
<li>scheduled scripts doing intensive reports are always accessing the same server (not the load-balancer) ... so that dangerous operations are replicated safely</li>
</ul>
<p>Yeah, I know it sounds simple and stupid, but it solved 95% of all the problems we had.</p>
http://stackoverflow.com/questions/35286/dos-filename-escaping-for-use-with-nix-commands/35389#353892Answer by Alexandru Nedelcu for DOS filename escaping for use with *nix commands Alexandru Nedelcu2008-08-29T22:00:20Z2008-08-29T22:00:20Z<p>You could try as alternative (from the command prompt) ...</p>
<pre><code>> cygpath -m c:\some\path
c:/some/path
</code></pre>
<p>As you can guess, it converts backslashes to slashes.</p>
http://stackoverflow.com/questions/30610/how-important-is-the-choice-of-language-to-the-success-of-a-project/30650#306500Answer by Alexandru Nedelcu for How important is the choice of language to the success of a project?Alexandru Nedelcu2008-08-27T17:06:25Z2008-08-27T17:06:25Z<p>You should pick the language that makes you and your peers happy. Sometimes it is the language you are most familiar with.</p>
<p>For my last project I chose Python on a LAMP stack. My other option was C#. I'm happy with Python because it is dynamic, which implies that you make fewer assumptions about your code, and for my project raw performance doesn't matter (otherwise I would have chosen a compiled language).</p>
<p>Also, a programming language affects the way cognitive processes work, and thus every language has a specific culture that can affect the architecture of your application, so one way to solve this dilemma is to take a look at that language's success stories and see if your application would make a good fit ... for example Ruby (with Rails) is known for being excellent for database-driven websites, but Twitter is an indication that it has scaling problems if you would try to build a messaging platform. YMMV.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/36937#36937Comment by Alexandru Nedelcu on What's the best way to implement an 'enum' in Python?Alexandru Nedelcu2009-07-21T08:21:36Z2009-07-21T08:21:36ZPython is dynamic by default. There's no valid reason to enforce compile-time safety in a language like Python, especially when there is none.
And another thing ... a good pattern is only good in the context in which it was created. A good pattern can also be superseded or completely useless, depending on the tools you're using.http://stackoverflow.com/questions/992437/adobe-flex-vs-silverlight/993769#993769Comment by Alexandru Nedelcu on Adobe Flex vs SilverlightAlexandru Nedelcu2009-06-15T05:21:33Z2009-06-15T05:21:33Z"Even if they did, it's entirely open-source" ... not really. The development process is closed to outside contributions, and Flex is really just a compiler that produces SWF files. The most important part of this equation, Flash, is not open source, and it will probably never be.
"Silverlight doesn't offer anything to the users that Flash doesn't." - There are many things Silverlight offers. Multiple languages, plugable codecs API, .NET libraries reuse and components are designer-friendly (vs Flex).http://stackoverflow.com/questions/992437/adobe-flex-vs-silverlight/992961#992961Comment by Alexandru Nedelcu on Adobe Flex vs SilverlightAlexandru Nedelcu2009-06-15T05:07:12Z2009-06-15T05:07:12Z"Flex also has a better framework than Silverlight" ... having worked with both, I do not agree with this.
When you're asserting such a statement, please give examples.http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/979253#979253Comment by Alexandru Nedelcu on What features would you add, remove or change in F#?Alexandru Nedelcu2009-06-12T16:27:06Z2009-06-12T16:27:06ZF# being a ML derivative is also good, since a lot of ML libraries ca be ported to F# easily.http://stackoverflow.com/questions/161125/whats-wrong-with-f/161154#161154Comment by Alexandru Nedelcu on What's wrong with F#?Alexandru Nedelcu2009-06-10T21:34:00Z2009-06-10T21:34:00Z"Data processing" can also refer to data mining, and this involves heavy algorithms that can better be expressed in a more expressive language.
I think you're thinking more about interface-building, where the interactions between objects is more important.http://stackoverflow.com/questions/161125/whats-wrong-with-f/161144#161144Comment by Alexandru Nedelcu on What's wrong with F#?Alexandru Nedelcu2009-06-10T21:30:24Z2009-06-10T21:30:24ZI don't mind the impurity when compared to Haskell ... but where I think Haskell is ahead in the functional department is its laziness. Cool algorithms can be expressed clearer and more concise in Haskell because of its lazy nature.http://stackoverflow.com/questions/161125/whats-wrong-with-f/161178#161178Comment by Alexandru Nedelcu on What's wrong with F#?Alexandru Nedelcu2009-06-10T21:27:10Z2009-06-10T21:27:10ZIt's more difficult to work with OCaml, because the standard libraries are lacking basic functionality you'd expect (we've been spoiled by Python, .NET and the like) and because you have to be ready to deal with stuff like Unicode issues, and the lack of polymorphism for standard operators. These issues are not major, but it makes migration more painful than it should be, so F# is a better choice for someone just starting.http://stackoverflow.com/questions/974952/python-splitting-an-integer-into-digits/975039#975039Comment by Alexandru Nedelcu on Python: splitting an integer into digitsAlexandru Nedelcu2009-06-10T19:10:41Z2009-06-10T19:10:41Z@nosklo: it's not php, it's basic arithmetic you're supposed to learn in the fifth grade. I don't see how a math or a computer science concept can be "unpythonic". Jesus :)
http://stackoverflow.com/questions/974952/python-splitting-an-integer-into-digits/975039#975039Comment by Alexandru Nedelcu on Python: splitting an integer into digitsAlexandru Nedelcu2009-06-10T11:36:17Z2009-06-10T11:36:17ZI added an explanation. If you don't see how it works, take a piece of paper and go through the process step-by-step for a number of choice.http://stackoverflow.com/questions/974583/is-java-100-object-oriented/974637#974637Comment by Alexandru Nedelcu on Is java 100% object oriented ?Alexandru Nedelcu2009-06-10T10:04:39Z2009-06-10T10:04:39ZIn ruby when you're declaring a method or a variable outside of a class, it is implicitly added to Kernel, the main object.
Wrapping all methods inside classes doesn't make it more OO.http://stackoverflow.com/questions/969183/what-is-optimize-c-compiler-key-intended-for/969261#969261Comment by Alexandru Nedelcu on What is /optimize C# compiler key intended for?Alexandru Nedelcu2009-06-09T12:09:48Z2009-06-09T12:09:48Z@Yacoder: compiled at runtime is different from AOT compiling. The IL bytecode is the intermediate language, thus the CLR is a classic VM that abstracts away the underlying hardware.
I wished people wouldn't get so caught up in semantics, specially when they are wrong.http://stackoverflow.com/questions/964396/absolute-path-confused-ubuntu/964462#964462Comment by Alexandru Nedelcu on absolute path... confused (ubuntu)Alexandru Nedelcu2009-06-08T11:39:52Z2009-06-08T11:39:52ZYeah, sorry. Fixed it.http://stackoverflow.com/questions/327955/does-functional-programming-replace-gof-design-patterns/328146#328146Comment by Alexandru Nedelcu on Does Functional Programming Replace GoF Design Patterns?Alexandru Nedelcu2008-11-30T16:25:51Z2008-11-30T16:25:51ZThe monad is a mathematical concept, and you're stretching it with your classification. Sure, you can view functions, monoids, monads, matrices or other mathematical concepts as design patterns, but those are more like algorithms and data structures ... fundamental concepts, language independent.