Deon Slabbertbecomingaprogrammer.hashnode.dev·Dec 4, 2023Database Naming ConventionsNaming conventions are critical in programming and database design as it prevent early death, either by a co-worker or self-inflicted. Giving the necessary attention to naming things appropriately will save you major headaches when it comes to unders...Database Design FundamentalsNaming Conventions
Gastondevgs-blog.hashnode.dev·Sep 19, 2023Using snake case with mapstructIntroduction For those backend devs who are unfamiliar with mapstruct: you miss out on a fantastic tool. MapStruct is an open-source code generation library for mapping data between Java beans. It simplifies the process of converting one Java object ...1 like·97 readsmapstruct
Pranish Ajagekarpranish23.hashnode.dev·May 9, 2023String Cases in Programming: Understanding Camel Case, Pascal Case, Snake Case, Kebab Case, and Title CaseIn computer programming, several types of cases can be used to format strings. These include: Camel Case: This is a naming convention where the first word is in lowercase and the first letter of each subsequent word is capitalized. For example, myVa...411 readskebab-case
Haneunhanlee.hashnode.dev·Mar 19, 2023Popular Naming Conventions for Variables: Snake Case, Pascal Case, Camel CaseSnake Case var snake_case; The expression style that includes underscores (_) is called snake case, named after the appearance of a snake. Pascal Case var PascalCase; When the first letter and the middle letters are capitalized, it is similar to the ...Programmingprogramming