Search found 99 matches

by schoppenhauer
Wed Sep 15, 2010 8:12 pm
Forum: Common Lisp
Topic: Low-Level File Access
Replies: 8
Views: 6955

Re: Low-Level File Access

Also, you can simply specify an unsigned-byte element type when opening the file. There may be some residual stream overhead, but it cuts out the major cost of character interpretation/conversion. What prompted this question? I am currently working with some large image-files, and I wanted to do as...
by schoppenhauer
Mon Sep 13, 2010 3:24 pm
Forum: Common Lisp
Topic: Low-Level File Access
Replies: 8
Views: 6955

Low-Level File Access

Is there any possibility (portable or not) to have fast low-level access to files using some Common Lisp Implementation? Like mmap, mapping into a vector, or so? I have found http://blog.viridian-project.de/2009/07/24/sbcl-getting-started-with-mmap/ but I dont know whether this deref-call is efficie...
by schoppenhauer
Fri Aug 13, 2010 5:33 pm
Forum: The Lounge
Topic: "LISP Generator"
Replies: 3
Views: 8921

Re: "LISP Generator"

Hm. Looks interesting, but produces a dependency hell of deadlinks, non-working installers, etc. (well, at least I have lispworks here again).
by schoppenhauer
Tue Aug 10, 2010 4:04 pm
Forum: The Lounge
Topic: "LISP Generator"
Replies: 3
Views: 8921

"LISP Generator"

A Google AD had a Link to something called "LISP Generator", http://www.beowolftech.com/lispgen/home.html - I dont know what to think about this. Looks like the approach is to generate programs only by Menus. Having all (or at least all essential) functions mentioned in a searchable Menu c...
by schoppenhauer
Tue May 18, 2010 8:04 pm
Forum: Common Lisp
Topic: The Horrible State of the Cliki
Replies: 5
Views: 4820

Re: The Horrible State of the Cliki

Actually I am using LTK but was looking for an alternative. Not that I dont like LTK (its a nice and small and basically the best UI-Binding one gets for CL by now), I dont even mind that its not an FFI-Binding, but I dont want to have to depend on external files (as far as thats possible). I am cur...
by schoppenhauer
Tue May 18, 2010 7:06 pm
Forum: Common Lisp
Topic: The Horrible State of the Cliki
Replies: 5
Views: 4820

The Horrible State of the Cliki

Just one question: Is anyone still maintaining the Cliki? I always liked it, but seems like asdf has become less interesting (maybe because more people use clbuild instead), and maybe because of this it also became less interesting. Anyway, looking at http://www.cliki.net/Lisp-Tk I just wondered ...
by schoppenhauer
Sat May 08, 2010 5:41 pm
Forum: Common Lisp
Topic: cl-markdown not compiling
Replies: 1
Views: 2815

cl-markdown not compiling

i can compile cl-markdown with sbcl and get warnings that some functions named "binding-generator" and a number were not defined. but under clisp, I cannot even compile because of this: ;; Compiling file /home/clisp2/clbuild/source/cl-markdown/dev/html.lisp ... *** - FUNCALL: undefined fun...
by schoppenhauer
Sat May 08, 2010 5:35 pm
Forum: The Lounge
Topic: Lisp and other languages banned from Iphone
Replies: 4
Views: 9167

Re: Lisp and other languages banned from Iphone

Actually, I am pretty surprised that so many lispers like Apple Stuff (at least it seems like that to me).
by schoppenhauer
Sat Apr 03, 2010 5:44 pm
Forum: Common Lisp
Topic: What am I doing wrong
Replies: 4
Views: 5023

Re: What am I doing wrong

The .fas-File is a file containing code that can be loaded quickly - though, it is no executable. To execute it, use clisp -i <fas-file>. To really get an executable, you must load your file and generate an executable memory dump: http://clisp.cons.org/impnotes.html#image Using (defun read-setup (th...
by schoppenhauer
Fri Feb 26, 2010 3:58 am
Forum: Emacs Lisp
Topic: "X windows are not in use or not initialized"
Replies: 2
Views: 61111

Re: "X windows are not in use or not initialized"

Seems like some confusion with the different Font-Handlings under X11 and Terminals. In http://www.gnu.org/software/emacs/elisp/html_node/Command_002dLine-Arguments.html I found the command "command-line-args" - maybe you could (as a workaround) use it to determine wether "nw" wa...