Description: Personal website about me and technical/aviation stuffs I find useful.
blog (30354) jekyll (1626) swift (760) golang (682) jogendra kumar (2) jogendra (2) imjog24 (2) jogendrasingh (2) jogendrafx (2) jogendr24 (2)
iOS/Backend Engineer
Writing maintainable code is essential. Clarity, readability, and simplicity are all aspects of maintainability. It should make the process easy for someone to join your project or maintain it after someone leaves. Maintainability is measured by how effortless it is to introduce changes and the amount of risk associated with...
As a Golang developer, you probably have encountered import cycles. Golang do not allow import cycles. Go throws a compile-time error if it detects the import cycle in code. In this post, let’s understand how the import cycle occurs and how you can deal with them. Import Cycles Let’s say...