Differences between revisions 27 and 28
Revision 27 as of 2016-10-02 16:21:44
Size: 8184
Editor: ErikJohnson
Comment:
Revision 28 as of 2016-10-02 16:27:29
Size: 8228
Editor: ErikJohnson
Comment: minor comment changes
Deletions are marked like this. Additions are marked like this.
Line 63: Line 63:
I have since come to see Python's significant
white space as one of its best features. Python executes just like it looks, and
looks just like it executes! That's because they've been defined to be the same thing!
I have since come to see Python's significant white space as one of its best features.
Python executes just like it looks, and looks just like it executes!
That's because they've been defined to be the same thing!
Line 67: Line 67:
create new blocks can create code that looks differently than it is actually structure. create new blocks can create code that looks differently than it is actually structured.
Line 72: Line 72:
be skipped over. 'This is an aid to *readability* and *understandability*!'
IMO: It definitely '''''is NOT a design flaw!''''' On the contrary, it was a wise decision that
be skipped over. 'This is an aid to '''''readability''''' and '''''understandability'''''!'
IMO: It definitely is '''''NOT a design flaw!''''' On the contrary, it was a wise decision that
Line 75: Line 75:
of logic and code structure rather than a page full of curly braces (that, in other languages, *should*
but may or may not be indented to reflect that block structure).
of logic and code structure rather than a page full of curly braces (that, in other languages, '''''should'''''
but, in general, may or may not be indented to reflect the actual block structure).

Erik Johnson

I am a member of the Albuquerque Python Meetup: http://wiki.python.org/moin/AbqPython/ http://www.meetup.com/AbqPython/

My email: Spam is largely out of control on the internet. Sometimes I check email at HedgesFan at G mail dot com. If you want my regular email address that is checked almost daily, ask me for it.

Neat Python Tricks

#37: Actually check that download checksum: Most people I know, even most programmer, have never actually checked that checksum that is published with a download (for example: https://code.google.com/p/pyodbc/downloads/detail?name=pyodbc-3.0.7.win-amd64-py2.7.exe). That's perhaps understandable, as its not immediately apparent how you would do this. Most programmers can find a way if they want to (like Google some tool), but have you ever actually done it? If you have Python installed, you've got a major power tool at your disposal.

Assuming I have the file pyodbc-3.0.7.win-amd64-py2.7.exe sitting in the local directory, start the interactive python interpreter in that directory:

>>> import hashlib
>>> hashlib.sha1(open('pyodbc-3.0.7.win-amd64-py2.7.exe', 'rb').read()).hexdigest()

Should print out: cc409b505428091e446316d87701d423eb984e8f, same as the link above!

Python Ramblings

I am currently doing a course on Coursera titled An introduction to Interactive Programming In Python. (The link is to the actual instance of the class I am in - you may need to go in through the Coursera front page and search class listings to get to the next offering of the class.)

I don't really expect to learn a lot about the Python language itself, but some neat things are starting to happen with programming languages in general. In this case, they are using a wholly in-browser environment to run Python. It's not quite the same Python, but almost (one shortcoming I noticed is iteritems() on dict is missing.) This is based on http://www.skulpt.org/.

Programming Contest Sites

Vim stuff / Python indentation

Significant whitespace (i.e., indentation) is one of the biggest complaints I hear about Python. I have to admit I was not a big fan of it at first and had some issues with spaces and tabs getting mixed up and causing my program to not run correctly.

I have since come to see Python's significant white space as one of its best features. Python executes just like it looks, and looks just like it executes! That's because they've been defined to be the same thing! Code reads just like it is *actually* structured. Lazy programmers that add a few braces to create new blocks can create code that looks differently than it is actually structured.

So, this was a conscious decision to try to address one of C's problems. You can't be lazy and not indent your code properly. You get the structure right to get the program to run right and resolve the readability problem at the same time - not put it off as a nicety to be skipped over. 'This is an aid to readability and understandability!' IMO: It definitely is NOT a design flaw! On the contrary, it was a wise decision that ultimately saves typing and makes code more readable, letting you focus on the important parts of logic and code structure rather than a page full of curly braces (that, in other languages, should but, in general, may or may not be indented to reflect the actual block structure).

I did have a colleague come to me once (I guess as some sort of perceived representative for Python) and bitterly complain: "I remember now why I don't like Python! When you store your source code in PDF format, all the indentation gets stripped! That's such a pain in the -bleep-! No other modern languages have this problem!" Yes, well... some people will "get" this design decision, others may not. I just laughed and told him:

"I've used Python for over 10 years, and have yet to run into this problem."

It's not a convincing argument that something is wrong with Python. Python wasn't designed for that nor did it ever advertise or suggest that you could store Python source as PDF. (To be fair, this wasn't the primary mode my colleague was using to store his code, of course, but he had lost some code and recovered a script embedded in a PDF document from somewhere else.)

It is, however, a compelling argument not to store your Python source in PDFs. Leading white space on Python source lines is significant. If you've lost all your source formatting, I would say that's a problem, whether your source still compiles and executes properly or not.

Using this .vimrc (or _vimrc on Windows), I've hardly thought about this indentation issue for over a decade:

set tabstop:4
set shiftwidth:4
set et
set autoindent
set wrap
set textwidth=72
syn on

Some other vim tricks/settings I don't want to lose track of:

    :e ++ff=mac

Other Stuff

I recently had an opportunity to see Joel Spolsky speak, live in Albuquerque. I had heard the name. He's the CEO of Stack Exchange (Stack Overflow), as well as some other things, most notably http://www.joelonsoftware.com/. So, I went to have a look at his blog, and here is the first thing I pulled up: http://www.joelonsoftware.com/articles/fog0000000069.html

OMG! I can hardly express how appropriate and applicable this is to the project I am currently involved with. The rewrite wasn't my idea, nor even within my company. I am tempted to relay this to the people that are in the early stages of a great big rewrite project, but something tells me they are just not going to take this reference kindly. And it is not likely to endear me to the people I have to work with, nor it is likely to alter their plans: the project is already funded and underway. I'm still thinking it over.

Oracle SQLDeveloper (Java DB client)

You can turn on line numbers like this:

  • Tools -> Preferences

  • Left panel, open: Code Editor
  • Select "Line Gutter"
  • Check "Show Line Numbers" (at top)


CategoryHomepage

ErikJohnson (last edited 2018-05-24 19:40:20 by ErikJohnson)

Unable to edit the page? See the FrontPage for instructions.