This site has been great for me to learn what's out there for programming tools and libraries. I'm wondering what are some promising tools/libraries/algorithms -- in any areas of programming or software engineering -- that are in alpha or beta right now that I should keep my eyes on when they get released.

Some ones that come to mind to me are MySQL 6.0, ChromeBug, Java 7, and NIST's competition for what will become SHA-3 (see also this).

link|improve this question
feedback

14 Answers

Well, .NET 4.0 contains three bits of significant interest to me:

The most significant aspect of C# 4.0 (from my point of view) is language support for the DLR; it will also make COM interoperability simpler, introduce generic variance and optional/named parameters. While I'm still mostly a language guy, the framework features of .NET 4.0 feel more important to me than the language improvements. I've been a big fan of Parallel Extensions (aka Parallel FX, including TPL and PLINQ - acronyms abound!) for quite a while.

link|improve this answer
+1 on parallel extensions and code contracts! – Jeffrey Cameron Feb 21 '09 at 16:37
Copy & paste from x97mdr's comment. – R. Martinho Fernandes Feb 21 '09 at 17:00
I am also eager to "get my hands on" generic variance and named parameters. Finally! – R. Martinho Fernandes Feb 21 '09 at 17:01
Code contracts == hells yeah! I've been trying to adopt Spec# at work for a while now. I'll be very glad when it's rolled into the standard framework. – Randolpho Feb 21 '09 at 17:01
These are indeed some greatly anticipated features of .NET 4.0. The DLR in particular ought to have a huge impact on the .NET world. MS may even win over a few python coders! (Minor point btw: I think you mean the TPL (en.wikipedia.org/wiki/Task_Parallel_Library#TPL) rather than PTL.) – Noldorin Feb 21 '09 at 17:33
show 3 more comments
feedback

For me its C++0X.

link|improve this answer
boo⁡⁡⁡⁡⁡⁡⁡⁡⁡⁡⁡⁡ – Longpoke Dec 26 '10 at 16:08
feedback

Waiting for Perl 6 for quite some time. Another interesting language is Newspeak. On a minor note, Scala IDE support.

link|improve this answer
1  
I hear that Duke Nukem Forever is written in Perl 6... – Jon Skeet Feb 21 '09 at 17:59
3  
If I could, I'd vote this up a million times. Newspeak is simply one of the most important programming languages since probably 20 years. – Jörg W Mittag Feb 21 '09 at 22:49
-1 for Perl 6, +1 for Newspeak... okay fine, +2 for newspeak – Longpoke Dec 26 '10 at 16:08
feedback

F# will bring functional programming a lot more attention.

link|improve this answer
I guess Scala would also do so on the Java side... seems people are moving towards it instead of the actual Java language due to the slowness of enhancements to the standard Java language. – jamiebarrow Nov 17 '10 at 5:18
feedback

ECMAScript 4.0 (ActionScript 4.0)

link|improve this answer
feedback

C# 4.0

link|improve this answer
feedback

Mono (x-platform, open source .NET framework)

link|improve this answer
What about Moonlight? – jamiebarrow Nov 17 '10 at 5:19
feedback

Haskell and the GHC compiler and runtime. The language is extremely powerful and very interesting, and the compiler is great. The runtime features things like parallel garbage collection; while the sun JVM and .NET also have this, I find it fairly impressive in GHC's case given that the runtime probably doesn't get anywhere near even tenth the man-hours that the JVM or .NET runtimes get.

link|improve this answer
feedback

I'm probably going to get flamed for this, but I don't think MySQL 6 will offer much of interest. They long ago pretty much abandoned the real idea of a relational DBMS (which is really an inference engine) and decided that a dumb data store full of inconsistent data was the way to go.

(I mean, really. Software that accepts February 29th as a valid date in non-leap-years is not a big surprise. February 30th is stretching the bounds of credulity. But February 0th? Who the heck wrote the validation routine for that one? I suppose we should be grateful that MySQL doesn't allow "ghhg" as an integer, insisting that we check that our integers are valid before we insert them.)

Now PostgreSQL has a lot of interesting stuff in it, particularly user-defined types, including support for arbitrary index schemes. (For example, the PostGIS extension uses "lossy" indexes, where they index a bounding box for complex geometric shapes.) Unfortunately, you still have to do a lot of work in C to define your own types.

And sad to say, we're still stuck with SQL, which makes doing relational work much harder than it has to be. That's akin to the only "scripting" language in the world being Perl, and nobody coming up with Python or Ruby. However, I'm quite encouraged by Microsoft's introduction of LINQ; we may now finally see some forward progress on relational languages since the "relational language winter" that came in over the course of the late 70s and 80s.

link|improve this answer
the only big thing in MySQL 6 (or 5.4 or whatever it's called now) that I know I'm looking fwd to is the Falcon storage engine. dev.mysql.com/tech-resources/articles/… – Jason S Jun 23 '09 at 14:20
I do have to admit that having different storage engines in MySQL is a great thing. Though I do find it a little bit annoying when you use a storage method that doesn't support transactions, execute "BEGIN TRANSACTION; ...; ROLLBACK TRANSACTION;" and MySQL replies with "OK", after committing what you've done. – Curt Sampson Jun 23 '09 at 15:23
I had a look at Falcon, and it doesn't seem to be anything special. The only feature I saw that isn't already widespread was possibly the cache page ejection algorithm, and even that may already be widely used in the commercial world. – Curt Sampson Jun 25 '09 at 6:58
feedback

I am waiting for Fluent NHibernate's first release. But, since it's open source I can get along with the SVN trunk.

link|improve this answer
Fluent nHibernate is sweet – JoshBerke Feb 21 '09 at 16:46
feedback

Silverlight 3.0

link|improve this answer
feedback

Windows Azure is a promising technology which will allow you to build ASP.NET applications (and others, but my interest is ASP.NET) which scale up simply by increasing the number of instances of your ASP.NET code which are allowed to execute at one time. I've already played around with it and scaling up is as easy as changing a number on a web form.

I look forward to getting rid of my dedicated web server, saving time & $$$, and having instantly available scalability should I ever need it.

link|improve this answer
feedback

php 6 java7 actionscript 4

link|improve this answer
If Java 7 ever actually comes out ;) Been waiting for that so long now.. – jamiebarrow Nov 17 '10 at 5:20
Php5.3.3 has Lot of Bugs first they need to be fixed and than PHP6 – Someone Nov 29 '10 at 18:39
feedback

As a developer that prefers the frontend stuff to the backend stuff, I'm looking forward to implementation of HTML5 and CSS3 in the latest browsers. IE9 has apparently actually been focused at trying to follow standards... weird huh.. :)

I'm also waiting to play with Visual Studio 2010 and its environment, but still stuck on VS2008 for a while due to being reliant on TFS2008.

I second also Scala and .NET Code Contracts. I have been waiting so long for Java 7 to come out I think I'd focus rather on learning the Scala 'variant'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.