Is D better than C?

  • Thread starter Lester T. Linpord
  • Start date
D

Dik T. Winter

> Dan Pop <[email protected]> scribbled the following: ....
>
> Can you name even *one* language where Ö is used as a diaeresis letter
> instead of an umlaut one?

Dutch has already been named. I will also offer English. Although the
spelling "coöperation" (third symbol is o-diaeresis) gets out of use quickly.

But while Ö (O umlaut) is the last letter in Finnish, in Estonian it is
followed by Ü (U umlaut), X and Y, although the latter two are not
formally in their alphabet. The Z is between S-hacek and Z-hacek, which
is followed by T. There is *no* consistent way to sort all letters of
the alphabet consistently within the languages that use the Latin script.
(Nor is there one for the Cyrillic script.)

And, finally, to get on-topic again, in C the locale is there just for
that reason (amongst others).
 
C

cr88192

Amir Yantimirov said:
"Arthur J. O'Dwyer" <[email protected]> wrote in message

Thanks greatly!
Some years ago I found it completely unpopulated.
Now seems what though residents are few but they are more of my kind.

Amir Yantimirov
http://www174.pair.com/yamir/programming/

I looked at the site.
some of your ideas I have found interesting.

I personally had before had the idea of being able to expand/collapse source
code, or maybe being able to perform queries on it (eg: telling the viewer
to only display headers and text descriptions), or to be able to generate
various manners of documentation from the source (eg: a tree representing
the call graph), maybe the source could be totally reorganized based on how
it is being interacted with, ...

this is not easy to do really, so I had never really gotten to it.

the main thing that was pointed out, I think, was the idea of using a
non-source (or maybe heavily marked-up) source representation for the tool,
then as needed generating usable source (needed for non-source at least,
less for marked up source...).
this one is newer to me (actually, my previous plans were to leave the
source in some sort of "in core" form, and making use of a "living system"
for editing). having the data in a serialized format could be much more
directly usable...

I also liked the idea of packages.

I was considering a textual archive format for some of my own projects (the
one I was imagining, however, would still be "binary safe"). the format
(unlike more traditional archive formats) could retain type/file specific
metadata.
it is also possible to store files as multiple chunks.
I could make provisions for things like updates, multiple forks, ... as
well.

the basic format is much more trivial, the header encoding is vaguly similar
to http. I designed it primarily to be used as a protocol, but designed it
so that it can be used as both a protocol and a file format.

ok, some fragments that demonstrate the basic encoding.
this is an example of how a simple http wrapper would look (note: the "C: "
and "S: " 's are not included in the data, but were included to specify
client and server, the '*' for content length was to save having to count
bytes, or make up a number...).

C: Namespace: http://bgb-sys.sourceforge.net/mux0/http
C: Resource: /index.html
C: Method: GET
C: Message-ID: httpreq1
C:
S: Namespace: http://bgb-sys.sourceforge.net/mux0/http/response
S: Resource: /index.html
S: Message-ID: httpreq1
S: Content-Length: *
S: Content-Type: text/html
S:
S: <html>
S: <head>...</head>
S: <body>...</body>
S: </html>
S:
S:

the exact properties are defined as "namespace specific", thus namespace is
the only required field.
parsers, however, need to take special note of any tags beginning with
'Content', as they have the capability of changing how things are structured
(no 'Content' fields, no content, presence of fields indicate presence of
content...). otherwise, no fields are allowed to effect the physical
structure of the file.

a possible limitation is that the file is limited to a flat structure (at
least in a general sense), but this probably makes things more general...
my heavy use of URL's is to make it so that 2 unrelated resources are quite
unlikely to conflict, and even if the reader has no understanding of the
used namespaces they can still parse the file (in which case it will just
look like a collection of records with possible attached data).

an archive format would necissarily have different namespaces, and probably
a record to give general info about the file, eg, something like:

Namespace: http://bgb-sys.sourceforge.net/mux0/header
Media-Type: http://bgb-sys.sourceforge.net/mux0/archive


ok, I am probably just sounding stupid.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,139
Messages
2,570,805
Members
47,355
Latest member
MavoraTech

Latest Threads

Top