Search found 2039 matches

by newdep
Thu Oct 06, 2011 7:10 am
Forum: newLISP newS
Topic: newLISP Development Release version 10.3.4
Replies: 3
Views: 3678

Re: newLISP Development Release version 10.3.4

Thumb's up Lutz....!

I already have a new project on the table for newlisp, probably will be pointing towards embedding
newlisp inside hardware but lets see what it brings...
by newdep
Thu Oct 06, 2011 7:05 am
Forum: newLISP newS
Topic: newLISP now on Graham's list
Replies: 55
Views: 49329

Re: newLISP now on Graham's list

AHA! So thats the language Qrczak was bragging about years ago...

Lisp/scheme still has the longest breath ;-) hahahah...
by newdep
Sun Jul 17, 2011 11:11 pm
Forum: newLISP newS
Topic: LUA OR Newlisp
Replies: 5
Views: 7235

Re: LUA OR Newlisp

By the question itself i would like to advice you to do no programming at all.
by newdep
Sat Jul 16, 2011 8:26 pm
Forum: newLISP in the real world
Topic: How to create a sandbox for newLisp?
Replies: 8
Views: 3345

Re: How to create a sandbox for newLisp?

If you want to sandbox (limit access outside newlisp) you could think of using a FUSE way perhpas... (seek for Filesystem in User Space) But just to slimmdown newlisp... have a looks here: (where cormulion quotes me my old code ;-)) http://newlispfanclub.alh.net/forum/viewtopic.php?f=9&t=3843 Old to...
by newdep
Thu Apr 21, 2011 8:17 am
Forum: newLISP in the real world
Topic: Another challenge
Replies: 3
Views: 2338

And Another challenge

Just to keep that head fresh..Explain the behavior...

Code: Select all

(((lambda(x) (lambda(x)))))   ---> nil
((lambda(x) (lambda(x))))   ---> (lambda (x))
(lambda(x) (lambda(x)))   ---> (lambda (x) (lambda (x)))
((lambda(x) lambda(x)))   ---> ERR: invalid lambda expression : (lambda x)
by newdep
Thu Apr 21, 2011 7:18 am
Forum: newLISP in the real world
Topic: Loop without Loops
Replies: 3
Views: 2091

Re: Loop without Loops

Mind set to the right frequency and it flows again... ..more on map.. # loops y * 1-second (define (loop y) (map (fn(x) (sleep (mul x 1000)) (println (++ y)) ) (dup 1 y)) ) #loops backwards from y to z (setf loop (lambda(y z) (map (fn(x) (println (dup "@" x) )) (sequence y z)) true )) #loops backwar...
by newdep
Wed Apr 20, 2011 9:04 pm
Forum: newLISP in the real world
Topic: Loop without Loops
Replies: 3
Views: 2091

Re: Loop without Loops

ahaaaaa...I thought you like this topic and i was almost certain you had your mind set to it already...Yes i remembered your crawer-tractor... realy nice ! I was close in finalizing them almost..almost near these examples you just post here, but i could not get my mind to finish it ..1 level too dee...
by newdep
Wed Apr 20, 2011 6:33 pm
Forum: newLISP and the O.S.
Topic: [BUG?] timer Unix vs Window
Replies: 2
Views: 2877

Re: [BUG?] timer Unix vs Window

No hurry's ..
I see you adjusted your Location to the west-coast in the US..
..Well... its getting hot here in Europe too the next days so climatizing will be easy ;-)..
Enjoy your stay ;-)
by newdep
Wed Apr 20, 2011 6:29 pm
Forum: newLISP in the real world
Topic: Loop without Loops
Replies: 3
Views: 2091

Loop without Loops

I was wondering how many functions inside newlisp are useable to a create a functional loop with. So.. thats without the use of 'until 'while 'for (the existing repeat/loop functions)..etc.. Here a very basic example functions themselfs can loop i.e. running either of these will return the looped fu...
by newdep
Wed Apr 20, 2011 6:22 pm
Forum: newLISP in the real world
Topic: todo.txt utility in newLISP
Replies: 2
Views: 1838

Re: todo.txt utility in newLISP

Hee nice ill try that when i have my linux machines back online (currently only under Vmware)...
I once build a Sticky-notes in newlisp with the java guiserver..dont know where it is but
its roaming somewhere...
by newdep
Wed Apr 20, 2011 7:08 am
Forum: newLISP and the O.S.
Topic: [BUG?] timer Unix vs Window
Replies: 2
Views: 2877

[BUG?] timer Unix vs Window

Hi Lutz, Probably not a bug but a fault-catch issue and i'm not sure if it is supposed to crash under windows. This doesn't crash under linux. Under windows it crashes newlisp. (I know its not how the function is supposed to be handled..but just for the notification.. ;-) newLISP v.10.3.0 on Linux I...
by newdep
Sat Apr 16, 2011 9:06 am
Forum: newLISP in the real world
Topic: Need faster find (with a semi-complex example)
Replies: 2
Views: 1792

Re: Need faster find (with a semi-complex example)

'map is very elegant but i think a 'for loop is perhpas quicker.
And using 'array's here could speed up too.
Im not sure if 'find has a 'regex layer underwater but if it hasn't perhpas regex might speed it up too.

Just my Saturday's 2 cents ;-)
by newdep
Sat Apr 09, 2011 6:40 am
Forum: newLISP in the real world
Topic: newLisp,database,Linux,Oracle
Replies: 4
Views: 2152

Re: newLisp,database,Linux,Oracle

Hi Ale870, I assume you want to leave the ODBC database where it is? I have never migrated to oracle, mysql or Postgress before but ill guess its possible regarding to the database structure/content import/export. But based on the newlisp data and apache, i assume that should be a smooth path. Apach...
by newdep
Tue Apr 05, 2011 11:02 pm
Forum: newLISP and the O.S.
Topic: file operations by process id
Replies: 3
Views: 3361

Re: file operations by process id

aha oke.. yes i think the script that executes the rox is causing the confusion of what pid is actualy leading. If you have access to the rox script you could add a small line to the script , or the execute of the tables that logs the pid (in bash you can use the $$ for this) and redirect it to a fi...
by newdep
Tue Apr 05, 2011 7:12 pm
Forum: newLISP and the O.S.
Topic: file operations by process id
Replies: 3
Views: 3361

Re: file operations by process id

Hey guys, This is for Linux. I use rox panels along the edges of my screen, and to save space I'd like to toggle them on and off. to open a panel I use, for instance, $ rox --top=panel-name to kill the panel, $ rox --top= I wrote something that calls "ps aux" and it will only kill the process, but ...
by newdep
Sat Apr 02, 2011 2:32 pm
Forum: newLISP and the O.S.
Topic: [BUG] ++ is TOO destructive ...
Replies: 4
Views: 3628

Re: [BUG] ++ is TOO destructive ...

Hi Lutz, It took some time to discover that my functions where all returning 'true ;-) ..to this (++) issue.. quite funny actualy but not consistant, thats how i discovered it. Thanks for the quick fix! The main difference now between (++) and (inc) is integer and float handling, could then (++) and...
by newdep
Sat Apr 02, 2011 9:05 am
Forum: Anything else we might add?
Topic: (apply music '(while programming))
Replies: 10
Views: 8182

Re: (apply music '(while programming))

Kazimir Majorinc wrote:I'm enjoying it!
But I have a feeling that my wife will put the veto in few minutes.

hahaha..she's not the only one... some of these sounds do indeed tickly my nerves too much too and i have to switch channels ;-) But..for 8 bits ..not bad at all ;-)
by newdep
Sat Apr 02, 2011 9:02 am
Forum: newLISP and the O.S.
Topic: [BUG] ++ is TOO destructive ...
Replies: 4
Views: 3628

[BUG] ++ is TOO destructive ...

I think this is a bug Lutz...
newLISP v.10.3.0 on Linux IPv4/6, execute 'newlisp -h' for more info.

> (symbol? a)
nil
> (symbol? b)
nil
> (symbol? 1)
nil
> (symbol? '1)
nil
> (++)
1
> (symbol? a)
1
> (symbol? b)
1
> (symbol? 1)
1
> (symbol? '1)
1
>
ps: goes for (--) as well...
by newdep
Sat Apr 02, 2011 7:00 am
Forum: Anything else we might add?
Topic: Announcing an Exciting Merger!
Replies: 4
Views: 3943

Re: Announcing an Exciting Merger!

..I understand your deal with Larry, no doubt about that..'everything for a huge boat' ofcourse...
and Its good to know our data is now clustered..heheh..Good luck with the deal, hope the path is smooth... ;-)
by newdep
Fri Apr 01, 2011 8:44 pm
Forum: Anything else we might add?
Topic: (apply music '(while programming))
Replies: 10
Views: 8182

Re: (apply music '(while programming))

OKe last days im completly into 8 bit ;-) I know i know Its 'Muzak' but brings back loads of memory's..
Here's the channel im tuned into while lisping ;-) http://www.kohina.com/
by newdep
Fri Apr 01, 2011 8:41 pm
Forum: Whither newLISP?
Topic: Least common multiple?
Replies: 3
Views: 5481

Re: Least common multiple?

Always good to have connections with the intelligence agency ;-) Nice one!
Perhaps that could become a buildin? Just try to bribe Lutz with a Beer .. you never know ;-)
by newdep
Mon Mar 28, 2011 10:20 pm
Forum: newLISP and the O.S.
Topic: IMAP checker via SSL
Replies: 1
Views: 2759

IMAP checker via SSL

I dont know but perhpas handy to have for those who are in need of it. A simple unseen IMAP SSL checkup. Im using it in an automated cycle that pops up a message to the screen every 5 minutes.. you can rebuild it to you own taste. Not all error checking is included but works for me.. Enjoy.. and ..b...
by newdep
Mon Mar 28, 2011 10:55 am
Forum: newLISP newS
Topic: Joe editor lisp.jsf update for newlisp 10.3.0
Replies: 2
Views: 3575

Re: Joe editor lisp.jsf update for newlisp 10.3.0

updated to 1.10 "read-buffer" was missing in depr funciton.
http://www.nodep.dds.nl/downloads/newlisp/newlisp.jsf
by newdep
Sat Mar 26, 2011 1:56 pm
Forum: newLISP and the O.S.
Topic: Online newlisp from Cormullion? where is it?
Replies: 3
Views: 3144

Re: Online newlisp from Cormullion? where is it?

Ah, the Lambdalator is no longer online. Too much spam, not enough use... Was this what you wanted: (define (default-message) {For security reasons, this function is not available in this version of newLISP.}) (dolist (x (list {!} {$main-args} {abort} {address} {append-file} {change-dir} {close} {c...
by newdep
Sat Mar 26, 2011 1:49 pm
Forum: newLISP newS
Topic: newlisp Documentation, NEW layout proposal
Replies: 6
Views: 5324

Re: newlisp Documentation, NEW layout proposal

Thanks for checking Kazimir..

I always wanted to have a quick overview with the document, I think its useable but ofcourse it
depends on the reader ;-) I have a 1680x1050 layout screen and its wider and build on that layout..

I adjusted it again to v06... is that better?