Updated: 11/5/2005; 6:02:27 PM.
Chris Double's Radio Weblog
        

Wednesday, August 14, 2002

Common Lisp programming job available in New Zealand.

"...The Institute of IT Research at AUT has a new position available for
programmers interested in developing advanced software in a research
environment. Strong preference would be given to candidates with
excellent knowledge of LISP programming and a good knowledge of speech
and/or language research. This position falls within the range from
Research Assistant to Senior Researcher (must have a PhD), with an
available salary of up to $NZ60,000 pa. The position is, in the first
instance, fixed term for 3 years.

The Institute of IT Research is also offering up to 3 scholarships for
PhD studies in the area of speech and language research. Each
scholarship will be for up to three years at an annual emolument of
NZ$15,000 plus tuition fees at the level payable to a New Zealand
student. ..."


11:54:12 PM      

James Knight posts to the Goo mailing list some code to do trace and untrace of methods. The code is interesting in that it creates "around method" functionality in Goo by effectively adding to the type system:

;; first create a really basic "around method" functionality for GOO.
;; This is an nifty hack, but only lets you have one around method
;; at a time, and only one that applies to every argument.
;; With a little work it could be extended to be more general.
(dc <AROUND-TYPE> (<TYPE>))
(dv <AROUND> (new <AROUND-TYPE>))
;; "interesting" type relations to fake out the method dispatcher:
;; <AROUND> is a subtype of everything, yet every instance is
;; an instance of it.
(dm subtype? (x|<TYPE> y|<AROUND-TYPE> => <LOG>) #f)
(dm subtype? (y|<AROUND-TYPE> x|<TYPE> => <LOG>) #t)
(dm subtype? (y|<AROUND-TYPE> x|<AROUND-TYPE> => <LOG>) #t)
(dm isa? (o x|<AROUND-TYPE> => <LOG>) #t)

11:47:01 PM      

OSNews reports on the eQip project (running QNX on IPAQ's and other pocket devices). The screenshots look very nice.
1:51:58 PM      

Oracle releases Open Source software for Linux. They've made available a number of interesting open source libraries from Firewire patches to user interface libraries. All under a GNU/GPL License.

ComputerWorld has an article about it. From the article, talking about the effect of releasing the code on other companies who sell competing products, Vice President of database marketing at Oracle Robert Shimp says:

"It's a classic open-source story. The [companies] that offer proprietary products are going to have to add value above and beyond the open-source products"


10:19:31 AM      

From lemonodor, ACL 6.2 has been released. It includes a Common Lisp XML-RPC library.
10:05:41 AM      

Carl Gay releases Dylan Basics. A small library of very useful utilities for the Dylan Programming Language.
10:03:11 AM      

© Copyright 2005 Chris Double.
 
August 2002
Sun Mon Tue Wed Thu Fri Sat
        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
Jul   Sep



Click here to visit the Radio UserLand website.

Listed on BlogShares

Click to see the XML version of this web page.

Click here to send an email to the editor of this weblog.