Posts
All the articles I've posted.
-
There is more to copying
1 min read PythonAn assignment only creates a binding (an association) between a name and a target (object of some type). A copy is sometimes necessary so you can change the value of one object without changing the other (when two names are pointing to the same object)
-
Implementing weak references in Python
1 min read PythonNormal Python references to objects increment the object's reference count thus preventing it from being garbage collected
-
Translating Scanner tokens into primitive types
1 min read JavaTranslating Scanner tokens into primitive types
-
Listing a file system's root directories
1 min read JavaListing a file system's root directories
-
The Console class
1 min read JavaThe Console class
-
Next, Function or Method ?
1 min read PythonNext, Function or Method ?
-
Generator Expressions
2 min read PythonGenerator Expressions
-
Yield Keyword
1 min read PythonYield Keyword