MBManish Bannurinmanish-bannur.hashnode.dev·Aug 15, 2021 · 14 min readSpeaking confidently in publicGood public speaking skills aren’t something most people are born with. They have to be learnt. In this article, you will see how to define the objective of your speech, organise your content, and even master important body language skills that can h...00
MBManish Bannurinmanish-bannur.hashnode.dev·Aug 13, 2021 · 6 min readUnderstanding Kotlin LambdaFind out the last factor of being a first-class citizen: the opportunity to create a function at runtime and without a predefined name. Functions without name To create a function that isn't bound to its name in Kotlin you can create an anonymous one...00
MBManish Bannurinmanish-bannur.hashnode.dev·Aug 7, 2021 · 2 min readGradle BasicsGradle is a modern automation tool that helps build and manage projects written in Java, Kotlin, Scala, and other JVM-based languages. It describes project dependencies and determines how to build a project. Gradle uses a well-designed plugin system,...00
MBManish Bannurinmanish-bannur.hashnode.dev·Aug 7, 2021 · 3 min readJava Build ToolsWhat is a build tool? A build tool is a program that automates the process of creating executable applications from source code. The build process includes compiling sources and linking and packaging the code into a usable or executable form. In sma...00
MBManish Bannurinmanish-bannur.hashnode.dev·Aug 7, 2021 · 2 min readJvm / Jre / JdkJava Virtual Machine (JVM) Java Virtual Machine, or JVM, is a virtual simulation of a physical computer. It executes the Java (or Java compatible) bytecode, which comes after the source code compilation. In some sense, JVM acts as a mediator between ...00