Search found 140 matches

by hilti
Thu Sep 02, 2010 6:06 am
Forum: Anything else we might add?
Topic: new to newLISP
Replies: 20
Views: 11021

Re: new to newLISP

Hi hilti , nice to learn about your Appigale DSL. Would you mind giving some URLs of sites built on it ? At first there's my personal site www.marchildmann.com, which is currently a "heavy under testing" playground. My other Appigale apps are sitting on localhost and doing simple tasks e.g. like di...
by hilti
Wed Sep 01, 2010 2:23 pm
Forum: Anything else we might add?
Topic: new to newLISP
Replies: 20
Views: 11021

Re: new to newLISP

Welcome Ormente! Good to see some new minds developing in newLISP. Your projects sound interesting. I've developed the Dragonfly framework with Greg Slepak (itistoday). You may have a look at it. Currently I'm doing some work on my micro framework or better DSL called Appigale. Some small web apps a...
by hilti
Tue Jul 27, 2010 4:28 pm
Forum: Dragonfly
Topic: Dragonfly and Lighttpd?
Replies: 2
Views: 4890

Re: Dragonfly and Lighttpd?

Hi Kanen, although I've not installed lighttpd I think You've to fix two things when working with Dragonfly: 1. The included .htaccess doesn't work with lighttpd, because it's Apache syntax Here are some hints on that http://redmine.lighttpd.net/boards/2/topics/1342 http://stackoverflow.com/question...
by hilti
Tue Jul 27, 2010 4:28 pm
Forum: Dragonfly
Topic: Dragonfly and Lighttpd?
Replies: 2
Views: 4890

Re: Dragonfly and Lighttpd?

Hi Kanen, although I've not installed lighttpd I think You've to fix to things when working with Dragonfly: 1. The included .htaccess doesn't work with lighttpd, because it's Apache syntax Here are some hints on that http://redmine.lighttpd.net/boards/2/topics/1342 http://stackoverflow.com/questions...
by hilti
Fri Jul 23, 2010 6:44 pm
Forum: newLISP and the O.S.
Topic: Running newLISP on Nokia N900
Replies: 3
Views: 11379

Re: Running newLISP on Nokia N900

That's obvious but cool - running newLISP internal webserver on a Nokia N900.
by hilti
Fri Jul 23, 2010 4:02 pm
Forum: newLISP and the O.S.
Topic: Running newLISP on Nokia N900
Replies: 3
Views: 11379

Re: Running newLISP on Nokia N900

Compiling newLISP on Nokia N900 I like the pragmatic way, so I just compiled newLISP directly on my N900. This is the way how it's done in Your X-Terminal: 1. You need to install the package " rootsh " to be able doing some hacking stuff ;-) 2. Install GCC from this repository deb http://repository...
by hilti
Fri Jul 23, 2010 4:01 pm
Forum: newLISP and the O.S.
Topic: Running newLISP on Nokia N900
Replies: 3
Views: 11379

Running newLISP on Nokia N900

newLISP runs on a Nokia N900 perfectly!
by hilti
Fri Jul 23, 2010 3:53 pm
Forum: newLISP and the O.S.
Topic: newlisp on the Nokia N810 Internet tablet
Replies: 28
Views: 15620

Re: newlisp on the Nokia N810 Internet tablet

Compiling newLISP on Nokia N900 I like the pragmatic way, so I just compiled newLISP directly on my N900. This is the way how it's done in Your X-Terminal: 1. You need to install the package " rootsh " to be able doing some hacking stuff ;-) 2. Install GCC from this repository deb http://repository...
by hilti
Thu Jul 22, 2010 8:01 am
Forum: newLISP and the O.S.
Topic: newlisp on the Nokia N810 Internet tablet
Replies: 28
Views: 15620

Re: newlisp on the Nokia N810 Internet tablet

So, just one question: Does your port work with Nokia N900? Short answer: I think not yet, but I hope someone get it working. Long answer: I've downloaded all the maemo files and followed the gunzip process on my N900, started the maemo-install.sh but nothing happens. If I try to open the "newlisp"...
by hilti
Sun Jul 11, 2010 12:08 pm
Forum: Dragonfly
Topic: Installing Dragonfly to hosted server
Replies: 7
Views: 7711

Re: Installing Dragonfly to hosted server

Hi Ryon, the Nginx webserver uses different rewrite rules. Maybe that's the problem. Try to install the Dragonfly example site and access it this way: http://www.rundragonfly.com/index.cgi/dragonfly_routes HOW TO convert an Apache htaccess to Nginx rewrite rules? Try this link: http://www.anilcetin....
by hilti
Fri May 28, 2010 4:18 pm
Forum: So, what can you actually DO with newLISP?
Topic: Public lecture on Newlisp, Zagreb, June 2010
Replies: 4
Views: 5018

Re: Public lecture on Newlisp, Zagreb, June 2010

So bad...Hannover, Germany isn't close enough! Maybe we can have a video of Your lecture?

I like the name "Hacklab". :-)
by hilti
Wed Apr 28, 2010 6:01 am
Forum: newLISP in the real world
Topic: Web Crawler
Replies: 4
Views: 2631

Re: Web Crawler

Hi Kanen

I wrote some simple tools for analysing websites in newLISP and used CURL for fetching urls, because (get-url) doesn't support "https". You can simple invoke CURL by the exec function.

Then using SXML for parsing the returned HTML would be the easiest.

Cheers
Hilti
by hilti
Sat Feb 20, 2010 5:40 am
Forum: newLISP newS
Topic: Introducing Objective newLISP
Replies: 18
Views: 10183

Re: Introducing Objective newLISP

(new Class 'Book) (new Class 'Chapter) (new Class 'Paragraph) (define (Paragraph:text) (self 1)) (define (Chapter:text) (format "Chapter %d\n%s\n" (self 1) (join (map (curry :text) (2 (self))) "\n") ) ) (define (Book:text) (format "%s\n\n%s\nThe End\n" (self 1) (join (map (curry :text) (2 (self))) ...
by hilti
Fri Feb 12, 2010 7:08 pm
Forum: newLISP newS
Topic: Lispeln - Newlisp fork.
Replies: 2
Views: 3293

Re: Lispeln - Newlisp fork.

Might be some part in the generalv tendency in Asia to "own" technologies created by others
I think that's the case here unfortunately.
by hilti
Sun Feb 07, 2010 8:44 pm
Forum: newLISP in the real world
Topic: Request: Function to give context given symbol
Replies: 41
Views: 13513

Re: Request: Function to give context given symbol

I'd prefer to see lots of working newLISP examples on the web You're so right cormullion! Most good scripting or programming languages aren't recognized, because their users are doing "research for highly optimized code" instead of keeping it simple stupid (KISS). I think that's why PHP is widely u...
by hilti
Tue Feb 02, 2010 7:00 am
Forum: newLISP and the O.S.
Topic: newLISP on a chip - is it possible?
Replies: 3
Views: 4054

newLISP on a chip - is it possible?

Hi!

I just ran across this project: python on a chip
http://code.google.com/p/python-on-a-ch ... loads/list

Very interesting. Just imagine how cool it would be to run newLISP on Arduino or mBed (http://mbed.org/)

Cheers
Hilti
by hilti
Fri Jan 29, 2010 4:36 pm
Forum: So, what can you actually DO with newLISP?
Topic: Web Sequence Diagram
Replies: 1
Views: 2968

Re: Web Sequence Diagram

Pretty cool! Thanks for sharing it.

Cheers
Hilti
by hilti
Fri Jan 15, 2010 7:14 am
Forum: So, what can you actually DO with newLISP?
Topic: Optimizing 'deep' setf
Replies: 7
Views: 5045

Re: Optimizing 'deep' setf

Hi Tim,

I would probably try to simplify the code which POSTS the form. Normally You won't need a nested structure for posted data from HTML forms.
Download Dragonfly and take a look at the request.lsp

Here's what it works like: http://www.rundragonfly.com/dragonfly_getpost

Cheers
Marc
by hilti
Thu Jan 14, 2010 4:58 pm
Forum: Dragonfly
Topic: Cache files
Replies: 5
Views: 5931

Re: Cache files

Pretty nice graph Cormullion!
by hilti
Sat Dec 12, 2009 9:12 am
Forum: newLISP and the O.S.
Topic: get-url with redirection?
Replies: 4
Views: 3768

Re: get-url with redirection?

Sorry.

That's the correct snippet:

Code: Select all

(exec (string "curl 'http://www.google.com' --progress-bar"))
by hilti
Sat Dec 12, 2009 9:10 am
Forum: newLISP and the O.S.
Topic: get-url with redirection?
Replies: 4
Views: 3768

Re: get-url with redirection?

Try to use CURL instead

Code: Select all

(exec (string "curl -u "http://www.google.com" --progress-bar"))
CURL handles HTTPS, too.

Cheers
Hilti
by hilti
Wed Nov 25, 2009 12:28 pm
Forum: Dragonfly
Topic: Dragonfly 0.51 Released!
Replies: 8
Views: 7827

Re: Dragonfly 0.51 Released!

Counting 98 downloads today! :-) I've just checked the stats and there are already some other sites running Dragonfly, although I don't know what to do with women clothes ;-) http://www.womensclothing.im/ http://unbalanced-parentheses.nfshost.com/ http://daycaster.org/ Other interesting stats: 58% ...
by hilti
Wed Nov 18, 2009 5:24 pm
Forum: newLISP Graphics & Sound
Topic: Stream Graphs
Replies: 1
Views: 4939

Stream Graphs

http://www.xach.com/moviecharts

These graphs are so cool. Does anyone know how to do them in newLISP?

Cheers
Hilti
by hilti
Sun Nov 15, 2009 1:18 pm
Forum: Dragonfly
Topic: How to Dragonfly on nearlyfreespeech.net ?
Replies: 9
Views: 8208

Re: How to Dragonfly on nearlyfreespeech.net ?

I'm glad You figured it out!

Have fun with Dragonfly!
Hilti
by hilti
Sat Nov 14, 2009 1:28 pm
Forum: Dragonfly
Topic: How to Dragonfly on nearlyfreespeech.net ?
Replies: 9
Views: 8208

Re: How to Dragonfly on nearlyfreespeech.net ?

You can't use newLISP http server, you have to use Apache. Place the contents of the example-site directory into your /home/public. Then go to <whatever>.nfshost.com. That's right! We use this method for runDragonfly.com which also runs at nfshost.com Just copy all files from the directory "example...