lua-users home
lua-l archive

Search lua-l

This index contains 143,604 documents and 1,774,497 keywords. Last update on 2023-03-08 .

Query: [How to search]

Display: Description: Sort by:

Results:

References: [ +author:"John Belmonte": 478 ]

Total 478 documents matching your query.

381. Re: expanded errors factories (score: 1)
Author: John Belmonte <john@...>
Date: Sat, 30 Dec 2006 12:31:51 -0500
See also <http://www.lua.org/wshop06.html#Belmonte>. In any case, I think the Lua authors plan to have lua.c honor __tostring on unhandled exception objects in a future release. --John
382. Re: Interest in Lua Web Plug-in? (score: 1)
Author: John Belmonte <john@...>
Date: Wed, 07 Mar 2007 20:21:35 -0500
This is backwards. The better approach would be to implement a JavaScript to Lua bytecode compiler and standard JavaScript libraries. Sneak it into browsers as a drop-in replacement for Spidermonkey
383. Re: Lua string (score: 1)
Author: John Belmonte <john@...>
Date: Sun, 29 Apr 2007 08:50:51 -0400
Yes, and consider that it's the complexity of SpiderMonkey which makes it intolerably slow, have a hideous C API, and be (historically) bug-ridden. --John
384. Re: Lua DLL name (Was: [ANN] LuaODE 0.3) (score: 1)
Author: John Belmonte <john@...>
Date: Wed, 09 May 2007 06:14:56 -0400
... Tell me, assuming you don't know what "kbdhe" is, whether that first file is for version 3.19, 31.9, or 3.1.9. Delimiters convey essential information. For some filenames on some OS's we may be f
385. scope-aware values (score: 1)
Author: John Belmonte <john@...>
Date: Sun, 20 May 2007 11:08:48 -0400
I mentioned this briefly in my workshop presentation on exceptions, but I encourage those interested to read the short page on exception safety for the D Programming Language [1]. It explains why nei
386. Re: Sorting weirdness at lua-users.org's lua-l search (score: 1)
Author: John Belmonte <john@...>
Date: Wed, 23 May 2007 21:37:27 -0400
Looks like a bug with the Namazu search tool-- their site search has the same behavior (http://www.namazu.org/). I don't think development of Namazu is very active, but I'll try to post a report on t
387. [ANNOUNCE] lua-users lottery drawing (score: 1)
Author: John Belmonte <john@...>
Date: Sun, 01 Jul 2007 09:35:06 -0400
See <http://lua-users.org/wiki/LuaUsersLottery> for an opportunity to lose money (and help support lua-users.org). The lua-users.org site, with a current pace of about 10 million page views per year,
388. Re: [ANNOUNCE] lua-users lottery drawing (score: 1)
Author: John Belmonte <john@...>
Date: Mon, 09 Jul 2007 20:28:06 -0400
I haven't had any luck contacting the two winners of the drawing-- I suspect everyone has their spam filters set too high. (What, messages with "you have won the lottery!" can't be valid?) Tim Hunter
389. Re: [ANNOUNCE] lua-users lottery drawing (score: 1)
Author: John Belmonte <john@...>
Date: Fri, 13 Jul 2007 19:45:42 -0400
Thanks to contributions by lottery winners Remo Dentato and Tim Hunter, the domain name for lua-users.org is covered until July 2012. --John
390. Re: Best and Worst of Lua (score: 1)
Author: John Belmonte <john@...>
Date: Sun, 15 Jul 2007 17:31:22 -0400
...which could be said of any language with saner string support than C. I don't agree. For shortest average completion time of a random programming task, you will benefit from a large number of avai
391. lists with nil play nice for Lua 5.2 (score: 1)
Author: John Belmonte <john@...>
Date: Sat, 28 Jul 2007 16:38:39 -0400
Recently I began using Lua again in a real product, my last serious use being at the time of version 4.0. From the perspective of 4.0 to 5.1, lists have gone from tolerable to bad with regard to nil
392. Re: lists with nil play nice for Lua 5.2 (score: 1)
Author: John Belmonte <john@...>
Date: Sun, 29 Jul 2007 13:02:32 -0400
Following are further notes on this. The list implementation uses nil as an end sentinel. This value works out nicely since it is the value of a nonexistent table key, and hence the end sentinel need
393. Re: lists with nil play nice for Lua 5.2 (score: 1)
Author: John Belmonte <john@...>
Date: Sat, 04 Aug 2007 10:39:30 -0400
I'd like to step back from the argument of whether nils belong in lists or not. Rather I'll point out some general, but related, gaps in Lua's extensibility and orthogonality-- hopefully there will b
394. Re: lists with nil play nice for Lua 5.2 (score: 1)
Author: John Belmonte <john@...>
Date: Thu, 09 Aug 2007 21:20:59 -0400
That is a recursive argument. Lua uses convention "c" because it has 1-based indexing. The choice of index base drives how you specify ranges. No sane language or library would mix 1-based indexing w
395. Re: Features you would like to see (score: 1)
Author: John Belmonte <john@...>
Date: Fri, 17 Aug 2007 23:42:32 -0400
I thought coroutines were entirely the right construct for state machines. Actually, neither goto or nested if's are readable, but fortunately these two are not the only solutions as you suggest. Sco
396. Re: Targeting the Lua VM (score: 1)
Author: John Belmonte <john@...>
Date: Sun, 02 Sep 2007 09:37:37 -0400
Software for automatic translation *to* your native language is useful. Given the knowledge of your own language, it's often easy to deduce what the computer meant despite the inevitable translation
397. Re: lua40 and Debian (score: 1)
Author: "John Belmonte" <john@...>
Date: Mon, 18 Feb 2008 16:41:00 -0500
I think this is fine if there are no dependencies, but bowing to the release managers here sets a bad precedent. Don't be surprised in the future when they want to kill 5.0 and 5.1 after newer versio
398. Re: This Wiki Implementation (score: 1)
Author: "John Belmonte" <john@...>
Date: Mon, 18 Feb 2008 18:38:10 -0500
Here are my random thoughts in response to this thread. It's still the case that languages like Python and Perl are superior for completing the average random programming task in less time than Lua,
399. Re: LPEG code for JavaScript grammar? (score: 1)
Author: "John Belmonte" <john@...>
Date: Sat, 12 Apr 2008 09:08:24 -0400
Not really what you asked for, but for those who enjoy reading JavaScript take a look at the jsdefs and jsparse files of Narcissus (http://lxr.mozilla.org/mozilla/source/js/narcissus/).
400. state of the Lua nation on resource cleanup (score: 1)
Author: John Belmonte <john@...>
Date: Mon, 19 Jan 2009 18:37:35 -0500
With the Gems article on exceptions published-- a large portion of it on the topic of cleanup in the face of exceptions-- I spent some time over the holidays catching up with various writings and imp

Search by Namazu v2.0.21