Re: [Readable-discuss] Readable Lisp 2.0, brainstorming

2017-02-20 Thread David A. Wheeler
cal. And you don't need *any* magic to display the boxes. So, when will you be implementing a prototype :-) ? --- David A. Wheeler -- Check out the vibrant tech community on one of

Re: [Readable-discuss] using sweeten with newlisp

2016-09-25 Thread David A. Wheeler
>I suppose I could define a function that swaps the first 2 arguments >then >evaluates. In newlisp, this won't cause any slowdown. Curly-infix does a little more than that. Feel free to steal its code, it is under the MIT license. If there are only three arguments, then it does indeed just

Re: [Readable-discuss] using sweeten with newlisp

2016-09-21 Thread David A. Wheeler
as the underlying Scheme is. It probably hasn't been adequately tested that way, but if it's not, it's a bug and needs to be fixed. --- David A. Wheeler -- ___ Readable-di

[Readable-discuss] cl-metamath in sweet-expressions

2016-09-12 Thread David A. Wheeler
Fyi, I've been implementing a library in common lisp using sweet expressions. It is not quite ready for prime time, but you might find it amusing here: https://github.com/david-a-wheeler/cl-metamath --- David A.Wheeler

Re: [Readable-discuss] Readable Lisp 2.0, brainstorming

2016-09-05 Thread David A. Wheeler
wisp developers have created another. But you have to consider the general case. If you limit yourself to symbols with fixed meanings, there are other languages that already do the job. If you're going to use a Lisp, it should be because Lisp provides some advantage to you. --- David A. Wheeler

Re: [Readable-discuss] Readable Lisp 2.0, brainstorming

2016-09-05 Thread David A. Wheeler
to the underlying representation. You're certainly welcome to try some things out - I'm a little skeptical that it's worth the work, but the proof is always in the doing. --- David A. Wheeler -- __

[Readable-discuss] Plan to post updated readable library

2015-05-25 Thread David A. Wheeler
I plan to release an updated readable library, based on the current development version. The changes are relatively small, and most of the changes are for Common Lisp. If there are any issues, please post quickly. Thanks! --- David A. Wheeler

Re: [Readable-discuss] :depends-on readable not working

2014-12-07 Thread David A. Wheeler
-toplevel :execute) (readable:enable-sweet)) Once QuickLisp picks up the update, the problem should disappear. --- David A. Wheeler -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate

Re: [Readable-discuss] :depends-on readable not working

2014-12-06 Thread David A. Wheeler
: mkdir /home/dwheeler/local-projects/help ... unzipped and put .lisp, .asd, etc. in that directory ... sbcl (push #p/home/dwheeler/local-projects/help/ asdf:*central-registry*) (ql:quickload help) --- David A. Wheeler

Re: [Readable-discuss] :depends-on readable not working

2014-12-06 Thread David A. Wheeler
help.lisp. On first blush, this looks like missing 'eval-when' clauses in the readable package. --- David A. Wheeler -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge

Re: [Readable-discuss] :depends-on readable not working

2014-12-06 Thread David A. Wheeler
. --- David A. Wheeler -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App

[Readable-discuss] Discussion: Should leading . in sweet-expressions have wisp semantics?

2014-11-26 Thread David A. Wheeler
). A . with a single n-expression is interpreted this way now. Currently, it's illegal to have more than 1 n-expression on a line; this change would relax that rule. Anyway, thoughts welcome, pro or con. --- David A. Wheeler

Re: [Readable-discuss] wisp and readable - common expressions

2014-11-21 Thread David A. Wheeler
David A. Wheeler: If wisp interpreted neoteric-expressions by default, then many more expressions work in both systems... On Fri, 21 Nov 2014 22:38:13 +0100, Arne Babenhauserheide arne_...@web.de wrote: That’s true, but then lines with a single element would be treated differently than

[Readable-discuss] wisp and readable - common expressions

2014-11-19 Thread David A. Wheeler
this; if something is a symbol, and the list is not too long (e.g., 16 items or so), it's presented in f(...) format. So while neoteric-expressions provide two ways to write something, in practice, there's a more readable way that better expresses the purpose in each case. --- David A. Wheeler

Re: [Readable-discuss] wisp now defaults to activating curly-infix

2014-11-18 Thread David A. Wheeler
that, that's all. Thanks. --- David A. Wheeler -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native

Re: [Readable-discuss] wisp now defaults to activating curly-infix

2014-11-13 Thread David A. Wheeler
that in the wisp semantics, using a neoteric expression at the *beginning* of a line would be especially confusing. But not everything is at the beginning of a line, and using them afterwards would (I think) be sensible). E.G.: sqrt cos(a) sin(a) --- David A. Wheeler

Re: [Readable-discuss] Clojure supports UTF-8 (thus, easy Unicode support)

2014-11-09 Thread David A. Wheeler
the semantics of {...} would increase its likelihood of acceptance in Clojure. Also, the BDFL of Clojure objected to *any* infix support a few years ago. Don't know if that's still true or not. --- David A. Wheeler

[Readable-discuss] math.slisp: A readable notation demo in Common Lisp

2014-11-09 Thread David A. Wheeler
implementations as-is, though it's been tested more on clisp and sbcl. --- David A. Wheeler -- ___ Readable-discuss mailing list Readable-discuss@lists.sourceforge.net https

[Readable-discuss] Clojure supports UTF-8 (thus, easy Unicode support)

2014-10-29 Thread David A. Wheeler
here: https://stackoverflow.com/questions/1431008/enabling-utf-8-encoding-for-clojure-source-files --- David A. Wheeler -- ___ Readable-discuss mailing list Readable-discuss

Re: [Readable-discuss] Unicode matching brackets as alternatives to {...} for languages such as Clojure

2014-10-29 Thread David A. Wheeler
other applications do the same. There's no doubt that it is easier to use ASCII than anything else. On the other hand, we've been working to move to a Unicode world for years. Perhaps the world is finally ready :-). --- David A. Wheeler

Re: [Readable-discuss] Using readable with clojure

2014-10-28 Thread David A. Wheeler
(!). In Clojure [...] and (...) have a different meaning, but it seems to me that we should just leave [...] as-is. Parens are way more common for enclosing larger scopes, as far as I can tell. --- David A. Wheeler

Re: [Readable-discuss] Using readable with clojure

2014-10-27 Thread David A. Wheeler
thought though. You can model many other things by creating a macro that passes the parameters through it. --- David A. Wheeler -- ___ Readable-discuss mailing list Readable

[Readable-discuss] Readable example: math.slisp

2014-10-27 Thread David A. Wheeler
FYI, I have posted a simple math expression simplifier written in Common Lisp. It is written using sweet-expressions and itself reads and writes sweet-expressions: http://sourceforge.net/p/readable/code/ci/develop/tree/math.slisp --- David

Re: [Readable-discuss] Using readable with clojure

2014-10-26 Thread David A. Wheeler
Not at all. The whole point is to have a syntax that is general, and not tied to a particular semantic. Clearly it needs to be useful for a given semantic, but not tied to it. On October 26, 2014 10:43:17 PM EDT, John Cowan co...@mercury.ccil.org wrote: David A. Wheeler scripsit: In Clojure

[Readable-discuss] RELEASE of readable-1.0.5

2014-10-18 Thread David A. Wheeler
notations (Scheme already had this). The QuickLisp version should automatically update when they do their package updates. Enjoy! --- David A. Wheeler -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers

[Readable-discuss] Common Lisp printing pushed into devel branch

2014-10-15 Thread David A. Wheeler
., numbers and symbols) and conses, though not other Common Lisp datatypes (yet). --- David A. Wheeler -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted through email, SMS

Re: [Readable-discuss] Error when no empty line at end of file

2014-10-12 Thread David A. Wheeler
should gracefully handle it. The fix turns out to be trivial, and is included below for your amusement. Basically, procedure it-expr-real didn't handle EOF-without-EOL gracefully. I expect this patch will be in the next release. --- David A. Wheeler

Re: [Readable-discuss] Error when no empty line at end of file

2014-10-11 Thread David A. Wheeler
? --- David A. Wheeler -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper

Re: [Readable-discuss] Sweetening code with #'

2014-10-11 Thread David A. Wheeler
, but the semantics of #' differ between Scheme and Common Lisp, so the sweeten program has to know that you're using Common Lisp semantics. --- David A. Wheeler -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer

Re: [Readable-discuss] Sweetening code with #'

2014-10-04 Thread David A. Wheeler
Are you using the -C option in sweeten? By default, sweeten assumes scheme syntax. You need -C so that it knows that you are processing Common Lisp On October 4, 2014 10:00:23 AM EDT, martijn brekelmans tijntj...@msn.com wrote: I'm new to lisp and I thought using readable would be a great

[Readable-discuss] Fwd: Readable Lisp - conment from Yves Cloutier

2014-09-15 Thread David A. Wheeler
Fyi: we got a nice email, below, and I got permission to share it. Original Message From: Yves Cloutier yves.clout...@gmail.com Sent: September 15, 2014 4:57:21 PM EDT To: dwhee...@dwheeler.com Subject: Readable Lisp Hello David, I just came across your Readable Lisp page and

Re: [Readable-discuss] Readable Lisp version 1.0.4 released!!

2014-07-09 Thread David A. Wheeler
. The code is *written* with modern Scheme, but it tries to detect guile 1.6 and then patch as necessary. --- David A. Wheeler -- Open source business process management suite built on Java and Eclipse Turn processes

[Readable-discuss] Common Lisp printing - early feedback/comments?

2014-07-06 Thread David A. Wheeler
them into their local namespace without problems. --- David A. Wheeler = Output routines for readable notations. Use *print-notation* to decide what notation to use when writing. Some of this code is derived from SBCL, which was in turn

[Readable-discuss] Readable Lisp version 1.0.4 released!!

2014-07-04 Thread David A. Wheeler
/readable/wiki/Install-howto/ Website for all other information: http://readable.sourceforge.net/ Enjoy! --- David A. Wheeler -- Open source business process management suite built on Java and Eclipse Turn processes

[Readable-discuss] All okay for an updated release?

2014-07-01 Thread David A. Wheeler
if necessary). If anyone else could test it, that'd be great! I've tested this on several different systems. Also, patches to remove the warnings generated by guile 2.0 (listed below) while not interfering with other Schemes would be great. --- David A. Wheeler === guile 2.0 warnings

Re: [Readable-discuss] Build error with guile-2.0

2014-06-30 Thread David A. Wheeler
and switch to develop branch autoreconf -i Then configure, build, and test as usual: ./configure --prefix=/usr make make check --- David A. Wheeler -- Open source business process management suite built on Java and Eclipse

Re: [Readable-discuss] Readable version 1.0.2 released!

2014-06-29 Thread David A. Wheeler
handy, but I do have guile 1.8. In 1.8, this works: (case #\a (else (display hi))) yet this fails: (define else #t) (case #\a (else (display hi))) and I suspect the same would be true for guile 1.6. Thanks for the idea though!! --- David A. Wheeler

Re: [Readable-discuss] Readable version 1.0.2 released!

2014-06-28 Thread David A. Wheeler
), over 8 years ago. Perhaps more importantly, GNU Guile 2.0.0 was released on 2011-02-16. That's enough time for most people to have updated beyond 1.6, and over time I expect that even fewer and fewer people will care about guile version 1.6. --- David A. Wheeler

Re: [Readable-discuss] Readable version 1.0.2 released!

2014-06-25 Thread David A. Wheeler
working code. --- David A. Wheeler -- Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data

Re: [Readable-discuss] Readable version 1.0.2 released!

2014-06-24 Thread David A. Wheeler
Drat. What do you suggest? On June 24, 2014 5:28:39 PM EDT, Alan Manuel Gloria almkg...@gmail.com wrote: On Mon, Jun 23, 2014 at 3:41 AM, David A. Wheeler dwhee...@dwheeler.com wrote: Version 1.0.2 of the readable package is now available!! It's a collection of small tweaks and improvements

[Readable-discuss] Readable version 1.0.2 released!

2014-06-22 Thread David A. Wheeler
avoiding incompatible language changes as critically important. Below is the ChangeLog entry for this version, which describes the highlights. If you want more detail, git log -p will tell all. --- David A. Wheeler ChangeLog for version 1.0.2: * Various minor Scheme bug fixes, e.g

Re: [Readable-discuss] [PATCH] fix: sweet-run invokes mktemp in a Darwin-friendly way

2014-06-15 Thread David A. Wheeler
*think* I fixed it. Was there something else? --- David A. Wheeler -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast

Re: [Readable-discuss] spinoff wisp srfi

2014-06-08 Thread David A. Wheeler
simple is its own problem. All we *really* need is 1 and 0; anything else is extraneous syntax :-). --- David A. Wheeler -- Learn Graph Databases - Download FREE O'Reilly Book Graph Databases is the definitive new guide

Re: [Readable-discuss] Damage done.

2014-05-09 Thread David A. Wheeler
need to insert some additional logic to ensure that it doesn't do the reordering that is normally done inside {...}. --- David A. Wheeler -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149

Re: [Readable-discuss] Damage done.

2014-05-09 Thread David A. Wheeler
/specs/web-apps/current-work/multipage/tokenization.html#tag-open-state --- David A. Wheeler -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM is hindering your

Re: [Readable-discuss] I've got a problem with the readability.

2014-05-07 Thread David A. Wheeler
how they look. These could be considered synonyms, as extensions to the existing system. --- David A. Wheeler -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM

Re: [Readable-discuss] I've got a problem with the readability.

2014-05-07 Thread David A. Wheeler
readers: 1. The Scheme one (tested mostly with guile) 2. Common Lisp 3. ANTLR/Java implementation (primarily for grammar analysis). Anyone can always implement another. We want it to be as easy as possible to implement it, while limiting the difficulties of doing so. --- David A. Wheeler

Re: [Readable-discuss] I've got a problem with the readability.

2014-05-07 Thread David A. Wheeler
, though. --- David A. Wheeler -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM is hindering your productivity #149; Requirements for releasing software faster #149

Re: [Readable-discuss] I've got a problem with the readability.

2014-05-07 Thread David A. Wheeler
it, and then use some preprocessor to transform it into valid XML (or use a tweaked XML processor that interpreted it specially). --- David A Wheeler -- Is your legacy SCM system holding you back? Join Perforce May 7

Re: [Readable-discuss] My first attempt: a process manager

2014-01-03 Thread David A. Wheeler
That is awesome! Thanks for letting us know! Mike Gran spk...@yahoo.com wrote: Hi.  I thought I'd take a stab at using your readable project Result is attached.  It is a process manager: a structure holds a list of functions and data and call the functions as a unit. Functions that return #f

Re: [Readable-discuss] treatment of quote symbol

2013-12-06 Thread David A. Wheeler
). This was never specified in SRFI-110 (or Scheme), so it's not a spec change... it's just a way to more strict in a standards-compliant way. --- David A. Wheeler -- Sponsored by Intel(R) XDK Develop, test and display web

Re: [Readable-discuss] treatment of quote symbol

2013-12-05 Thread David A. Wheeler
part of a symbol. That's all rather confusing and causes so much incompatibility. Its this really intended or just an oversight? What do you think x'x *should* mean? That's incredibly ugly! --- David A. Wheeler

Re: [Readable-discuss] Reorganize to reduce namespace pollution and maximally create library

2013-12-05 Thread David A. Wheeler
in multiple circumstances. --- David A. Wheeler -- Sponsored by Intel(R) XDK Develop, test and display web and hybrid apps with a single code base. Download it for free now! http://pubads.g.doubleclick.net/gampad/clk?id

Re: [Readable-discuss] Reorganize to reduce namespace pollution and maximally create library

2013-11-26 Thread David A. Wheeler
that R7RS, especially R7RS-large, will make it possible to unify the islands. I think Scheme would be more compelling if people could actually work together :-). --- David A. Wheeler -- Rapidly troubleshoot problems

Re: [Readable-discuss] using t-expressions

2013-11-26 Thread David A. Wheeler
specifics on how to handle errors (since Schemes vary in this matter), and it makes sense that people will want to get errors. Guile 1.8 doesn't support srfi-23 or R7RS, so that would need to be implemented separately on guile. --- David A. Wheeler

Re: [Readable-discuss] Reorganize to reduce namespace pollution and maximally create library

2013-11-26 Thread David A. Wheeler
, we could put them in one file, so we wouldn't have to generate too many files. --- David A. Wheeler -- Rapidly troubleshoot problems before they affect your business. Most IT organizations don't have a clear picture

Re: [Readable-discuss] Reorganize to reduce namespace pollution and maximally create library

2013-11-25 Thread David A. Wheeler
be fairly widely available (I hope!). --- David A. Wheeler -- Shape the Mobile Experience: Free Subscription Software experts and developers: Be at the forefront of tech innovation. Intel(R) Software Adrenaline delivers

Re: [Readable-discuss] using t-expressions

2013-11-25 Thread David A. Wheeler
option for the code, or should we simply resort to the more standard behavior and error out via srfi-26 compatible code? This could even be a run-time configuration option. Does anyone have a preference? --- David A. Wheeler

Re: [Readable-discuss] Reorganize to reduce namespace pollution and maximally create library

2013-11-25 Thread David A. Wheeler
David A. Wheeler scripsit: How about cond-expands at the beginning to handle much of the shimming, On Mon, 25 Nov 2013 12:08:47 -0500, John Cowan co...@mercury.ccil.org wrote: As of the last time I looked, cond-expand wasn't supported by Racket, Scheme48/scsh, Larceny, Ypsilon, S7, or Sizzle

Re: [Readable-discuss] initial support for rscheme

2013-11-23 Thread David A. Wheeler
diffs size down. Smaller diffs sounds awesome to me!! --- David A. Wheeler -- Shape the Mobile Experience: Free Subscription Software experts and developers: Be at the forefront of tech innovation. Intel(R) Software

Re: [Readable-discuss] initial support for rscheme

2013-11-23 Thread David A. Wheeler
to readable-no-values, to reduce the risks of namespace issues. I'd hate to use something other :. --- David A. Wheeler P.S.: Here's define-syntax info for R5RS, R6RS, and R7RS: * R5RS states that define-syntax syntax definitions are valid only at the top level of a program (section 5.3, Syntax

[Readable-discuss] Type declarations

2013-11-23 Thread David A. Wheeler
. That assumes that type systems like Chicken and Racket accept the results of macros. But *can* we use macros to generate (: ...) type declarations? Should we? --- David A. Wheeler -- Shape the Mobile Experience: Free Subscription

Re: [Readable-discuss] initial support for rscheme

2013-11-22 Thread David A. Wheeler
. --- David A. Wheeler -- Shape the Mobile Experience: Free Subscription Software experts and developers: Be at the forefront of tech innovation. Intel(R) Software Adrenaline delivers strategic insight and game-changing

Re: [Readable-discuss] initial support for rscheme

2013-11-21 Thread David A. Wheeler
. --- David A. Wheeler -- Shape the Mobile Experience: Free Subscription Software experts and developers: Be at the forefront of tech innovation. Intel(R) Software Adrenaline delivers strategic insight and game-changing

Re: [Readable-discuss] initial support for rscheme

2013-11-21 Thread David A. Wheeler
permits them. Yeah, and I knew better too. In any case, I think this should be fine: (string-symbol +++CL-QUASIQUOTE-abbreviation+++) --- David A. Wheeler -- Shape the Mobile Experience: Free Subscription Software

Re: [Readable-discuss] A road block: #:

2013-11-19 Thread David A. Wheeler
stuff is interrelated, so I fear this approach may make it harder follow the guile portion. But maybe not. The obvious approach is to try and see. David A. Wheeler -- Shape the Mobile Experience: Free Subscription

[Readable-discuss] Getting the current development snapshot

2013-11-18 Thread David A. Wheeler
://sourceforge.net/p/readable/code/ci/develop/tree/src/kernel.scm?format=raw Note that the develop branch is what changes in development, while the master branch holds final distributed versions. --- David A. Wheeler

Re: [Readable-discuss] Fwd: Re: Supporting SRFI-110 in chicken (Joerg Wittenberger)

2013-11-18 Thread David A. Wheeler
to be a temporary shim for certain cases, not something we end up using everywhere, but I think you're right that it's plausible. --- David A. Wheeler -- DreamFactory - Open Source REST JSON Services for HTML5 Native Apps

Re: [Readable-discuss] Fwd: Re: Supporting SRFI-110 in chicken (Joerg Wittenberger)

2013-11-18 Thread David A. Wheeler
, most people don't futz with these settings (except at program begin), so it's worked fine. --- David A. Wheeler -- DreamFactory - Open Source REST JSON Services for HTML5 Native Apps OAuth, Users, Roles, SQL, NoSQL

Re: [Readable-discuss] noop patch - add type information

2013-11-18 Thread David A. Wheeler
no values or undefined values type-annotated as returning undefined. Thanks! I had to tweak them, but we now use (no-values). Note: Yesterday I added annotations for some of the procedures you didn't annotate. --- David A. Wheeler

Re: [Readable-discuss] A road block: #:

2013-11-18 Thread David A. Wheeler
Am 18.11.2013 15:25, schrieb David A. Wheeler: On Mon, 18 Nov 2013 13:23:32 +0100, Jörg F. Wittenberger joerg.wittenber...@softeyes.net wrote: In a first attempt to feed the source to some other Scheme I went ahead and sent it to the rscheme compiler. Doesn't work. It has

Re: [Readable-discuss] keyword support

2013-11-17 Thread David A. Wheeler
\na b c: d\n\n' | ./unsweeten (a b #:c d) --- David A. Wheeler -- DreamFactory - Open Source REST JSON Services for HTML5 Native Apps OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access Free app

Re: [Readable-discuss] noop patch - add type information

2013-11-17 Thread David A. Wheeler
David A. Wheeler scripsit: I like this idea. In a few places this patch changes return values to intentionally return (values)... which is also okay by me. On Sun, 17 Nov 2013 20:33:16 -0500, John Cowan co...@mercury.ccil.org wrote: For the record, I've never been a fan of returning zero

Re: [Readable-discuss] xyzzy: double code execution

2013-11-16 Thread David A. Wheeler
special objects so you can record comments. I don't know if that would meet your needs, and it'd clearly be a special case not normally used. I'm not even sure how to generate all cases nicely. Most people expect read to DROP comments :-). --- David A. Wheeler

[Readable-discuss] Fwd: Re: Supporting SRFI-110 in chicken (Joerg Wittenberger)

2013-11-16 Thread David A. Wheeler
are easier to review for correctness. We have a rather extensive test suite, but I don't want to depend on that as our SOLE determiner of correctness. --- David A. Wheeler - End Forwarded Message - -- DreamFactory

[Readable-discuss] Last minute comments before version 1.0.0?

2013-10-12 Thread David A. Wheeler
I think version 1.0.0 is ready. Please let me know ASAP if there are any more changes to readable that need doing. --- David A. Wheeler -- October Webinars: Code for Performance Free Intel webinars can help you

[Readable-discuss] More automagic for configure?

2013-09-29 Thread David A. Wheeler
. --- David A. Wheeler -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel

Re: [Readable-discuss] Fwd: Uploaded version 0.9.3, please test!!

2013-09-28 Thread David A. Wheeler
. But if we can point to some tips, that'd be great. --- David A. Wheeler -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced

Re: [Readable-discuss] Fwd: Uploaded version 0.9.3, please test!!

2013-09-27 Thread David A. Wheeler
earlier success months ago with another Linux version was probably just due to me being smarter that day and successfully figuring out to look for the expect package. How's this?: http://sourceforge.net/p/readable/wiki/Install-howto/ --- David A. Wheeler

[Readable-discuss] Uploaded version 0.9.3, please test!!

2013-09-26 Thread David A. Wheeler
before that release ID if I can. --- David A. Wheeler -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more

[Readable-discuss] Please test!! (I think I've improved GUILE_SITE handling)

2013-09-22 Thread David A. Wheeler
that make distcheck works correctly, and typical uses (with prefix as /usr/local or /usr) work without effort. Suspicious situations are noted as such. Thoughts? --- David A. Wheeler -- LIMITED TIME SALE - Full Year of Microsoft

[Readable-discuss] HTML from markdown

2013-09-17 Thread David A. Wheeler
1.0.0? --- David A. Wheeler -- LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.99! 1,500+ hours of tutorials including VisualStudio 2012, Windows 8, SharePoint 2013, SQL 2012, MVC 4, more. BEST VALUE: New

[Readable-discuss] Version 1.0.0?

2013-09-10 Thread David A. Wheeler
? Are there any important changes that would hold back a version 1.0.0 release? --- David A. Wheeler -- How ServiceNow helps IT people transform IT departments: 1. Consolidate legacy IT systems to a single system of record for IT 2

[Readable-discuss] Updated video on readable.sourceforge.net

2013-09-09 Thread David A. Wheeler
Now that we have a final SRFI-110, I've updated the video tutorial to match. Take a look here: http://readable.sourceforge.net/ I'm trying to limit it to 15minutes, for later posting to YouTube. --- David A. Wheeler

[Readable-discuss] LAST CALL for SRFI-110. Deadline 2013-09-07

2013-09-02 Thread David A. Wheeler
, and there are implementations for both. My sincere thanks to everyone who has participated. --- David A. Wheeler -- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous

[Readable-discuss] Submitted proposal to add to quicklisp

2013-09-01 Thread David A. Wheeler
target), but I don't know exactly what would do so. --- David A. Wheeler -- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies

[Readable-discuss] New release of readable (version 0.9.2) not identified as latest version

2013-08-26 Thread David A. Wheeler
tarball. I've already reported this as a bug: https://sourceforge.net/p/forge/site-support/5166/ SourceForge has generally pretty responsive in the past, so I expect this will be fixed soon. --- David A. Wheeler

[Readable-discuss] clisp problems fixed. License?

2013-08-18 Thread David A. Wheeler
here. I'm guessing that for safety's sake, though, sweet-clisp becomes MIT and GPLv2 (+?). Since that script's only purpose is to call clisp, which is already GPLv2, that is no change to the license from user's point of view, though it'll be tricky to explain. --- David A. Wheeler

Re: [Readable-discuss] Thoughts on sweet-expression editor modes (including ParEdit operations)

2013-08-13 Thread David A. Wheeler
possible. The narrowing then gets canceled on a cursor-movement command (is that possible in emacs?) or escape key. Great point! I agree. --- David A. Wheeler -- Get 100% visibility into Java/.NET code

Re: [Readable-discuss] Thoughts on sweet-expression editor modes (including ParEdit operations)

2013-08-09 Thread David A. Wheeler
, but it seems straightforward. --- David A. Wheeler -- Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free troubleshooting tool designed for production. Get down to code-level detail for bottlenecks

Re: [Readable-discuss] Thoughts on sweet-expression editor modes (including ParEdit operations)

2013-08-09 Thread David A. Wheeler
think a t-expression would be a plausible default as long as you could switch. --- David A. Wheeler -- Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free troubleshooting tool designed for production

[Readable-discuss] Thoughts on sweet-expression editor modes (including ParEdit operations)

2013-08-08 Thread David A. Wheeler
someone to implement one :-). --- David A. Wheeler = Sweet-expression editor modes have to figure out where lists begin and end; outside of (), this primarily involves comparing indent levels. So that shouldn't be bad. Also, the Scheme reference implementation must

Re: [Readable-discuss] Thoughts on sweet-expression editor modes (including ParEdit operations)

2013-08-08 Thread David A. Wheeler
. --- David A. Wheeler -- Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free troubleshooting tool designed for production. Get down to code-level detail for bottlenecks, with 2% overhead. Download

Re: [Readable-discuss] Thoughts on sweet-expression editor modes (including ParEdit operations)

2013-08-08 Thread David A. Wheeler
be a visual cue. --- David A. Wheeler -- Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free troubleshooting tool designed for production. Get down to code-level detail for bottlenecks, with 2

[Readable-discuss] Proposed grammar change: forbid lines with 1 n-expr that end with .

2013-07-27 Thread David A. Wheeler
by *itself* would continue to mean that the next line (at the same indent level) is the cdr of the given list. Any objections? I plan to check this into the development branch, so we can experiment with it, but it'll be easy to pull out if there are objections. --- David A. Wheeler

[Readable-discuss] datum comments of sweet-expressions - now implemented in Scheme

2013-07-25 Thread David A. Wheeler
if there are problems doing so. Thanks. --- David A. Wheeler -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks

Re: [Readable-discuss] datum comments of sweet-expressions

2013-07-24 Thread David A. Wheeler
of the n-expression reader, unfortunately, but it does create useful functionality (commenting datum blocks). --- David A. Wheeler @@ -1017,7 +1084,9 @@ collecting_tail returns [Object v] // Process line after . hspace+ sequence. Does not go past

Re: [Readable-discuss] datum comments of sweet-expressions

2013-07-12 Thread David A. Wheeler
a dangling special tag to denote comment return from hash-processing which no longer comments anything at all, the special tag having been removed. Whups! Feel free to remove the obsolete code! --- David A. Wheeler -- See

Re: [Readable-discuss] datum comments of sweet-expressions

2013-07-12 Thread David A. Wheeler
that would *reuse* a symbol of the same name. --- David A. Wheeler -- See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate

[Readable-discuss] CROSS-POST: datum comments of sweet-expressions

2013-07-11 Thread David A. Wheeler
, comments welcome. --- David A. Wheeler == On 29 May 2013 02:31:25 -0400, Mark H Weaver posted a long set of comments. One recommendation was to supporting datum comments of sweet-expressions (#; + whitespace). The idea makes sense, and I did anticipate

  1   2   3   4   >