NewLisp competition
NewLisp competition
Hello All,
-----------------------------------------------------------------------
I would like to introduce THE NEWLISP 2005 Competition !
-----------------------------------------------------------------------
We have some pritty smart programmers here that use newlisp
------------------------------------------------------------------------
The target is to create a flashing newlisp application/function/program
or whatever that boosts you out of here!
Let your fantasy take over and show what you can.
If you like to join? just let it know in this topic!
The deadline is 31th of December 2005.
The Best application can be chosen independently
by the newlisp users with a vote !
The reward... we need to discuss this ;-)
But im sure we will find a nice one befor the end of this year :-)
SO... LETS GO !!!!!!!!!
Good luck to ya all !
Any suggestion or addons to the project please drop a note...
Regards, Norman.
(completly independent competition launcher)
--- A small handout ---
* Application/program/tools must be written (or partly be) in Newlisp
* Source code does not have to be visual (compiled/linked is allowed)
* It is license independent, can be commercial or open or else..
* It can be OS independent
* No limitation on the program size
* Multiple programming language bindings are allowed
* Original ideas or rewrites are welcome
* You can develop individualy or in groups..
* Finaly, the newlisp users/community will finaly vote for THE application
(keep in mind that people need to be able to run/see your applications operational to be able to vote)
-----------------------------------------------------------------------
I would like to introduce THE NEWLISP 2005 Competition !
-----------------------------------------------------------------------
We have some pritty smart programmers here that use newlisp
------------------------------------------------------------------------
The target is to create a flashing newlisp application/function/program
or whatever that boosts you out of here!
Let your fantasy take over and show what you can.
If you like to join? just let it know in this topic!
The deadline is 31th of December 2005.
The Best application can be chosen independently
by the newlisp users with a vote !
The reward... we need to discuss this ;-)
But im sure we will find a nice one befor the end of this year :-)
SO... LETS GO !!!!!!!!!
Good luck to ya all !
Any suggestion or addons to the project please drop a note...
Regards, Norman.
(completly independent competition launcher)
--- A small handout ---
* Application/program/tools must be written (or partly be) in Newlisp
* Source code does not have to be visual (compiled/linked is allowed)
* It is license independent, can be commercial or open or else..
* It can be OS independent
* No limitation on the program size
* Multiple programming language bindings are allowed
* Original ideas or rewrites are welcome
* You can develop individualy or in groups..
* Finaly, the newlisp users/community will finaly vote for THE application
(keep in mind that people need to be able to run/see your applications operational to be able to vote)
Last edited by newdep on Tue Mar 08, 2005 9:00 am, edited 2 times in total.
-- (define? (Cornflakes))
is there a newlisp logo?Lutz wrote:newlisp.org will contribute a printed bound manual, perhaps we need some T-shirts with newLISP logo too for 2nd and 3rd price?
Lutz
I made one for the newlisp page I may eventually write. I'm not claiming it's any good, but if you want to look, it's here:
http://tofo.f2g.net
here my first contribution ;-)
about newLisp OS names for Grundle of course ;-)
Code: Select all
(set 'parts '(
("" "System " "Sys")
("new" "n" "no") ;-)
("Lisp" "L")
("" "ix" "ux" "X" "OS")))
(define (newLisp-OS-names l s)
(if (empty? l)
(println s)
(dolist (p (l 0))
(newLisp-OS-names (1 l) (append s p)))))
(newLisp-OS-names parts "")
WBR, Dmi