RSS feed
Subscribe to the blog's RSS feed here.JCranky’s Twitter
Tweets by jcranky- agile
- akka
- arduino
- book
- caelum
- case
- casual class
- class
- clone
- cloud
- cloud computing
- coffee
- collections
- css
- date
- digital tv
- dojo
- ejb
- event
- foreach
- function
- functional programming
- ginga
- globalcode
- good practices
- infoq
- j2ee
- java
- java posse
- javascript
- js
- jsf
- junit
- just java
- jxta
- language
- last
- list
- lojinha
- london
- match
- maven
- mercurial
- music
- mvn
- netbeans
- p2p
- pair programming
- pattern matching
- peer-to-peer
- podcast
- programming
- regex
- REST
- robotics
- roo
- s-99
- sbt
- scala
- scala 99 problems
- scalax
- simple build tool
- spring
- spring roo
- springsource
- sun
- tdc
- tdd
- test
- thedevelopersconference
- typesafe
- value
- web development
- xml
- xp
January 2026 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Tag Archives: scala
A Scala script for processing files
This time, we will approach Scala through a different angle: that of a script file. If you see Scala solely as a ‘normal’ programming language, this should demonstrate that Scala offers more possibilities than you knew. The code I’ll show … Continue reading
Posted in scala
Tagged file, function, java io, pattern matching, recursive, regex, scala, script
4 Comments
Why I gave up Google App Engine for now
Google App Engine is nice. Cloud Computing is nice. But I’m giving up GAE for now, and bellow is why. I (re)started to play around with Google App Engine about one or two weeks ago. Of course I read a … Continue reading
Simple Build Tool for Scala
Recently I started looking at some alternatives for increasing productivity when writing code and building systems in Scala. One option that is getting some attention is SBT – Simple Build Tool. In some ways, it is similar to Spring Roo. … Continue reading
DSL in Scala for Date Calculation
I’ve been attending a course about Java Architecture in Caelum these last weeks. In one of those Saturdays, the instructor mentioned a little bit about DSLs. Better yet, he gave us an example using Scala =) Now, the example was … Continue reading
Scala Pattern Matching: the reason to fall in love with Scala
Scala has a lot of interesting features and, among them, one of the most interesting ones is Pattern Matching. If you still need a reason to try Scala this is the one. Actually, I might be exaggerating a little bit, … Continue reading
XML Handling in Scala
It is finally time to get back to Scala. In this post, lets cover briefly some of the support Scala has for handling XML data. This is impressive stuff, and more so if you are used to how complex this … Continue reading
Quick introduction to functions in Scala
So, as you might already know, Scala is a functional language. This means that it is heavily based on functions (Scala actually mixes Object Orientation and Functional Programming). Lets take a look on how to use functions in Scala. It … Continue reading
Posted in scala
Tagged function, functional programming, object orientation, operator, operator overload, scala, scaladoc
Leave a comment
Base Scala classes
And I’m back! Last month was really busy. Among other things, I had to travel, both for business and a small vacation. But now I’m back. Uhu! Thank you all for reading! Now, back on topic. This time, I’ll cover … Continue reading