Did you know? DZone has great portals for Python, Cloud, NoSQL, and HTML5!

Languages

  • submit to reddit

The Most Popular Language This Month Is....

The most popular language of this month? Well it depends which source you use. For example, I checked out the TIOBE index as well as the top language used in...

0 replies - 6951 views - 05/31/12 by James Sugrue in Articles

Agile Development With Clojure

If you've ever spent any time learning Rails then you probably read one of the editions of Agile Web Development with Rails, and if you're like me...

0 replies - 1846 views - 05/24/12 by Jay Fields in Articles

Processing JSON in Scala with Jerkson

The previous tutorial covered basic XML processing in Scala, but as I noted, XML is not the primary choice for data serialization these days. Instead, JSON...

0 replies - 1222 views - 05/23/12 by Jason Baldridge in Articles

Algorithm of the Week: Minimum and Maximum

Introduction To find the minimum value into an array of items itsn’t difficult. There are not many options to do that. The most natural approach is to...

0 replies - 5617 views - 05/21/12 by Stoimen Popov in Articles

Basic XML Processing With Scala

Pretty much everybody knows what XML is: it is a structured, machine-readable text format for representing information that can be easily checked for the...

0 replies - 2107 views - 05/18/12 by Jason Baldridge in Articles

Clojure: Conditionally Importing

I recently ran into a test that needed (org.joda.time.DateTime.) to always return the same time - so it could easily be asserted against. This situation is...

0 replies - 1703 views - 05/17/12 by Jay Fields in Articles

Starting Clojure

I’ve wanted to put together a long-form introductory Clojure screencast for some time.  I had an opportunity to do this in grand style yesterday in a live...

0 replies - 2371 views - 05/16/12 by Chas Emerick in Articles

5 Minute On Demand Video: Orchestrating Production Releases. Putting the Ops in DevOps.

VaraLogix Q has been purposely-built to automate business critical application deployment to any environment making it easy for you to: Provide end-to-end...

0 replies - 367 views - 05/16/12 by Brandon Nokes in Uncategorized

VaraLogix Q Product Demo - Application Deployment Automation & Configuration Management in One Solution

This brief on demand video provides an overview product demonstration of VaraLogix Q. Q provides Application Deployment Automation, Release Process Automation...

0 replies - 353 views - 05/16/12 by Brandon Nokes in Uncategorized

5 Critical Application Deployment Mistakes (You Don’t Want to Make)

View this for on demand video and learn how your Release Managers, Testers, Development, DevOps and IT Operations teams can avoid the top five critical...

0 replies - 355 views - 05/16/12 by Brandon Nokes in Uncategorized

Algorithm of the Week: Karatsuba Fast Multiplication

Introduction Typically multiplying two n-digit numbers require n2 multiplications. That is actually how we, humans, multiply numbers. Let’s take a look...

1 replies - 3386 views - 05/15/12 by Stoimen Popov in Articles

First Piece with Akka 2.0

Doing it with Java for now. I can see some good things in Scala, but I find the language feature rich and readability poor. The last, stupidest, most...

0 replies - 3721 views - 05/13/12 by Rob Williams in Articles

What's With All These Parentheses?

I’m fairly certain that every programmer will, at some point in his career, say something along the lines of: I don’t know,...

1 replies - 2515 views - 05/10/12 by Felix Dahlke in Articles

Scala: Counting Number of Inversions For an Unsorted Collection

The first programming questions of algo-class requires you to calculate the number of inversions it would take using merge sort to sort a collection in...

0 replies - 1557 views - 04/29/12 by Mark Needham in Articles

Implicit Conversions in Scala

Following on from the previous post on operator overloading I'm going to be looking at Implicit Conversions, and how we can combine them to with...

1 replies - 1702 views - 04/27/12 by Tom Jefferys in Articles