Search found 140 matches

by hilti
Tue Feb 12, 2013 2:51 pm
Forum: newLISP in the real world
Topic: Using MaxMind's GeoIP.js
Replies: 2
Views: 2355

Using MaxMind's GeoIP.js

This one might become useful in your web projects. It calls an external javascript file on MaxMinds geolocation servers and returns your browsers location. I'm using it in a Dragonfly project to detect the users location and serving current weather condition. (set 'jsdata (get-url "http://j.maxmind....
by hilti
Sat Feb 09, 2013 1:12 pm
Forum: newLISP newS
Topic: newLISP Development release 10.4.6
Replies: 11
Views: 16899

Re: newLISP Development release 10.4.6

Thanks so much Lutz for Your great work!
by hilti
Sun Jan 27, 2013 8:50 am
Forum: newLISP in the real world
Topic: Newbie question
Replies: 6
Views: 3188

Re: Newbie question

Welcome Peter!

Would You please post an example of Your XML. It's easier to help then.

Thanks
- Marc
by hilti
Wed Jan 23, 2013 8:24 pm
Forum: newLISP in the real world
Topic: Source code for uptime.is
Replies: 2
Views: 2231

Re: Source code for uptime.is

Great and clean script. I just need to determine my home server's SLA ;-)
by hilti
Wed Jan 09, 2013 3:01 pm
Forum: Whither newLISP?
Topic: How to get newLISP popular?
Replies: 11
Views: 13064

Re: How to get newLISP popular?

Here are some good links about the iOS Guidelines In short: iOS does not allow shared libraries! Why? They are afraid your app will download a new version of the shared library at runtime and change the behavior and thus circumvent the whole Apple App Store Review process. http://blog.burhum.com/pos...
by hilti
Tue Jan 08, 2013 4:04 pm
Forum: Whither newLISP?
Topic: How to get newLISP popular?
Replies: 11
Views: 13064

How to get newLISP popular?

Over three years now I'm using newLISP for several projects, most of them were web projects. During these years I've experimented with other LISPs like clisp, clojure and so on, but always coming back to newLISP because it's more fun and easier to solve my computing tasks. So how will get newLISP mo...
by hilti
Sat Dec 29, 2012 7:51 pm
Forum: newLISP and the O.S.
Topic: Benchmarking newLISP
Replies: 28
Views: 26993

Re: Benchmarking newLISP

Corrected. I've just played around ;-) I think newLISP and the Raspberry Pi are a wonderful couple, because 1. newLISP can be used for distributed computing tasks between several Raspberry Pi's 2. Uses less memory than other scripting languages (I think Python on a Pi is too much) 3. Is fast enough ...
by hilti
Sat Dec 29, 2012 8:31 am
Forum: newLISP and the O.S.
Topic: Benchmarking newLISP
Replies: 28
Views: 26993

Re: Benchmarking newLISP

Here is a result at 900 mHz (overclocked with the raspi-config tool)

Code: Select all

>>>>> Benchmarking all non I/O primitives ... may take a while ...
   13575.5 ms
>>>>> Performance ratio: 5.37 (1.0 on Mac OSX, 1.83 GHz Core 2 Duo, newLISP v10.2.8)
by hilti
Sat Dec 29, 2012 8:19 am
Forum: newLISP and the O.S.
Topic: Benchmarking newLISP
Replies: 28
Views: 26993

Re: Benchmarking newLISP

Here's a result for newLISP 10.4.5 on a Raspberry Pi (700 mHZ, 256 MB RAM) pi@raspberrypi /tmp/newlisp-10.4.5/qa-specific-tests $ newlisp qa-bench >>>>> Benchmarking all non I/O primitives ... may take a while ... 17001.4 ms >>>>> Performance ratio: 6.72 (1.0 on Mac OSX, 1.83 GHz Core 2 Duo, newLISP...
by hilti
Wed Dec 26, 2012 7:36 pm
Forum: newLISP in the real world
Topic: SHA2 Module
Replies: 4
Views: 2712

Re: SHA2 Module

Good idea doing a native newLISP SHA2.

Here's another version written in Common Lisp. Maybe it's another starting point.
http://common-lisp.net/project/clbuild/ ... ha256.lisp
by hilti
Sat Oct 27, 2012 6:22 pm
Forum: newLISP in the real world
Topic: newLISP on Rockets
Replies: 20
Views: 12181

Re: newLISP on Rockets

@Darth Severus Oh, I just started to learn how dragonfly works, as a complete beginner in webdesign. Isn't http://www.rundragonfly.com a good starting point to learn Dragonfly? Greg and I wrote a lot documentation to get used to the simple development cycle when using Dragonfly. What's missing? Chee...
by hilti
Thu Oct 25, 2012 2:23 pm
Forum: newLISP in the real world
Topic: newLisp and DynamoDB (Amazon)
Replies: 2
Views: 2331

Re: newLisp and DynamoDB (Amazon)

No. But seems indeed possible to solve.

How did You manage to get CouchDB working? Because I think the interface is only accessible via https.

Cheers
Hilti
by hilti
Tue Oct 23, 2012 7:39 pm
Forum: newLISP in the real world
Topic: newLISP on Rockets
Replies: 20
Views: 12181

newLISP on Rockets

Hi!

Does anyone know who's behind "Dragonfly reloaded" ;)
http://newlisponrockets.com/

bye
Marc
by hilti
Tue Sep 11, 2012 5:15 am
Forum: newLISP in the real world
Topic: Socket webserver
Replies: 1
Views: 1413

Socket webserver

Hi! I don't understand why I can't access an established socket connection via my browser or telnet? I'm trying to build a simple socket-based webserver. server.lsp #!/usr/bin/env newlisp ;; SET IP and PORT (set 'ip "127.0.0.2") (set 'port 8080) ;; BUILD UP SOCKET (set 'connection (net-listen port i...
by hilti
Tue Sep 11, 2012 5:05 am
Forum: newLISP in the real world
Topic: DESBUY.com - my newLISP bootstrapped project
Replies: 3
Views: 1920

Re: DESBUY.com - my newLISP bootstrapped project

Thanks cormullion! Hopefully my site is usefully for You. Did you go with Dragonfly or a newer framework...? Dragonfly and some custom developed modules. I used it again, because developing is straightforward and I want a minimum viable product after a hacking session at the weekend. A new web frame...
by hilti
Mon Sep 10, 2012 7:35 pm
Forum: newLISP in the real world
Topic: DESBUY.com - my newLISP bootstrapped project
Replies: 3
Views: 1920

DESBUY.com - my newLISP bootstrapped project

Hi newLISPers! Today my first bootstrapped website project launched. DESBUY http://www.desbuy.com . It's a platform for finding local design furniture. Currently is backed by eBay, local dealers coming soon. It's entirely based on newLISP Code and runs on Amazon EC2 (micro instance). Geolocation is ...
by hilti
Mon Aug 27, 2012 6:40 pm
Forum: newLISP in the real world
Topic: Amazon.lsp module
Replies: 0
Views: 2200

Amazon.lsp module

Hi! Does anyone successfully used the amazon.lsp library? I get an error when trying to list all my S3 buckets with (amazon:list-all-buckets 1000) The error code is ERR: server code 400: HTTP/1.1 400 Bad Request <Error><Code>InvalidArgument</Code><Message>AWS authorization header is invalid. Expecte...
by hilti
Sat Jul 28, 2012 8:57 am
Forum: newLISP in the real world
Topic: Simple install bash script for newLISP on Amazon EC2
Replies: 0
Views: 2271

Simple install bash script for newLISP on Amazon EC2

Hi Guys! I'm providing my script to install newLISP on an Amazon EC2 instance. It installs all depending libraries and automatically installs newLISP. Tested on EC2 micro instance with Ubuntu AMI. Cheers Hilti #!/bin/bash # Simple bash script for installing newLISP on Amazon EC2, Ubuntu 12.04 AMI # ...
by hilti
Sat Jun 30, 2012 9:38 pm
Forum: newLISP in the real world
Topic: Geospatial libraries and GooglePlaces API wrapper
Replies: 0
Views: 2411

Geospatial libraries and GooglePlaces API wrapper

Hi Guys! I've just pushed two new libraries to my Github. GeoTools Using the Google Maps API You are able to get an address by given latitude and longitude (vice versa) and calculate distance between two points. https://github.com/marchildmann/newlisp-geotools GooglePlaces This is the world's first ...
by hilti
Thu Apr 05, 2012 3:18 pm
Forum: Anything else we might add?
Topic: Scheme on the iPad
Replies: 1
Views: 2650

Scheme on the iPad

I'm wondering if this way a newLISP iPad App is possible? I always thought, that scripting languages and interpreter are not allowed in an app.

http://slidetocode.com/2012/04/05/lisping-released/

- Hilti
by hilti
Tue Jan 24, 2012 10:31 pm
Forum: newLISP newS
Topic: Updated links for modules page
Replies: 4
Views: 4602

Re: Updated links for modules page

It's still RunDragonfly.com ;-)
I just had some server issues on my old host.

Cheers
Hilti
by hilti
Tue Dec 20, 2011 9:34 pm
Forum: newLISP in the real world
Topic: crypto.lsp sha256
Replies: 4
Views: 2360

Re: crypto.lsp sha256

Just a quick hack. I've added this code to crypto.lsp (import library "SHA256") ;; @syntax (crypto:sha256 <string> <bool-raw>) ;; @param <string> The string buffer for which to calculate a SHA-256 hash ;; @param <bool-raw> Return the raw binay buffer when 'true'. ;; @return The 32 Byte SHA-1 hash as...
by hilti
Sat Oct 22, 2011 5:32 am
Forum: newLISP and the O.S.
Topic: newLISP on Snow Leopard
Replies: 9
Views: 6805

Re: newLISP on Snow Leopard

I tried to install newlisp on my new Mac mini today. Everything reports ok, but all I get is the logo: the editor doesn't open. Can someone help? Hi Jazper! I've got the same problem when pluggin in my T-Mobile 3G Stick and running their bad programmed Java dial-in software. If I quit this piece of...
by hilti
Thu Sep 08, 2011 4:37 pm
Forum: Dragonfly
Topic: Help on first time Dragonfly install
Replies: 6
Views: 7808

Re: Help on first time Dragonfly install

Hi Ricky! Never got this error in Dragonfly, but Pete's solution looks good. I'm the author of the first Dragonfly versions up to 0.5 Then Greg put in some very good code into the framework, but hard to read and maintain for me. That's why I don't feel like the "father of Dragonfly" anymore. I've st...