Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: What is code readability?

by Herkum (Parson)
on Jan 03, 2007 at 13:59 UTC ( [id://592763]=note: print w/replies, xml ) Need Help??


in reply to Re: What is code readability?
in thread What is code readability?

While on the subject of consistency, one should avoid doing having code that does more extra work that is not directly related for why it was written. It should be like a conversation with parts of a conversation focusing upon the subject being discussed.

Example: BrowserUK wrote this, my wife bought a new car today and I hate my co-workers, excellent article and I enjoyed reading it.

This is a tough to read but is common problem among programmers.

A more practical example would be a function that mix SQL with business logic with HTML. Doing all three at the same time makes it hard to debug and reduces the portability of the code. You cannot,

  • Use the code outside of a program that does not need HTML.
  • Use the code outside of a database because you only need the business logic.
  • Use the code to just get data because the business logic is invalid in that situation.

Small and focused code should help to provide Consistency

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://592763]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (2)
As of 2024-04-25 22:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found