Search found 16 matches

by PapoAnaya
Fri Nov 09, 2012 4:15 pm
Forum: newLISP newS
Topic: TCL
Replies: 3
Views: 7452

Re: TCL

Hi dear friends , I want to know if anyone knows " TCL " (tool command language) programming , and what is the differences On Tcl I work with Tcl at work, but the version we got at work has a lot of niceties, but it's still a Tcl engine. Tcl is a fine language for systems applications rather than w...
by PapoAnaya
Fri Nov 09, 2012 12:49 am
Forum: So, what can you actually DO with newLISP?
Topic: Lorem Ipsum
Replies: 2
Views: 6600

Lorem Ipsum

Dolor sit amet... ;; This code is in newLisp ;; ;; Use the lipsum generator to generate Lorem Ipsum dummy paragraphs / words / bytes. ;; ;; Lorem Ipsum courtesy of www.lipsum.com by James Wilson ;; ;; @param what in "paras","words","bytes"] ;; @param amount of paras/words/bytes (for words minimum is...
by PapoAnaya
Tue Jun 05, 2012 11:09 pm
Forum: newLISP in the real world
Topic: Geany editor newLISP definition file
Replies: 4
Views: 3248

Re: Geany editor newLISP definition file

Hi: It's been a while since I've played with Geany's configuration files. keywords vs. special keywords = one color vs another color. It will be probably up to your taste to decide one vs another and see how colorization helps you. I took a look at the newlisp.el and all the keywords are in "keyword...
by PapoAnaya
Thu May 31, 2012 2:30 pm
Forum: So, what can you actually DO with newLISP?
Topic: newLISP scripts for wmii.
Replies: 1
Views: 5017

newLISP Big Brother/Hobbit Xymon Scripts

Speaking of GitHub repositories. I have been adding xymon/hobbit/bb monitoring scripts in https://github.com/papoanaya/monitor_newlisp . I've been coding them to monitor different components at home. If you're familiar with Xymon, you'll see that the structure used is similar to other scripts writte...
by PapoAnaya
Wed May 30, 2012 7:12 pm
Forum: So, what can you actually DO with newLISP?
Topic: Wendal's Lua-Newlisp github project and few blog posts
Replies: 3
Views: 6957

Re: Wendal's Lua-Newlisp github project and few blog posts

It looks interesting, thanks to Wendal for posting examples because my Chinese is non existent :)
by PapoAnaya
Tue May 08, 2012 3:26 am
Forum: So, what can you actually DO with newLISP?
Topic: newLISP scripts for wmii.
Replies: 1
Views: 5017

newLISP scripts for wmii.

Hi: While working in a client site I had to port the shell scripts used by the wmii window manager to newlisp. They are available at github.com. (https://github.com/papoanaya/wmii_newlisp), if you want to play with them. These programs uses newlisp to handle the wmii window manager; a stacking windo...
by PapoAnaya
Sat Apr 21, 2012 8:28 pm
Forum: newLISP in the real world
Topic: On Macros
Replies: 0
Views: 2332

On Macros

Hi: One post in comp.lang.lisp stated that "thou shall know macros to get thy mastery of ye LISP arcana", hence decided to explore macros for fun and amusement. Sadly here in the forum if you do a search on macro (or define macros) nothing shows up, hence decided to write a small post about macros. ...
by PapoAnaya
Tue Apr 17, 2012 8:25 pm
Forum: So, what can you actually DO with newLISP?
Topic: Newlisp and Dzen2
Replies: 3
Views: 6281

Re: Newlisp and Dzen2

Ok, the following is a continuation on the code. The problem that I was having with the original code is that newlisp was not terminating when dzen2 exited. The issue resides in the way xdm collapses the session and was not killing the newlisp process. Even though you may keep the process id to remo...
by PapoAnaya
Sun Apr 08, 2012 6:43 pm
Forum: So, what can you actually DO with newLISP?
Topic: Newlisp and Dzen2
Replies: 3
Views: 6281

Re: Newlisp and Dzen2

Hi: Well, you try to solve a problem with the best tool available. I do have some of the alternate code available but the objective was to parse code from externally called programs. One thing I forgot was to show a screenshot, with apologies for the pogoplug advertisement. http://ppl.ug/36KmI1CcORc...
by PapoAnaya
Fri Apr 06, 2012 2:26 am
Forum: So, what can you actually DO with newLISP?
Topic: Newlisp and Dzen2
Replies: 3
Views: 6281

Newlisp and Dzen2

Hi again It's been a while, but I still use new lisp for various things as time permit. In this case this is more of a study in system or utilities than anything else. One piece of software I've been dabbling of late is called dzen2. For more information you can go to http://sites.google.com/site/go...
by PapoAnaya
Sat May 14, 2011 4:23 am
Forum: newLISP in the real world
Topic: newLISP + Cherokee Web Server
Replies: 1
Views: 1581

Re: newLISP + Cherokee Web Server

Not that I am familiar with it, but it would entail configuring it to identify .lsp extensions as executables and make sure that all your cgi are have execution priviledges with a !# indicating the location of the interpreter. Perhaps as al alterntive would be to use new lisp as a surrogate server a...
by PapoAnaya
Thu Jan 28, 2010 11:13 pm
Forum: So, what can you actually DO with newLISP?
Topic: Web Sequence Diagram
Replies: 1
Views: 2961

Web Sequence Diagram

I was dabbling one night and I decided to translate the code to create sequence diagrams from websequencediagrams.com from python to newLisp. The code might need some improvement, but it does work for me. ;; ;; Web Sequence Diagram Interface ;; (define (url-encode str) (replace {([^a-zA-Z0-9])} str ...
by PapoAnaya
Mon Nov 14, 2005 3:02 pm
Forum: newLISP and the O.S.
Topic: New Lisp, Com? How
Replies: 2
Views: 3276

No way to do OLE/COM with newLISP and most likely never will be. OLE/COM is very complex and requires a lot of code to implement. Lutz That's ok, I can get by with loading dll's. That's a very powerful feature by itself, specially the fact that wrappers do not need to be written for this to work. ....
by PapoAnaya
Mon Nov 14, 2005 2:56 pm
Forum: Anything else we might add?
Topic: The 'case' statement
Replies: 5
Views: 3000

pjot wrote:Hm, ok. But then I don't see the use of the 'case' statement. It can be withdrawn from newLisp completely, since all selections can be peformed with 'if' just as easy.
Well, there might be a case for "case" if there is less overhead than "if" or "cond".

Papo
by PapoAnaya
Tue Oct 25, 2005 9:41 pm
Forum: newLISP and the O.S.
Topic: New Lisp, Com? How
Replies: 2
Views: 3276

New Lisp, Com? How

Hi:

Even though NewLisp can load DLL's using the import function, is there any way to access COM components from newLisp? Probably this would solve some of the short comings like like of ODBC by using Jet and to be able to access Office from newLisp.

Regards,

Papo
by PapoAnaya
Mon Oct 24, 2005 7:22 pm
Forum: newLISP and the O.S.
Topic: Simple VBA Macro for Syntax Highlight
Replies: 0
Views: 2422

Simple VBA Macro for Syntax Highlight

Hi: I wrote the following small macro for syntax highlight. It's very basic, but demonstrates how newLISP can be used when you are not in the mood of coding a lot of VBA code for mundane things like that. (I guess I could've used VBA string search routines, but I wanted to try it out anyway. :) Papo...