Hello all, Is my impression correct that we don't have an ftp get or readFile verb? If not, has someone written such a beast that they're willing to share?...
... tcpcmd.download is the high-level verb that "gets" http or ftp URLs. I wrote tcpcmd circa 1995! Back when I had hair. ... And that's just *one* server. Ask...
This is mainly a question for David. Could you give us some background on why there is no BLOB support in the SQL related verbs? Is it because we currently...
Hey David, You've done a fantastic job of gettting our foot in the door and it's perfectly kewl to do what you did with the SQLs and implement what you needed....
No prob. I'm certainly willing to be part of the peanut gallery and perhaps learn as this feature might move forward. I just don't know enough to even be...
Hello all, So far my investigation seems to indicate that getting the blobs in is relavtivly easy. It's a matter doing a step call and then a new call would...
Everything you've said makes sense, except I don't like "switch from returning lists to returning tables" -- everything previously coded would break. Now, if...
... local ( s = string.filledString( 'a', 512 ) ); local ( ls = {s} ); sizeof( ls[ 1 ] ) ... Seth...
Seth
yahoo.seth@...
Aug 26, 2007 9:27 pm
3337
... At this point, with the number of people using this code countable on one hand (and probably not requiring a thumb or pinky...), making changes that would...
Seth
yahoo.seth@...
Aug 26, 2007 9:35 pm
3338
Yep I got to thinking about that and lists do seem to handle some items longer than 255 so now I'm unclear about where the 255 limitation is in lists. I'm...
Hello all, IIRC lists are pretty slow compared to tables so that may be one pro to consider. I'm still a bit away from considering lists vs tables or adding...
... Not when I have about 2 thousand lines using that code. I've been doing a tremendous amount of programming using it, and there's no way I'm going to do...
... Calming down, now. OK, here's a compromise. Most items return lists and take lists. To return a table, you'd have to call by name, not by value. So a...
Hello all, Success so far! I have binary objects going into and out of an SQLite database. To put in I created a new verb sqlite.setColumnBlob to bind binary ...
Hello all, I'm making progress adding more and more information to an SQLite database, mostly just text and integer fields for now. Extensive adding...
Sounds exciting, but I'm curious what you mean by adding text and integer fields. Are you adding more types, or just manipulating them differently. Either's...
Hey David, ... Sorry I wasn't clear. I'm not adding any types. I just meant that the work I'm doing right now is storing text and integer information into my...
Hello all, I've put up my changes for SQLite BLOB, etc. support. Here are the highlights... added sqlite.setColumnBlob and sqlite.getLastInsertRowId verbs...
Hello all, Often you'll see in Frontier related code that deals with processing a file uploaded with a webpage that ends up stored in the file system some code...
Hi, I like this, but I've got a partially-formed thought. There's a lot of different types of normalizations that are often needed. I've written a ton of...
I've run into an issue that may have been fixed in newer versions (or even just fixed on someone's own copy). Yesterday, someone asked me to set up a second ...
Seth
yahoo.seth@...
Sep 22, 2007 5:35 pm
3352
I've had to deal with similar stuff in managing legacy URLs. I wrote a very complex callback in mainresponder.callbacks.pathEvaluation that does the URL...
... How does this get around the problem that Frontier's inetd.startOne only allows you to have one ip address on any given port? That is, it doesn't matter...
Seth
yahoo.seth@...
Sep 22, 2007 9:49 pm
3354
Hello all, I'm working on a variant of the Frontier Kernel which is more like Pike/Radio/OPML Editor in flavor than Frontier. Basically re-purposing Frontier...
Let me explain the problem in fewer words. You can't (currently) run Frontier's web server on a single port but multiple ip addresses. (In fact, it's not about...
Seth
yahoo.seth@...
Sep 23, 2007 2:29 am
3356
... As you said, you definitely need the table key name to be ip+port ... Same here. You need the key name to be ip+port. ... You need both ip+port. :) ... I'd...