You are welcome to contact me at facebook.com/profile.php?id=100080773446194
Friday, October 29, 2021
Monday, October 25, 2021
Sunday, October 24, 2021
Monday, October 18, 2021
Sunday, October 17, 2021
Software development conventions
No comments
We use proper variable names instead of comments. The only exceptions for comments are "//TODO" temporary labels.
Order of class members in within the class definition
Internet suggests multiple ways for ordering and sorting members, and I follow neither of them. It is up to everybody to choose his/her own way of sorting members. It is not important how we sort members; rather it is important how consistently we follow our chosen methodology. So my way to sort members is as follows:
- Inherited (overridden) members from the parent class.
- Everything else.
In within of each of these, items are sorted as follows:
- Variables
- Init{} block
- Constructors(){}
- Functions(){}
- Everything else
In within of each of these, items are sorted as follows:
- Abstract
- Public
- Private
- Everything else
Friday, October 15, 2021
How to reuse (upcycle) garbage at home
This post is an extension for the main philosophy for the Reuse section of Reduce, Reuse and Recycle post.
Garbage types for reuse:
Glass