On Oct 20, 2017, at 2:38 AM, 'Evan Frederick O'Leary'
Evan....@colorado.edu [fallible-ideas]
>> On Oct 19, 2017, at 19:04 PM, 'Evan Frederick O'Leary'
>>
Evan....@colorado.edu [fallible-ideas]
>> <
fallibl...@yahoogroups.com> wrote:
>>
>>>> I'm not going to provide details upfront because I don't yet know
>>>> if
>>>> you're interested, and I'm also curious if you could correct these
>>>> errors on your own, or would deny the errors exist, or what.
>>>>
>>>
>>> Sure; I don't see why they would make it harder to understand me but
>>> maybe
>>> they do. If you see grammar usage that you don't like I'm open to
>>> criticism.
>>>
>>> But if you want to know how much I already care about grammar the
>>> answer is
>>> I don't really care and I think a lot of grammar enforcing is
>>> useless.
>>
>> Why do you use commas and periods if you don't really think they
>> matter?
>> Why not just leave them out?
>>
>
> I think I use them to help the reader chunk thoughts the way I'm
> chunking
> them in my head
>
>>
>> If they are important to include in your writing, why aren't they
>> also
>> important to use correctly? I don't see the point of using them
>> incorrectly.
>>
>
> What would the correct usage be and why is it correct?
Some rules of grammar are:
- longer pause (period) between different thoughts. Don't ask the reader
to hold a dozen things in their head at once.
- smaller pause (comma) between independent clauses joined with a
coordinating conjunction
- identify which of your thoughts are more important (make them main
clauses) and less important (subordinate them)
- avoid writing text that reads ambiguously and then trying to fix it
with commas – rephrase instead
- keep your tenses and plurals straight
- make every pronoun have a clear antecedent (*literal* word or phrase
it unambiguously refers to).
you wrote:
> Like, if I want to heat my house, well, that requires energy, so I
> have to
> find energy from somewhere, and the heat has to get from some point
> inside
> the house to all points and I have bad insulation along the walls so
> the
> heater can't be located on the edges, and I have flammable carpets and
> the
> only heaters I can afford can cause fires so it has to be put either
> in a
> vent on the walls or ceiling or on a non-carpet surface...
This should be split into multiple sentences because it expresses
multiple thoughts.
There should be a comma before "and I have bad insulation".
There may be missing commas before "and the only heaters" or "so it has
to be put". It's hard to tell because the sentence is a mess – it's
hard for a reader to analyze and understand the writer's intentions.
The use of "well" causes misreadings because "heat my house well" works
as a phrase, which is how I initially read it. But "well" could be an
exclamation here instead. If "well is an exclamation, then it should be
changed, or the sentence rearranged, to prevent misreading. In this
case, just omit "well" because, if it's an exclamation, it's
unnecessary.
The use of "well" offset by commas makes it unclear if there's supposed
to be a pause between "house" and "that", or alternatively if the pauses
are only for the sake of the "well". If you delete "well", whether you
leave one comma or not changes the meaning. So that makes the sentence
ambiguous because the reader doesn't know if you would include a comma
without the "well" or not.
Towards the end it says "heaters ... it" instead of "heaters ... they".
And the antecedent is somewhat ambiguous.
"a vent" would normally go on one wall, not multiple walls. And a vent
goes *in*, not *on*, a wall.
Leaving the rest largely the same, it should be a colon, not a comma,
after "like".
Perhaps the biggest problem with the paragraph (after lack of periods)
is the lack of subordination. It's all "and" and "so", which are both
coordinating conjunctions. Coordinate means equally important, whereas
subordinate means less important. Writers need to organize their
thoughts by figuring out what is more or less important and then making
their grammar represent that. Without subordination, you aren't
communicating basic information to readers, so they have to judge it for
themselves. It's your job as a writer to decide the relationships
between the stuff you write about and use English grammar to express
those relationships. But you didn't think through and express those
relationships.
I chose to bring up grammar because I find you posts pretty unreadable
and confused. There's a ton to unpack, but I can't unpack the concepts
when the writing itself is full of errors that get in the way of
communication. Grammar isn't just a bunch of stuffy rules for saying
"gotcha!", it's a way or organizing and communicating thoughts. You
already use lots of grammar correctly (if you didn't, I wouldn't be able
to understand you at all), but you could communicate better by upgrading
your writing skills.
It's hard to discuss the large issues when they're built out of small
errors. And grammar is particularly *objective* which makes it a good
starting place. It'll be easier to make progress since we'll have less
trouble with debating what is and isn't an error.
In the big picture, FI/BoI/etc ideas are more advanced than you're used
to dealing with in other places. Consequently, more precision is needed
to deal with them effectively. If you don't read in a super precise way
– which is how the ideas are written – then it will lead to tons of
misunderstandings.
>>>>> so I have to decide on a programming language with the ability to
>>>>> cleanly express the rules governing that process
>>>>
>>>> This doesn't make sense because you can implement lisp in C or vice
>>>> versa. Even assembly has the *ability* to "cleanly express the
>>>> rules
>>>> governing that process" via the standard programming method of
>>>> layering
>>>> abstractions on top of your starting point.
>>>>
>>>> It's hard to tell if this is a conceptual error or a writing error
>>>> (or
>>>> both).
>>>>
>>>
>>> I'm confused: "cleanly express" means the syntax is adapted for
>>> expressing
>>> some kind of idea. Why else would people use some languages for some
>>> purposes and other languages for other purposes?
>>
>> As I said, you can implement any syntax with lisp, C or assembly.
>> They
>> all have the *ability* to do that.
>>
>
> True. I should have said "have the ability to cleanly express *without
> layering abstractions*"
No programming languages express much of anything cleanly without
layering abstractions. The main activity of programming is to layer
abstractions. The main features of good programming languages are tools
to facilitate abstractions, such as being able to define functions
(functions are a layerable abstraction).