Happy New Year everyone! This is a nice project:
http://www.technoblogy.com/show?2AEE
Search found 140 matches
- Fri Jan 11, 2019 10:15 am
- Forum: Anything else we might add?
- Topic: Lisp badge
- Replies: 0
- Views: 8795
- Thu Aug 16, 2018 5:01 pm
- Forum: newLISP in the real world
- Topic: Any new releases, planned future
- Replies: 5
- Views: 8872
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...
- Fri Nov 13, 2015 1:07 pm
- Forum: newLISP newS
- Topic: Book about Fuzzy Logic in newLISP
- Replies: 9
- Views: 24664
Re: Book about Fuzzy Logic in newLISP
Great! newLISP rocks :-)
- Mon Jul 13, 2015 4:23 pm
- Forum: Anything else we might add?
- Topic: Ceramic: bring web apps to desktop
- Replies: 2
- Views: 8175
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
http://ceramic.github.io
Discussion on HackerNews over here
https://news.ycombinator.com/item?id=9877314
- 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: 11364
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...
- Mon Jul 13, 2015 11:26 am
- Forum: Dragonfly
- Topic: Dragonfly Snippet: send CSV file to client's browser
- Replies: 0
- Views: 7353
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 '...
- Tue May 12, 2015 7:00 pm
- Forum: Dragonfly
- Topic: How to tell if route_cgi.lsp is running?
- Replies: 10
- Views: 23686
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...
- Tue May 12, 2015 10:50 am
- Forum: Dragonfly
- Topic: How to tell if route_cgi.lsp is running?
- Replies: 10
- Views: 23686
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...
- Mon Mar 23, 2015 1:50 pm
- Forum: newLISP in the real world
- Topic: Just starting with newLISP
- Replies: 4
- Views: 6873
Re: Just starting with newLISP
Look's like an impressive small hardware. How's the performance?mcc wrote: is *very* nice since anything else Lisplike failed
on my Arietta
Cheers
Marc
- Fri Jan 23, 2015 5:09 am
- Forum: newLISP newS
- Topic: newLISP stable release 10.6.2
- Replies: 20
- Views: 39031
Re: newLISP stable release 10.6.2
Thank You Lutz from Germany :-)
- 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: 3205
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...
- Sat Jan 04, 2014 8:14 pm
- Forum: newLISP newS
- Topic: newLISP in a browser
- Replies: 115
- Views: 201583
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...
- Sat Jan 04, 2014 6:32 pm
- Forum: newLISP newS
- Topic: newLISP in a browser
- Replies: 115
- Views: 201583
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...
- Sat Jan 04, 2014 2:01 pm
- Forum: newLISP newS
- Topic: newLISP in a browser
- Replies: 115
- Views: 201583
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...
- Sun Dec 15, 2013 11:17 am
- Forum: newLISP Graphics & Sound
- Topic: HTML Tag functions?
- Replies: 10
- Views: 19901
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...
- Sun Sep 01, 2013 8:33 am
- Forum: Anything else we might add?
- Topic: Fuzzy logic using newLISP
- Replies: 6
- Views: 9778
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 ...
- Fri Aug 09, 2013 12:51 pm
- Forum: newLISP in the real world
- Topic: FOOP colon method invocation from string
- Replies: 8
- Views: 7573
Re: FOOP colon method invocation from string
Welcome to the powerful world of newLISP :-)
- 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: 15950
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...
- 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: 15950
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...
- 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: 11225
Re: gocurcon: Google Currency Converter Scrapper
Thanks for this useful and small scraper.
Best wishes
Marc
Best wishes
Marc
- Thu May 30, 2013 4:36 pm
- Forum: newLISP newS
- Topic: LispNYC holding Lisp project contest
- Replies: 2
- Views: 10445
Re: LispNYC holding Lisp project contest
Good to hear, isn't it? :-)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
Let's rock and roll
- Tue May 28, 2013 8:15 pm
- Forum: newLISP in the real world
- Topic: Parse very big XML file (Openstreetmap)
- Replies: 2
- Views: 4084
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 ...
- Wed May 08, 2013 11:49 am
- Forum: newLISP in the real world
- Topic: newLISP and big data?
- Replies: 5
- Views: 5704
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...
- Fri May 03, 2013 7:16 pm
- Forum: newLISP in the real world
- Topic: Authenticate to Dropbox API with newLISP
- Replies: 1
- Views: 3158
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...
- Wed Feb 13, 2013 5:42 am
- Forum: newLISP in the real world
- Topic: Using MaxMind's GeoIP.js
- Replies: 2
- Views: 3673
Re: Using MaxMind's GeoIP.js
Thanks so much Lutz! Especially for this explanation:
I didn't notice that find-all is so powerful.Transform data types using float on the sub-expression, the second $1 is the return value for the float function when conversion fails: