Position of Emphasis Beginning and end of the sentence. Push the not so important details to the middle. Before put… Read more Professional Writing 4: Create Emphasis
Month: October 2013
C++ for C Notes for Lecture 1
1 Library Declaration C++ can use most old libraries with <c…>, drop .h C … Read more C++ for C Notes for Lecture 1
Google Python Style Rules
Line Length: Maximum line length is 80 characters. Exceptions: Long import statements. URLs in comments. Make use of Python’s implicit line joining… Read more Google Python Style Rules
Google Python Coding Style (Language Rule)
Original Post: http://google-styleguide.googlecode.com/svn/trunk/pyguide.html Import: Use import x for importing packages and modules. Use from x import y where x is the package prefix and y is the module… Read more Google Python Coding Style (Language Rule)