473,387 Members | 1,486 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

editor, is C obsolete?, and thank you

1) Thank you. Thanks to this news group in which I read a post
earlier today about making variables static in certain cases, I
believe I avoided future debugging headaches. It reminded me of a
place in my code where I did that. Thank you!

2) Like I mentioned in an earlier post, I program on the hobby level,
but I am working on a project now and so I am coding again, however,
it is like being revived from a deep sleep for me. Put it to you this
way, my login at the cprogramming.com website is gone, I haven't
logged on for a couple of years. So forgive me if this question
sounds weird or out of place, I am merely out of touch. Is C no longer
a mainstream language? I ask my brother in-law for help sometimes
when I get stuck, but he keeps talking about C++. I've talked to
several co-workers about helping out (a little team work would be
nice), but they talk about visual basic or fortran and look at me
funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.

I am reminded of that Austin Powers movie where they revive the main
character from the freezer after many years asleep.

This has no bearing on my project, I am just curious as to my
obsolecense. Is C obsolete?

3) I really like the simple editor "gedit" that comes with Ubuntu
Linux. Is there a version for windows? Okay, I know what you linux
folks are about to say, "run the compiler in wine," Right? I guess I
could do that. Testing my windows program would probably be better
done in windows though. Is there something similar for windows?

Mar 7 '07 #1
25 2306
ko********@yahoo.com said:
Is C no longer a mainstream language?
C remains a mainstream language.
I ask my brother in-law for help sometimes
when I get stuck, but he keeps talking about C++.
Er, so what?
I've talked to
several co-workers about helping out (a little team work would be
nice), but they talk about visual basic or fortran and look at me
funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.
What is it about pointers that makes you believe their lack makes a
language "suck"?

<snip>
[...] Is C obsolete?
No.
3) I really like the simple editor "gedit" that comes with Ubuntu
Linux. Is there a version for windows? Okay, I know what you linux
folks are about to say, "run the compiler in wine," Right?
Wrong. We're about to say "ask such questions in a newsgroup where they
are topical".

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 7 '07 #2
ko********@yahoo.com wrote:

<snip>
Is C no longer a mainstream language?
No. It's still used in a wide variety of domains.

<snip>
I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.
Try not to get involved in language wars. Each major language has it's
purpose and applicability and deriding languages other than your
favourite one, makes you appear an emotional person.

<snip>
This has no bearing on my project, I am just curious as to my
obsolecense. Is C obsolete?
Far from it. It's one of the few languages that have survived in
mainstream for multiple decades.
3) I really like the simple editor "gedit" that comes with Ubuntu
Linux. Is there a version for windows? Okay, I know what you linux
folks are about to say, "run the compiler in wine," Right? I guess I
could do that. Testing my windows program would probably be better
done in windows though. Is there something similar for windows?
<OT>

Your plight highlights the result of learning a single-platform
editor. I recommend that you learn either vi, (my preference), or
Emacs. They'll most likely be available on every platform you'll
happen to use.

</OT>

Mar 7 '07 #3
On 6 Mar 2007 23:48:57 -0800, ko********@yahoo.com wrote:

[snip]
>3) I really like the simple editor "gedit" that comes with Ubuntu
Linux. Is there a version for windows? Okay, I know what you linux
folks are about to say, "run the compiler in wine," Right? I guess I
could do that. Testing my windows program would probably be better
done in windows though. Is there something similar for windows?
Yes, and it's free:

http://msdn.microsoft.com/vstudio/express/

BTW, I also like gedit that comes with Ubuntu. The syntax coloring is
great.

--
jay

http://www.ubuntu.com/
Mar 7 '07 #4
funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.

What is it about pointers that makes you believe their lack makes a
language "suck"?
Nothing. BS is a slang for lying.

Mar 7 '07 #5
ko********@yahoo.com wrote:
>>funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.
What is it about pointers that makes you believe their lack makes a
language "suck"?

Nothing. BS is a slang for lying.
Why not say you want to build your C chops because then you aren't
limited to a single platform or implementation.
Mar 7 '07 #6
<ko********@yahoo.comwrote in message
>
This has no bearing on my project, I am just curious as to my
obsolecense. Is C obsolete?
Good question. It will have a niche in small embedded programs for some time
to come. But will it continue to be used for applications development on
desktop systems and above?

I think it will. It is such a good abstraction of a von Neumann machine
that, if you have any sort of algorithm, a C implementation is natural. With
other languages you fiddle to get the algorithm to work with the rest of the
system. It is also very efficient.
Mar 7 '07 #7
Malcolm McLean skrev:
<ko********@yahoo.comwrote in message
>>
This has no bearing on my project, I am just curious as to my
obsolecense. Is C obsolete?
Good question. It will have a niche in small embedded programs for some
time to come. But will it continue to be used for applications
development on desktop systems and above?

I think it will. It is such a good abstraction of a von Neumann machine
that, if you have any sort of algorithm, a C implementation is natural.
With other languages you fiddle to get the algorithm to work with the
rest of the system.
Example please. I don't see why it would be less natural in some other
procedural language.
It is also very efficient.
(...and quite dangerous.)
August
Mar 7 '07 #8

"August Karlstrom" <fu********@comhem.sewrote in message
>I think it will. It is such a good abstraction of a von Neumann machine
that, if you have any sort of algorithm, a C implementation is natural.
With other languages you fiddle to get the algorithm to work with the
rest of the system.

Example please. I don't see why it would be less natural in some other
procedural language.
Let's try to write an expression parser in Fortran 77.

No recursion. So every function has to be data recursive, and the job is
terrible. If you go to newer Fortrans the parallel compilers won't handle
it.

OK, java.

The obvious C form is

double parse( char *expression, char **err )

In java you throw exceptions to indicate error conditions.
So now we've got a horrible job documenting not only our parser, but also
the exception object it throws. The parse cannot be a function, it has to be
a method of an object. Make it a static method and you've broken the
object-oriented paradigm. Create a "Parser" object and you've got something
artificial.

Then you will find that the internals of the function become very messy. You
need some sort of tokenizer function. The neophyte might be tempted by the
StringTokenizer - in fact it is very hard to get it to do what you want.
Since there are no pointers, the current parse position has to be stored in
an integer, which adds complexity to every token translation routine.

It is possible to write an expression parser in Java, of course, and it is
even possible to make a good job of it. However you need a certain amount of
experience - it's not the language of choice for developing parser
technology in, or for learning how to implement a parser.


Mar 7 '07 #9
On Wed, 7 Mar 2007 10:26:34 -0500, ko********@yahoo.com wrote
(in article <11**********************@j27g2000cwj.googlegroups .com>):
>>funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.

What is it about pointers that makes you believe their lack makes a
language "suck"?

Nothing. BS is a slang for lying.
In what language?
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 18 '07 #10
Randy Howard <ra*********@FOOverizonBAR.netwrites:
On Wed, 7 Mar 2007 10:26:34 -0500, ko********@yahoo.com wrote
(in article <11**********************@j27g2000cwj.googlegroups .com>):
>>>funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.

What is it about pointers that makes you believe their lack makes a
language "suck"?

Nothing. BS is a slang for lying.

In what language?
English. The B stands for "bull", and the S stands for a word
synonymous with feces. Are you unfamiliar with the term?

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 19 '07 #11
Keith Thompson said:
Randy Howard <ra*********@FOOverizonBAR.netwrites:
>On Wed, 7 Mar 2007 10:26:34 -0500, ko********@yahoo.com wrote
(in article <11**********************@j27g2000cwj.googlegroups .com>):
>>>>funny when I say I program for Windows in C. I BS them and tell
them those languages don't have pointers and that if it don't have
pointers it sucks.

What is it about pointers that makes you believe their lack makes a
language "suck"?
Nothing. BS is a slang for lying.

In what language?

English. The B stands for "bull", and the S stands for a word
synonymous with feces. Are you unfamiliar with the term?
I'm familiar with the term, but curious to know why you think that, in
English, it's slang for lying. I'm English, and I have used the English
language for what I consider to be many decades. I speak it like a
native and, if truth be told, a great deal better than a great many
natives. Yet I have never, ever heard the term used to convey the same
meaning that "lying" does. As far as I can tell, I've never *seen* it
used in that way either.

I don't think anyone here (at least, no true clc-er!) would disagree
that, say, "C - The Complete Reference" is a great big steaming pile.
But has anyone ever contended that Mr S deliberately set out to deceive
his readership? I don't think so.

In my experience, the term is used to describe the outpourings of
someone who thinks or pretends that he knows what he's talking about
when in fact he does not. In the latter case (pretending) the
distinction between it and lying is a fine one. He may know that what
he's saying is not true (in which case the term "lying" may *also*
legitimately be applied to what he's saying), or he may not (in which
case it may not).

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 19 '07 #12
Richard Heathfield <rj*@see.sig.invalidwrites:
Keith Thompson said:
>Randy Howard <ra*********@FOOverizonBAR.netwrites:
>>On Wed, 7 Mar 2007 10:26:34 -0500, ko********@yahoo.com wrote
(in article <11**********************@j27g2000cwj.googlegroups .com>):
>funny when I say I program for Windows in C. I BS them and tell
>them those languages don't have pointers and that if it don't have
>pointers it sucks.
>
What is it about pointers that makes you believe their lack makes a
language "suck"?
>

Nothing. BS is a slang for lying.

In what language?

English. The B stands for "bull", and the S stands for a word
synonymous with feces. Are you unfamiliar with the term?

I'm familiar with the term, but curious to know why you think that, in
English, it's slang for lying. I'm English, and I have used the English
language for what I consider to be many decades. I speak it like a
native and, if truth be told, a great deal better than a great many
natives. Yet I have never, ever heard the term used to convey the same
meaning that "lying" does. As far as I can tell, I've never *seen* it
used in that way either.

I don't think anyone here (at least, no true clc-er!) would disagree
that, say, "C - The Complete Reference" is a great big steaming pile.
But has anyone ever contended that Mr S deliberately set out to deceive
his readership? I don't think so.
Now that I think about it, BS (or the word it expands to) when used as
a noun implies falsehood, possibly not deliberate; when used as a
verb, as in the previous poster's:

I BS them and tell them those languages don't have pointers and
that if it don't have pointers it sucks.

it carries (to me) an implication of deliberate deceipt.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Mar 19 '07 #13
Keith Thompson said:

<snip>
Now that I think about it, BS (or the word it expands to) when used as
a noun implies falsehood, possibly not deliberate; when used as a
verb, as in the previous poster's:

I BS them and tell them those languages don't have pointers and
that if it don't have pointers it sucks.

it carries (to me) an implication of deliberate deceipt.
I think you're right that this was the intended meaning in this case,
but that therefore the OP's usage of the term was simply incorrect. He
thought he knew what it meant but he didn't. In short, he was... well,
let's move on, shall we?

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 19 '07 #14
in 725160 20070319 050719 Richard Heathfield <rj*@see.sig.invalidwrote:
>Keith Thompson said:

<snip>
>Now that I think about it, BS (or the word it expands to) when used as
a noun implies falsehood, possibly not deliberate; when used as a
verb, as in the previous poster's:

I BS them and tell them those languages don't have pointers and
that if it don't have pointers it sucks.

it carries (to me) an implication of deliberate deceipt.

I think you're right that this was the intended meaning in this case,
but that therefore the OP's usage of the term was simply incorrect. He
thought he knew what it meant but he didn't. In short, he was... well,
let's move on, shall we?
You two are off-topic again. Is it only OK when you do it?
Mar 19 '07 #15
Bob Martin said:

<snip>
>
You two are off-topic again.
Aye. It's called "topic drift", and it happens sometimes. You yourself
have taken part in such discussions.
Is it only OK when you do it?
I won't bother replying on my own account, but you mention "you two",
and I presume you're referring to Keith.

Most of Keith's posts are topical and all are worth reading. He has been
contributing high quality C advice to comp.lang.c for many years. Let's
take a look at your record, shall we? Google Groups says:

Articles by Bob Martin (bo********@excite.com) in comp.lang.c: 35
First article: 27th April 2006
Articles having no genuine connection to C programming: 32
Topicality rating: less than 9%

When you are *better* than Keith at staying on topic, *then* I might
take your criticism of his off-topic articles seriously.

Until then, you're in no position to throw stones.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 19 '07 #16
in 725171 20070319 083854 Richard Heathfield <rj*@see.sig.invalidwrote:
>Bob Martin said:

<snip>
>>
You two are off-topic again.

Aye. It's called "topic drift", and it happens sometimes. You yourself
have taken part in such discussions.
>Is it only OK when you do it?

I won't bother replying on my own account, but you mention "you two",
and I presume you're referring to Keith.

Most of Keith's posts are topical and all are worth reading. He has been
contributing high quality C advice to comp.lang.c for many years. Let's
take a look at your record, shall we? Google Groups says:

Articles by Bob Martin (bo********@excite.com) in comp.lang.c: 35
First article: 27th April 2006
Articles having no genuine connection to C programming: 32
Topicality rating: less than 9%

When you are *better* than Keith at staying on topic, *then* I might
take your criticism of his off-topic articles seriously.

Until then, you're in no position to throw stones.
You are missing the point that you are the main offenders at jumping all over anyone
whom you perceive to be off-topic - even mentioning c++ has attracted your ire.
I have never done that.
Mar 19 '07 #17
On 19 Mar, 05:07, Richard Heathfield <r...@see.sig.invalidwrote:
Keith Thompson said:

<snip>
Now that I think about it, BS (or the word it expands to) when used as
a noun implies falsehood, possibly not deliberate; when used as a
verb, as in the previous poster's:
I BS them and tell them those languages don't have pointers and
that if it don't have pointers it sucks.
it carries (to me) an implication of deliberate deceipt.

I think you're right that this was the intended meaning in this case,
but that therefore the OP's usage of the term was simply incorrect. He
thought he knew what it meant but he didn't. In short, he was... well,
let's move on, shall we?
I think the OP's usage was fine - very common usage amongst my age
group, anyway. As you say, it means to deliberately mislead someone.

As in:

"Oh, man, your sister was excellent last night."

"You're bullshitting me, right?"

Doug

Mar 19 '07 #18
Bob Martin said:

<snip>
You are missing the point that you are the main offenders at jumping
all over anyone whom you perceive to be off-topic
You think so? I don't.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 19 '07 #19
On Mon, 19 Mar 2007 09:10:38 GMT, in comp.lang.c , Bob Martin
<bo********@excite.comwrote:
>You are missing the point that you are the main offenders at jumping all over anyone
whom you perceive to be off-topic - even mentioning c++ has attracted your ire.
I have never done that.
I don't think he was missing the point actually, I think you may be
though.
In CLC, one builds up 'credit' as it were, by posting topically and
usefully. Newbies start at zero, and a single offtopic posting is
likely to get commented on (as much as anything this is important so
that they *know* its not topical), while multiple ot posts will result
in flames. OTOH, posters with a decade of productive posting history
get cut more slack. Signal-to-noise ratio is important.
--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Mar 19 '07 #20
In article <69********************************@4ax.com>,
Mark McIntyre <ma**********@spamcop.netwrote:
>On Mon, 19 Mar 2007 09:10:38 GMT, in comp.lang.c , Bob Martin
<bo********@excite.comwrote:
>>You are missing the point that you are the main offenders at jumping
all over anyone whom you perceive to be off-topic - even mentioning
c++ has attracted your ire. I have never done that.

I don't think he was missing the point actually, I think you may be
though.
In CLC, one builds up 'credit' as it were, by posting topically and
C&V, please.

Mar 19 '07 #21
On Mar 19, 4:00 pm, Richard Heathfield <r...@see.sig.invalidwrote:
Keith Thompson said:
English. The B stands for "bull", and the S stands for a word
synonymous with feces. Are you unfamiliar with the term?
Is anyone still offended by 'shit' ? They say it on the six o'clock
news now.
I'm familiar with the term, but curious to know why you think that, in
English, it's slang for lying. I'm English, and I have used the English
language for what I consider to be many decades.
In my area, the verb form almost always means that the actor is
lying. "He's bullshitting" is an accusation that the speaker is
intentionally telling untruths.

However, the noun has many uses: lies, untruths which were not
intentional, and in fact anything that the speaker disagrees
with (e.g. "DRM is bullshit").

Mar 20 '07 #22
In article <et**********@news.xmission.com>,
Kenny McCormack <ga*****@xmission.xmission.comwrote:
>>In CLC, one builds up 'credit' as it were, by posting topically and
>C&V, please.
Now *that* was funny.

-- Richard

--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Mar 20 '07 #23
Richard Heathfield wrote:
Bob Martin said:

<snip>
>You are missing the point that you are the main offenders at
jumping all over anyone whom you perceive to be off-topic

You think so? I don't.
He already successfully achieved access to my bozo bin.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>

"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews

--
Posted via a free Usenet account from http://www.teranews.com

Mar 20 '07 #24
On 19 Mar 2007 17:55:32 -0700, in comp.lang.c , "Old Wolf"
<ol*****@inspire.net.nzwrote:
>On Mar 19, 4:00 pm, Richard Heathfield <r...@see.sig.invalidwrote:
>Keith Thompson said:
English. The B stands for "bull", and the S stands for a word
synonymous with feces. Are you unfamiliar with the term?

Is anyone still offended by 'shit' ? They say it on the six o'clock
news now.
Not in the UK. You can still get fired for saying rude words on tv
before 9pm. Euphemisms for faeces included. On radio, funnily enough,
you can get away with murder...

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Mar 20 '07 #25
On Sun, 18 Mar 2007 20:29:19 -0500, Keith Thompson wrote
(in article <ln************@nuthaus.mib.org>):
Randy Howard <ra*********@FOOverizonBAR.netwrites:
>On Wed, 7 Mar 2007 10:26:34 -0500, ko********@yahoo.com wrote
(in article <11**********************@j27g2000cwj.googlegroups .com>):
>>>>funny when I say I program for Windows in C. I BS them and tell them
those languages don't have pointers and that if it don't have pointers
it sucks.

What is it about pointers that makes you believe their lack makes a
language "suck"?
Nothing. BS is a slang for lying.

In what language?

English. The B stands for "bull", and the S stands for a word
synonymous with feces. Are you unfamiliar with the term?
Substitute it above with your "synonym" and I see:

"I lying them and tell them...."

Doesn't look like English to me.
--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 20 '07 #26

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Nick Mudge | last post by:
Hi, I want to do some Web development using HTML, Javascript, PHP and MySQL. Does anybody recommend any good editors to use in this Web development. Something that works well and makes...
7
by: Mike Kamermans | last post by:
I hope someone can help me, because what I'm going through at the moment trying to edit XML documents is enough to make me want to never edit XML again. I'm looking for an XML editor that has a...
0
by: jbeerni | last post by:
In .NET, you can mark methods and accessors as obsolete by using the directive. I've found some interesting behavior with the directive when used in a class which is referenced as a return type...
4
by: BrianProgrammer | last post by:
I have this code below, that works like a champ, but two lines are continually marked as obsolete. See embeded notes. Private Shared Function TransformHTMLString(ByVal XSLT As String, _ ByVal...
2
by: Steve James | last post by:
I am trying to mark an override method in a derived class as obsolete using the ObsoleteAttribute. The compiler, however is not picking up this attribute and is not generating a warning or an...
3
by: Shimon Sim | last post by:
I have control. One of the properties is implemented as StringCollection. I didn't use any Editor attribute for it. During Design time system shows dialog similar to Items in DropDownList but Add...
4
by: Phill W. | last post by:
If I have a reusbale (GAC-'registered') assembly that contains two, related classes (imagine a DataSet and DataTable; the former contains instances of the latter, the latter has a reference to its...
2
by: Craig HB | last post by:
I have been using the code below to validate an XML document with an XML schema. If the XML is not valid, then the procedure throws an exception. I have upgraded the application using this proc to...
3
by: postrishi | last post by:
Hello Everybody , I am a new user. I am currently using Turbo C++ 3.0 editor in my engg.Can you tell me or post me a ebook on turbo c++ and NOT on c or C++.MInd it I want a book on TURBO C++ editor...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.