GSGokul Singokulzdev.hashnode.dev·4d ago · 7 min read1GP to 2GP Migration: Everything That Broke (and How I Fixed It)When we decided to migrate our AppExchange package from 1GP to 2GP, I honestly thought it would be a straightforward conversion. After all, Salesforce provides an sf package convert command. I assumed00
GSGokul Singokulzdev.hashnode.dev·Jun 11, 2023 · 3 min readOOP Principles in javaIntroduction Java is object-oriented. what does that mean? Unlike other languages, that focus on "Do this/ Do that". But Object-oriented languages focus on data. Object-oriented languages are better than those languages because it helps to organize t...00
GSGokul Singokulzdev.hashnode.dev·Jun 4, 2023 · 2 min readWorld Of Classes and Objects in javaIntroduction Java is object-oriented. What does that mean? confusing? Let me explain clearly. Unlike other languages, the object-oriented language is mainly focused on data. In, object-oriented language, you use classes and objects to organize your d...00
GSGokul Singokulzdev.hashnode.dev·May 26, 2023 · 2 min readArray list and it's uses in javaIntroduction In Java, ArrayList is a dynamic data structure that can store a collection of objects. Consider, ArrayList as a choco box. you have a choco box where you can keep all your chocos. you can put different chocolate in the choco box and take...00
GSGokul Singokulzdev.hashnode.dev·May 22, 2023 · 3 min readCreate Hangman game in javaHangman is a word-guessing game. It keeps asking the user to guess characters. Let's Build the Hangman thought it would be a recipe. Before, making recipes we need a prerequisite they are: Arrays Variables Functions Loops The Logic of Hangman: ...00