Search found 140 matches

by hilti
Fri Jan 11, 2019 10:15 am
Forum: Anything else we might add?
Topic: Lisp badge
Replies: 0
Views: 5325

Lisp badge

Happy New Year everyone! This is a nice project:

http://www.technoblogy.com/show?2AEE
by hilti
Thu Aug 16, 2018 5:01 pm
Forum: newLISP in the real world
Topic: Any new releases, planned future
Replies: 5
Views: 5621

Re: Any new releases, planned future

Thank you for the update, Lutz! Unfortunately I've not programmed using newLISP for a long time: after founding my company AppTruck I had to focus on app development, especially for iOS. But I've plans for rewriting Dragonfly and adapt some widely used modern technologies, e.g. easier API definition...
by hilti
Fri Nov 13, 2015 1:07 pm
Forum: newLISP newS
Topic: Book about Fuzzy Logic in newLISP
Replies: 9
Views: 14843

Re: Book about Fuzzy Logic in newLISP

Great! newLISP rocks :-)
by hilti
Mon Jul 13, 2015 4:23 pm
Forum: Anything else we might add?
Topic: Ceramic: bring web apps to desktop
Replies: 2
Views: 6405

Ceramic: bring web apps to desktop

That's an interesting approach.
http://ceramic.github.io

Discussion on HackerNews over here
https://news.ycombinator.com/item?id=9877314
by hilti
Mon Jul 13, 2015 11:32 am
Forum: newLISP and the O.S.
Topic: Newlisp-GS on OSX10.10 with Java 1.8
Replies: 3
Views: 6535

Re: Newlisp-GS on OSX10.10 with Java 1.8

When people have problems, its often the port used. Currently on 10.6.2, 2000 and 2001 are used, and that may be your problem. This was my problem when trying to load newLISP-GS in a company network environment. They blocked a lot of ports and newLISP-GS couldn't start up. Took me an hour to figure...
by hilti
Mon Jul 13, 2015 11:26 am
Forum: Dragonfly
Topic: Dragonfly Snippet: send CSV file to client's browser
Replies: 0
Views: 4593

Dragonfly Snippet: send CSV file to client's browser

Hi! Maybe this help's, if someone needs to send data in CSV format to a browser. In this example a Dragonfly Route "www.mysite.com/csvexport" is called, a SQLite dump is produced on the fly and send out to the browser. I needed this quick workaround in an Admin-Interface. Cheers Marc (new Resource '...
by hilti
Tue May 12, 2015 7:00 pm
Forum: Dragonfly
Topic: How to tell if route_cgi.lsp is running?
Replies: 10
Views: 13007

Re: How to tell if route_cgi.lsp is running?

what happened to http://www.rundragonfly.com? I just quit a lot of rare used domains including this one. I'll put the Dragonfly Example Site under my current main domain uberberg.com. Or just Google "dragonfly example-site" ( https://www.google.de/#q=dragonfly+example-site&start=10 ) to find some D...
by hilti
Tue May 12, 2015 10:50 am
Forum: Dragonfly
Topic: How to tell if route_cgi.lsp is running?
Replies: 10
Views: 13007

Re: How to tell if route_cgi.lsp is running?

Hi Ghyll! Welcome to the newLISP world! Any questions are great and will help others learning. First questions: 1. Why are You using .nhtml as extension for the views - just use .html and Dragonfly will execute it 2. Working with forms is easier via resources ( http://dragonfly.neocortex.io/dragonfl...
by hilti
Mon Mar 23, 2015 1:50 pm
Forum: newLISP in the real world
Topic: Just starting with newLISP
Replies: 4
Views: 4668

Re: Just starting with newLISP

mcc wrote: is *very* nice since anything else Lisplike failed
on my Arietta
Look's like an impressive small hardware. How's the performance?

Cheers
Marc
by hilti
Fri Jan 23, 2015 5:09 am
Forum: newLISP newS
Topic: newLISP stable release 10.6.2
Replies: 20
Views: 20848

Re: newLISP stable release 10.6.2

Thank You Lutz from Germany :-)
by hilti
Sat Feb 01, 2014 10:55 pm
Forum: newLISP in the real world
Topic: Bayes query results just 0.5 or 1
Replies: 1
Views: 2141

Bayes query results just 0.5 or 1

I don't get it ... since two hours I'm trying to train some website data, but don't get the expected results. (bayes-query) returns 0.5 or 1 I'm using the complex pattern in (parse) to split up german texts, too. Here's my code: (setq textdata "Now think about your brain. It’s a long running program...
by hilti
Sat Jan 04, 2014 8:14 pm
Forum: newLISP newS
Topic: newLISP in a browser
Replies: 115
Views: 133799

Re: newLISP in a browser

Ps: thanks for the great examples Marc. Do you also get this “undefined” message HPW is talking about? And what browser version do you run? Yes, I do. I'm running on OSX Mavericks 1. Safari 7.01 2. Chrome 31.0.1650.63 P.S. Reddit seems to be interested, because I get some load on my server ... http...
by hilti
Sat Jan 04, 2014 6:32 pm
Forum: newLISP newS
Topic: newLISP in a browser
Replies: 115
Views: 133799

Re: newLISP in a browser

(eval-string-js) is very cool! Just played around with it: (setq number (eval-string-js "window.prompt('Enter a number to divide by 2:','')")) (setq result (div (int number) 2)) (setq alert (append "alert(" (string result) ")")) (eval-string-js alert) Getting the browser window height or width is ea...
by hilti
Sat Jan 04, 2014 2:01 pm
Forum: newLISP newS
Topic: newLISP in a browser
Replies: 115
Views: 133799

Re: newLISP in a browser

- Improve the editor using JavaScript from other projects which do editor syntax highlighting like http://jsfiddle.net/ , http://ace.c9.io/#nav=about (comes with embedding instructions!) and many others. JavaScript is the only language builtin to the browser and with Document Object Model integrati...
by hilti
Sun Dec 15, 2013 11:17 am
Forum: newLISP Graphics & Sound
Topic: HTML Tag functions?
Replies: 10
Views: 11667

Re: HTML Tag functions?

I like this approach, available on Github HTML Domain Specific Language (DSL) for newLISP ——————————————————————————————————————————————— The idea is to be able to write newlisp code as if you were writing HTML, avoiding the use of template tags. So instead of writing: <html lang="en"> <head> <title...
by hilti
Sun Sep 01, 2013 8:33 am
Forum: Anything else we might add?
Topic: Fuzzy logic using newLISP
Replies: 6
Views: 6731

Re: Fuzzy logic using newLISP

Just in case you want to play with fuzzy logic, take a peek: http://www.intricatevisions.com/index.cgi?page=nlfuzzy You will find a fuzzy logic library and an example of water temperature regulation. Fanda Hi! Does anyone have a copy of this library? The website seems to be down and I'm interested ...
by hilti
Fri Aug 09, 2013 12:51 pm
Forum: newLISP in the real world
Topic: FOOP colon method invocation from string
Replies: 8
Views: 4322

Re: FOOP colon method invocation from string

Welcome to the powerful world of newLISP :-)
by hilti
Sun Aug 04, 2013 9:18 pm
Forum: So, what can you actually DO with newLISP?
Topic: Just share what newlisp does for me here
Replies: 7
Views: 9143

Re: Just share what newlisp does for me here

Hi Ricky! Dragonfly is rock-solid for my needs. By using the internal Resources API it's very flexible when talking to or receiving web services. So I'm not working on Dragonfly II. ;) Here's a sample CRUD skeleton for a model "coaching": (DF:activate-plugin "official/sqlite3") (new Resource 'Resour...
by hilti
Sun Aug 04, 2013 1:14 pm
Forum: So, what can you actually DO with newLISP?
Topic: Just share what newlisp does for me here
Replies: 7
Views: 9143

Re: Just share what newlisp does for me here

My current project is a dashboard analytics for a field sales force. Sales people can track in real-time their leads, offers and sales. The CEO Board have a nice visualization with many charts and graphics. It's powered by a custom tuned Dragonfly Framework with Twitter Bootstrap and lot's of JQuery...
by hilti
Fri Jun 21, 2013 11:45 am
Forum: So, what can you actually DO with newLISP?
Topic: gocurcon: Google Currency Converter Scrapper
Replies: 2
Views: 5494

Re: gocurcon: Google Currency Converter Scrapper

Thanks for this useful and small scraper.

Best wishes
Marc
by hilti
Thu May 30, 2013 4:36 pm
Forum: newLISP newS
Topic: LispNYC holding Lisp project contest
Replies: 2
Views: 8692

Re: LispNYC holding Lisp project contest

Marc,

Officially, newLISP is undeniably a lisp and can be used in Lisp in Summer Projects.

Personally, I'd love to see some newLISP projects! Anything in particular you have in mind?

Heow Goodman
Lisp In Summer Projects
Good to hear, isn't it? :-)

Let's rock and roll
by hilti
Tue May 28, 2013 8:15 pm
Forum: newLISP in the real world
Topic: Parse very big XML file (Openstreetmap)
Replies: 2
Views: 2551

Parse very big XML file (Openstreetmap)

Hi! Does anyone have experience in parsing large OSM (Openstreetmap) files? I'm trying to parse them with (xml-parse) but I get an error from newLISP telling me that there's not enough memory for (read-file) The file is 32GB (gigabytes!). Here's the error message: newlisp -m 4096 -s 10000 parse.lsp ...
by hilti
Wed May 08, 2013 11:49 am
Forum: newLISP in the real world
Topic: newLISP and big data?
Replies: 5
Views: 3526

newLISP and big data?

Hi! I've just come across this blog post and wondered if the Gist shown there is newLISP? Because the use of (nth) looks pretty familiar to me. http://blog.bugsense.com/post/49924755479/bigdata-in-motion-building-a-real-time-android What Do You think? (load "stdlib.lql") (load "dblib.lql") (timespac...
by hilti
Fri May 03, 2013 7:16 pm
Forum: newLISP in the real world
Topic: Authenticate to Dropbox API with newLISP
Replies: 1
Views: 2079

Authenticate to Dropbox API with newLISP

Hi newLISPers here comes a quick hack for the weekend. I needed a way to authenticate against the Dropbox API for one of my projects. Unfortunately the API uses oAuth and needs "https" so I have to use the CURL library instead of newLISP build-in (get-url). At first You need to create Your own Dropb...
by hilti
Wed Feb 13, 2013 5:42 am
Forum: newLISP in the real world
Topic: Using MaxMind's GeoIP.js
Replies: 2
Views: 2344

Re: Using MaxMind's GeoIP.js

Thanks so much Lutz! Especially for this explanation:
Transform data types using float on the sub-expression, the second $1 is the return value for the float function when conversion fails:
I didn't notice that find-all is so powerful.