Search found 90 matches

by Kirill
Fri Oct 16, 2009 10:54 am
Forum: newLISP newS
Topic: newLISP Fan Club is Moving!
Replies: 39
Views: 20031

Re: newLISP Fan Club is Moving!

Why does 'newLISP GUIserver' + 'newLISp for WIN' + 'newLISP for *n?x' show the 'forum locked' icon? I can enter them, but get no 'new topic' button! They're archives of posts until October 2009. New posts shall be made other places: newLISP Graphics instead of newLISP Guiserver and newLISP and the ...
by Kirill
Mon Oct 12, 2009 6:18 pm
Forum: Whither newLISP?
Topic: Asynchronous I/O with libevent
Replies: 1
Views: 2507

Jeff,

This is truly great news! When I have less to do at work, I'll check this thing out.

Greetings,
Kirill
by Kirill
Fri Oct 09, 2009 9:58 pm
Forum: Whither newLISP?
Topic: SQLite api - why blob?
Replies: 2
Views: 2751

Thanks. I'm not expecting any troubles with this change.

Here are various datatypes of SQLite documented:

http://sqlite.org/datatype3.html

-- Kirill
by Kirill
Sun Oct 04, 2009 3:37 pm
Forum: Whither newLISP?
Topic: SQLite api - why blob?
Replies: 2
Views: 2751

SQLite api - why blob?

The standard sqlite library sends newLISP strings to SQLite as blobs, while in SQLite the column might have been defined as containing text. This causes troubles. E.g. I have a SQLite database with positions (see http://km.krot.org/pos.cgi for how it's used). I do a select from command line: $ echo ...
by Kirill
Sun Oct 04, 2009 3:13 pm
Forum: newLISP in the real world
Topic: JSON in newLISP - via Perl
Replies: 0
Views: 2035

JSON in newLISP - via Perl

Hi there, I have a JSON file with some contact data: km@krot:/home/km/bin> ls -l /home/km/conf/fcontacts.json -rw-r----- 1 km km 192274 Oct 4 03:29 /home/km/conf/fcontacts.json JSON is not a good format for newLISP to handle yet. I didn't have enough patience to wait for json.lsp finishing parsing o...
by Kirill
Fri Sep 18, 2009 10:31 am
Forum: Dragonfly
Topic: Dragonfly - a web framework for newLISP
Replies: 74
Views: 50841

Hi Kirill what is a PSI server? Never heard of it. PSI stands for Public Subject Identifier (in the Topic Maps world that is). A PSI is an URI that servers two purposes: as a unique identifier for a subject and as a URL which can be entered into a browser to provide the end-user a description of wh...
by Kirill
Fri Sep 18, 2009 7:24 am
Forum: Dragonfly
Topic: Dragonfly - a web framework for newLISP
Replies: 74
Views: 50841

hilti wrote:... counting 37 downloads at Google Code :-)

I'm just wondering if anybody else uses Dragonfly for his projects? One project beside my own website is here: http://daycaster.org

Cheers
Hilti (working on version 0.20)
Not yet, but I consider dragonfly (to try it out) for a PSI server.
by Kirill
Wed Jul 22, 2009 12:34 pm
Forum: Whither newLISP?
Topic: TDWTF: Russian Peasant Multiplication
Replies: 11
Views: 6194

TDWTF: Russian Peasant Multiplication

Please see this post: Russian Peasant Multiplication It ends with: Your challenge: write a function that multiplies two numbers using the Russian peasant algorithm. There is no language restriction, though anything on the esoteric language list will probably be ignored. Spoiler alert: the solution(s...
by Kirill
Thu Oct 23, 2008 12:42 pm
Forum: newLISP in the real world
Topic: pop3 email handling with newLISP
Replies: 5
Views: 2564

You should be aware of the encoding. If encoding is 8bit or binary - you're fine. If it's quoted-printable or base64 - then you'll need to decode the data to get the message text in that charset. Also, note that the message headers will (or rather should, but sometimes aren't) will be encoded if the...
by Kirill
Mon Sep 29, 2008 10:23 am
Forum: newLISP newS
Topic: newlisp.vim version 1.23
Replies: 1
Views: 1805

Very nice idea to highlight obsolete functions.

Kirill
by Kirill
Tue Jul 08, 2008 10:50 am
Forum: newLISP newS
Topic: Release newLISP v 9.4.0
Replies: 16
Views: 7660

Lutz wrote:Some users like Pjot and Norman have ported newLISP to less popular platforms like TRU64 Unix, OS-2 and Symbian and I always try to support these projects too. The current release also includes a makefile for i386 based OpenSolaris.
Is there newLISP for Symbian available?
by Kirill
Wed Jun 11, 2008 8:16 pm
Forum: newLISP newS
Topic: The 9.4.0 newLISP manual
Replies: 68
Views: 35460

Consider using a style for top-level headings of mixed case. For example: instead of 2. Deprecated functions and futures changes use 2. Deprecated Functions and Future Changes If we're voting, I vote against making this change...:) I see no advantage in adopting this style. I second that. K.
by Kirill
Mon Apr 14, 2008 6:08 pm
Forum: newLISP newS
Topic: "clean" page URLs with newLISP wiki
Replies: 3
Views: 2420

Here's some stuff for .htacess-based rewrite rules (for a wiki living under /wiki): RewriteEngine On RewriteBase /wiki RewriteRule ^$ index.cgi [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^([a-zA-Z0-9\xa0-\xff].*)$ index...
by Kirill
Sat Apr 12, 2008 5:51 pm
Forum: newLISP newS
Topic: "clean" page URLs with newLISP wiki
Replies: 3
Views: 2420

"clean" page URLs with newLISP wiki

Hi there, I'm not a big fan of URLs of form http://www.example.com/index.cgi?page=Page I'd rather have http://www.example.com/Page It took me 5 mins to get the newLISP wiki to use this form of URLs together with Apache and mod_rewrite. I used following configuration in httpd.conf (if you use .htacce...
by Kirill
Wed Mar 26, 2008 11:40 am
Forum: So, what can you actually DO with newLISP?
Topic: SMTP - Error Trapping and Authentication
Replies: 16
Views: 8656

Hello, world! This is my first post, I've been lurking around here for a while. I'd like to make a note of a small bug in smtp.lsp, that could be squashed if anyone volunteers to add support for SMTP authentication. Current smtp.lsp doubles single dots on a line by themselves. In SMTP, all dots at t...