Is Sun in touch with Java developers?
The entire keynote was spent talking about how developers are soon going to be able to write applets that run on a desktop, in a web browser, and also on a phone. We have had this for years. Whose idea was this?
The really interesting stuff in Java land right now is Java 7 features and concurrent programming with Java, but apparently none of that was worth mentioning.
The worst part of it all is that during the demo, the applet repeatedly crashed, and crashed, and crashed. The first Java program that I ever saw was running was an applet running in a web browser, in 1995.
13 years to get applets right? Come on Sun.
Author: grant
Post Java One 08 Reflections on Programming Philosophy
Don’t be afraid to pursue jobs in which you are really interested.
You can’t teach passion.
Hire good people, there are no workarounds.
Only hire people who get obsessed.
Fortress: A Next-Generation Programming Language Brought to You by Sun Labs
“Fortress: A Next-Generation Programming Language Brought to You by Sun Labs” is the first session I attended at Java One 08. Being that this is my first time at Java One, I was pretty excited to see how both this session, and, the entire conference, would pan out.
Per her introduction, her background is big into parallelism, and like everyone else on they team, she is an old Lisper.
The focus of her talk was the top 10 ideas in Fortress. Apparently the original tag line for Fortress was that “Fortress will do for Fortran what Java did for C”. That makes sense since they were funded by the high performance computing people, but it isn’t the catchiest tag line.
Here is her top ten list for Fortress language features:
- 10. Contracts. Requires, Ensures, Invariants.
- 9. Dimensions and Units as fundamental types.
- 8. Traits and Objects. Probably borrowed from Smalltalk.
- 7. Functional Methods. I didn’t get this.
- 6. Parametric Polymorphism.
- 5. Generators and Reducers.
- 4. Mathematical Syntax. One of the driving forces of Fortress to make a PL familiar to Mathematicians.
- 3. Transactional Memory. She thinks it is “cool beans”.
- 2. Implicit Parallelism
- 1. Grow able. The big idea. Designed from the beginning.
Fortress is a hodge podge of cool language features; all of which are very cool (STM and concurrency were her favorite).
The last feature was the most exciting. I expected the entire room to say “ooohhhhhhh” at that moment, but no one did. I suspect no one had a clue as to what she was talking about. I would love to have syntactic extension facilities in Java. Since one of the background goals (my assumption) is to research language features that would eventually show up in Java, we’ll have to see what happens :).
While I got the impression that the presenter gave this presentation as the result of choosing the smallest straw; it was one of the top presentations out of the entire conference.
Chicago Lisp 5/16 Meeting
The next Chicago Lisp meeting is coming up this Friday, 5/16/8. Here are the relevant links:
Chicago Lisp Information Page (for now check here first)
Chicago Lisp Homepage (eventually this will be the master information site)
I will be heading down for this meeting, and presenting at it, so if you would like to carpool let me know!
Addendum 05/21/08:
Here is the presentation and source material from my talk. This is the 25lb version of the presentation; it is not light advocacy stuff, rather, it is just a lot of crunchy bits that are meant to be discussed interactively.
Addendum 05/27/08:
Peter posted a great recap of the presentation.
Addendum: 08/17/08
Here is an updated presentation and materials, v2.01.
Monar 0.0.1 released
Monar is a free interpreter for R6RS Scheme.
Currently it covers a little of R6RS core scheme, utf-8 I/O, quasiquote, apply , regexp , traditional macro, 30bit fixnum , simple port , simple CGI and format.
And Wiki works on Monar@FreeBSD+Apache.
http://monar.monaos.org/wiki/LambdaWiki
Downloads and More Information
Source code and Monar documentation can be found on the web at:
(via comp.lang.scheme)
Predictive Abbreviation Expansion in Emacs
pabbrev is a yet another package for abbreviation expansion in Emacs. Unlike dabbrev, this one analyzes the contents of the buffers during idle time, and shows potential expansions based on word frequency.
Check it out over at Trey’s place.
GNU Guile 1.8.5 Released
This release includes: improved I/O performance, an object-based traps infrastructure, bug fixes, and other changes.
This is primarily a bugfix release.
(via PLNews)
Choosing random files in Bash
Ben has a good post about choosing random files in Bash:
ls | while read x; do echo "`expr $RANDOM % 1000`:$x"; done \ | sort -n| sed 's/[0-9]*://' | head -15
When "good enough" isn't "good enough"
A pervasive attitude among programmers today is that their language is “good enough” and that whatever their language lacks in expressiveness they can make up for with brute force.
Be forewarned: pretty soon you will just end up realizing Greenspun’s Tenth Rule!
A Lisp Joke that gets it right
Here is the classic programming “how do you shoot yourself in the foot” joke, brought to Lisp by someone who “gets it”!
TASK: Shoot yourself in the foot.
LISP: You shoot yourself in the appendage which holds the gun with which you shoot yourself in the appendage which holds the gun with which you shoot yourself in the appendage which holds the gun with which you shoot yourself in the appendage which holds the gun with which you shoot yourself in the appendage which holds the gun with which you shoot yourself in the appendage which holds…
(via DaniWeb)