Search found 14 matches

by Ishpeck
Tue Aug 07, 2012 4:03 am
Forum: newLISP in the real world
Topic: Geany editor newLISP definition file
Replies: 4
Views: 3230

Re: Geany editor newLISP definition file

I've been wanting this for quite a while. I tried a few times to make it but never had the determination. Too bad I've sworn Geany off in favor of Emacs already.
by Ishpeck
Sat Jun 02, 2012 2:39 pm
Forum: Whither newLISP?
Topic: Why dynamic scope?
Replies: 9
Views: 14895

Re: Why dynamic scope?

arquebus wrote:I also plan to learn emacs which means I will learn elisp, so I am now much more motivated to thoroughly understand elisp now...
emacs is my very best friend.

Be sure to get newlisp mode for emacs.
http://www.artfulcode.net/projects/

It's delightful.
by Ishpeck
Tue Feb 28, 2012 11:11 pm
Forum: Anything else we might add?
Topic: What we need is a patch...
Replies: 2
Views: 3102

What we need is a patch...

http://www.custompatches.net/

Wondering if anybody would throw a hissy-fit if I took the dragon fly logos in the art section ( http://www.newlisp.org/index.cgi?page=Art ) and made embroidered patches out of them.

I'd love to sew one into my backpack.
by Ishpeck
Sat Feb 18, 2012 10:33 pm
Forum: Anything else we might add?
Topic: SOPA / PIPA What can you do?
Replies: 3
Views: 3423

Re: SOPA / PIPA What can you do?

Personally, I wanted SOPA to pass. Then I want Facebook to get shut down. It'll be precisely the motivation we need to push for decentralized DNS, heavy crypto, signatures on all data, and other things that I believe the Internet needs.
by Ishpeck
Fri Feb 17, 2012 3:34 am
Forum: newLISP newS
Topic: newLISP Stable Release v.10.4.0
Replies: 13
Views: 10992

Re: newLISP Stable Release v.10.4.0

Running Arch Linux x86_64, had the following. In file included from newlisp.c:20:0: newlisp.h:37:56: fatal error: x86_64-linux-gnu/ffi.h: No such file or directory compilation terminated. Changed newlisp.h to get it compiling. [ishpeck@kiyoshi newlisp-10.4.0]$ export C_INCLUDE_PATH=/usr/lib/libffi-3...
by Ishpeck
Wed Nov 09, 2011 12:11 am
Forum: newLISP in the real world
Topic: Another text editor... Sublime Text
Replies: 4
Views: 2738

Re: Another text editor... Sublime Text

Wait a second... this is not only not terrible, it's actually pretty durned good!
by Ishpeck
Tue Nov 08, 2011 9:37 pm
Forum: newLISP in the real world
Topic: Wanting stdout, stderr and return code of shell commands
Replies: 2
Views: 2930

Wanting stdout, stderr and return code of shell commands

When I use exec or ! to run a shell command, I want to get strings containing the contents of stdout and stderr (even if empty) as well as the exit code of the program. I could direct the output in the command like so: (! "ls 2>/tmp/err >/tmp/out") And then just read those files but that seems horri...
by Ishpeck
Thu Nov 03, 2011 3:59 am
Forum: newLISP in the real world
Topic: Another text editor... Sublime Text
Replies: 4
Views: 2738

Re: Another text editor... Sublime Text

You can never have too many text editors. I collect them like my wife collects shoes.
by Ishpeck
Mon Oct 24, 2011 10:43 pm
Forum: Whither newLISP?
Topic: Why no closures?
Replies: 8
Views: 10957

Re: Why no closures?

It's good to see that I'm the one who's the moron.

Thanks for the help, all.
by Ishpeck
Fri Oct 21, 2011 8:18 pm
Forum: Whither newLISP?
Topic: Why no closures?
Replies: 8
Views: 10957

Why no closures?

I'm really quite surprised that this isn't in the FAQ. Why don't we have closures now? > (define (foo x) (lambda (y) (+ x y))) (lambda (x) (lambda (y) (+ x y))) > ((foo 3) 4) ERR: value expected in function + : x I can do this in Common Lisp: [16]> (defun foo (x) (lambda (y) (+ x y))) FOO [17]> (app...
by Ishpeck
Wed Oct 05, 2011 3:32 am
Forum: newLISP newS
Topic: Helping where I can - Stylish Theme
Replies: 3
Views: 3729

Re: Helping where I can - Stylish Theme

Yeah, I abuse the crap out of Stylish. I can't browse the web without it anymores.
by Ishpeck
Sat Sep 24, 2011 4:59 am
Forum: newLISP newS
Topic: Helping where I can - Stylish Theme
Replies: 3
Views: 3729

Helping where I can - Stylish Theme

http://userstyles.org/styles/54032/newlisp-dark
White backgrounds make my eyeballs cry out in agony. Accordingly, made this.
by Ishpeck
Fri Aug 26, 2011 8:44 pm
Forum: Anything else we might add?
Topic: The (Programming Language) Hat
Replies: 1
Views: 2640

Re: The (Programming Language) Hat

Why have I never seen this before?

Now I know why my life, up to this point, has been so empty.

I approve.
by Ishpeck
Thu Jun 09, 2011 4:43 am
Forum: newLISP and the O.S.
Topic: newLISP, mysql and Fedora(and likely RedHat, etc.)
Replies: 4
Views: 4040

Re: newLISP, mysql and Fedora(and likely RedHat, etc.)

Noticed a similar problem on my OpenBSD 4.9 system. /usr/local/share/newlisp-10.2.16/modules/mysql.lsp had a line like... "/usr/local/lib/libmysqlclient.so.19.0" ; OpenBSD 4.6 I changed it like so: "/usr/local/lib/libmysqlclient.so.20.0" ; OpenBSD 4.9 And now it works. You'd think the package mainta...