Understood. Apparently it was not my filter, just Saveing the default settings has resulted my receipt of notifications .... thanksRyon wrote:Mail is sent from newlispfanclub at alh dot net, to the address in your Control Panel > Profile > Edit Account Settings page.
Search found 253 matches
- Wed Mar 04, 2015 4:20 pm
- Forum: Whither newLISP?
- Topic: Eric Raymond Blog - Small community scripting languages
- Replies: 8
- Views: 17790
Re: Eric Raymond Blog - Small community scripting languages
- Tue Mar 03, 2015 7:01 pm
- Forum: Whither newLISP?
- Topic: Eric Raymond Blog - Small community scripting languages
- Replies: 8
- Views: 17790
Re: Eric Raymond Blog - Small community scripting languages
Thanks Ryon, I'll follow your instructions. Also, could you tell me what the exact email address of the notification is? I may very well have a filter that is catching it in error and rerouting it. Edited : I checked the default settings for Edit Posting Results and replies were enabled by default. ...
- Tue Mar 03, 2015 12:59 am
- Forum: Whither newLISP?
- Topic: Eric Raymond Blog - Small community scripting languages
- Replies: 8
- Views: 17790
Re: Eric Raymond Blog - Small community scripting languages
Good to hear from everyone. Surprising tidbit about autolisp! Bye the way, I have not got any notifications about replies to this thread. I have checked "Notify me when a reply is posted" under options. Email address as stored in my User Control Panel is current. Is there anything else that I need t...
- Sat Feb 28, 2015 11:43 pm
- Forum: Whither newLISP?
- Topic: Eric Raymond Blog - Small community scripting languages
- Replies: 8
- Views: 17790
Eric Raymond Blog - Small community scripting languages
I just came across the thread about the Eric Raymond blog. Since it dates back to June 2014 - I thought I would start another one. I found blog very interesting, with the some smug pushback, but not nearly as virulent as pushback I've seen on Common Lisp venues years past. I would note that at one t...
- Wed Dec 14, 2011 11:01 pm
- Forum: Anything else we might add?
- Topic: Off topic: What web hosting do you like/recommend?
- Replies: 23
- Views: 24420
Re: Off topic: What web hosting do you like/recommend?
Since it has been several years since I last posted regarding Hostmonster, I want to say that I have
moved all of my domains to hostmonster and I haven't been able to think of anything bad about them at all. Their tech support is spot on and they have turned out to be very reliable.
moved all of my domains to hostmonster and I haven't been able to think of anything bad about them at all. Their tech support is spot on and they have turned out to be very reliable.
- Sat Jul 17, 2010 5:48 pm
- Forum: newLISP in the real world
- Topic: REPL and newline
- Replies: 10
- Views: 6279
Re: REPL and newline
Time didn't permit me to read this thread thoroughly, but I use both vim and emacs and have done considerable scripting for each. If you use linux (and I presume that you may do the same on OS X), in vim you can 1)Grab some text in visual mode 2)Feed it to a temporary file 3)Evaluate the temporary f...
- Thu Jul 01, 2010 4:13 pm
- Forum: newLISP in the real world
- Topic: SBCL to newLISP
- Replies: 19
- Views: 13765
Re: SBCL to newLISP
Michael, I've never used setf like that. The docs say
Curiouser and curiouser
but I see from my own console:setf is used when setting list or array references
Code: Select all
> (setf a 1)
1
> a
1
- Wed Jun 30, 2010 8:00 pm
- Forum: newLISP in the real world
- Topic: SBCL to newLISP
- Replies: 19
- Views: 13765
Re: SBCL to newLISP
Oh for Pete's Sake, you're right, my brain has been AWOL these couple of days!I don't understand, why "but"? His test code shows it's better to use one call.
I misread the results.
thanks
tim
- Wed Jun 30, 2010 7:15 pm
- Forum: newLISP in the real world
- Topic: SBCL to newLISP
- Replies: 19
- Views: 13765
Re: SBCL to newLISP
The idea of using one call to set with multiple symbol/value pairs versus multiple calls to set with just one symbol/value pair for each call appeals to my aversion to redundancy. but michael makes a compelling case in the test code that he posted. I should have some time in the next few days to run...
- Tue Jun 29, 2010 6:45 pm
- Forum: newLISP in the real world
- Topic: SBCL to newLISP
- Replies: 19
- Views: 13765
Re: SBCL to newLISP
I'll buy that one. I wonder if differences would change with more complex data types?
thanks
tim
thanks
tim
- Tue Jun 29, 2010 5:44 pm
- Forum: newLISP in the real world
- Topic: SBCL to newLISP
- Replies: 19
- Views: 13765
Re: SBCL to newLISP
Also, why use multiple calls to 'set when one will do?
cheers
tim
cheers
tim
- Sat May 22, 2010 3:58 pm
- Forum: newLISP newS
- Topic: newlisp.vim 1.31
- Replies: 10
- Views: 9974
Re: newlisp.vim 1.31
I have the following " .vimrc autocmd BufNewFile,BufRead *.lsp set filetype=newlisp autocmd BufRead,BufNewFile *.lsp setlocal shiftwidth=2 tabstop=2 I put newlisp.vim in my ~/.vim/syntax directory I also put my own auxiliary newlisp.vim in ~/.vim/after/syntax In there I put stuff like highlighting f...
- Tue May 04, 2010 3:34 pm
- Forum: newLISP in the real world
- Topic: accessing a list number by a symbol for a list
- Replies: 3
- Views: 3610
Re: accessing a list number by a symbol for a list
And we use 'slice as in
Implicit indexing is great feature. I might add to the documentation of
this subject something of the subject here.
I.E. use of symbols, etc.
:)But then, I'm a real noob when it comes to the functional programming paradigm.
Code: Select all
(slice (map eval ndxs) 1)
this subject something of the subject here.
I.E. use of symbols, etc.
:)But then, I'm a real noob when it comes to the functional programming paradigm.
- Tue May 04, 2010 2:13 am
- Forum: newLISP in the real world
- Topic: accessing a list number by a symbol for a list
- Replies: 3
- Views: 3610
Re: accessing a list number by a symbol for a list
Code: Select all
> (record (map eval ndxs))
Code: Select all
(record (map (eval ndxs)))
thanks.
- Mon May 03, 2010 9:56 pm
- Forum: newLISP in the real world
- Topic: accessing a list number by a symbol for a list
- Replies: 3
- Views: 3610
accessing a list number by a symbol for a list
> (set 'record '(("name" "Tim")(age 61))) (("name" "Tim") (age 61)) > (set 'indices '(1 0)) (1 0) > (record indices) age ;; correct > (set 'ndxs '(a b)) (a b) > (record ndxs) ERR: value expected : ;; duh! So how may I 'bind' the values in 'ndxs to the implicit indexing of 'record? I'm hoping there ...
- Wed Apr 28, 2010 3:22 pm
- Forum: newLISP in the real world
- Topic: Stitching lists together
- Replies: 5
- Views: 4255
Re: Stitching lists together
I use this function
Lutz is a man of few words ...
Code: Select all
(define (merge)(transpose (args)))
- Tue Apr 27, 2010 5:58 pm
- Forum: newLISP newS
- Topic: Development release newLISP v.10.2.3
- Replies: 4
- Views: 5133
Re: Development release newLISP v.10.2.3
- bug fixes and additional syntax patterns for 'net-connect' and 'net-service' for CHANGES notes and source package see here: http://www.newlisp.org/downloads/development/ this is is a source-only release Not to quibble, but it is v. 10.2.4 at the link above. Another successful compile and install ...
- Sat Apr 03, 2010 3:33 pm
- Forum: Anything else we might add?
- Topic: newlisp as a General Purpose java front end.
- Replies: 7
- Views: 7809
Re: newlisp as a General Purpose java front end.
Of the two other members of my family that are programmers, they are both java programmers. One of them full-time, the other splits her time about 60-40 between java and php. I don't like java, and it is as verbose as C, which I used for 12 years, even for CGI programming. I would hate to have to le...
- Thu Mar 25, 2010 3:40 pm
- Forum: newLISP in the real world
- Topic: Hash functions within a context do not see context members
- Replies: 2
- Views: 2370
Re: Hash functions within a context do not see context members
No sure what you mean. In the following smaller example you can see 'outer-var' recognized: Note that I placed the define for 'typeHander inside of the context. I moved the define outside of the context and now the hash functions have context scope. I.E. It appears that the context members are now ...
- Thu Mar 25, 2010 1:34 am
- Forum: newLISP in the real world
- Topic: Hash functions within a context do not see context members
- Replies: 2
- Views: 2370
Hash functions within a context do not see context members
I have a solution, but don't fully understand the issue: I've set up a typehandler/callback using a hash with functions as in (define typeHandler:typeHandler) (typeHandler "text" (fn (fl val ndxs DS DSndx) (letn((ndx (ndxs 0))(ele (fl ndx)) (attrs(set-attr (list "value" val)(ele 2 1)))) (setf (DS DS...
- Wed Mar 24, 2010 1:04 am
- Forum: newLISP in the real world
- Topic: Function dispatch or callback list
- Replies: 5
- Views: 4807
Re: Function dispatch or callback list
I think that your method will make modification easier also.
Thanks very much Lutz.
I hadn't even considered hashes.
Thanks very much Lutz.
I hadn't even considered hashes.
- Tue Mar 23, 2010 11:11 pm
- Forum: newLISP in the real world
- Topic: Function dispatch or callback list
- Replies: 5
- Views: 4807
Re: Function dispatch or callback list
And one more step, factoring out 'list calls by using eval in the dispatcher: (set 'callback-list '(("int" (fn(arg1 arg2) (println "heellllooo from the 'int handler") (println arg1 " " arg2))) ("text" (fn(arg1 arg2) (println "heellllooo from the 'text handler") (println arg1 " " arg2))))) (define (d...
- Tue Mar 23, 2010 6:20 pm
- Forum: Anything else we might add?
- Topic: newlisp as a General Purpose java front end.
- Replies: 7
- Views: 7809
Re: newlisp as a General Purpose java front end.
I suspect that part of the silence is to do with the fact that topics in this forum don't appear in the RSS feed or the Active topics list. I only noticed it because I happened to look at the Dragonfly section after seeing a tweet... Why is that? Is there something in my settings configuration that...
- Mon Mar 22, 2010 11:58 pm
- Forum: newLISP in the real world
- Topic: Function dispatch or callback list
- Replies: 5
- Views: 4807
Re: Function dispatch or callback list
Hey, I like your approach. And taking it one step further using 'fn : (set 'funcs (list (list "int" (fn(arg1 arg2)(println "DO-INT - arg1: " arg1 " arg2: " arg2))) (list "text" (fn(arg1 arg2)(println "DO-TEXT - arg1: " arg1 " arg2: " arg2))))) (define (f key) (lookup key funcs)) ((f "text") "one" "t...
- Mon Mar 22, 2010 10:52 pm
- Forum: newLISP in the real world
- Topic: Function dispatch or callback list
- Replies: 5
- Views: 4807
Function dispatch or callback list
In python I'm used to doing something like this: funcs = {"one":func1,"two":func2} ## etc ## Called as: funcs[task](arg1 arg2) I did this in newlisp: (set 'funcs '(("int" do-int)("text" do-text))) (define (do-int arg1 arg2) (println "DO-INT - arg1: " arg1 " arg2: " arg2) ) (define (do-text arg1 arg2...