João Esperancinhajesperancinha.hashnode.dev·20 hours agoKotlin Native and GraalVM - The Story So Far1. Introduction There is a lot of buzz today about a technology that we tend to call Native. Native technology or Native code usually refers to code programmed in C that can be run in one particular system directly without a Virtual Machine after com...Kotlin
ANSHbitmanipulation.hashnode.dev·Aug 4, 2024Manipulating BitsFind the Bit at ith Position To find the Bit at the ith Position we use AND Operator among the number and mask created by us.Mask consists of 1 at the ith position and all other vacant spots are filled with zero . To achieve this mask we use left shi...bit-manipulation
ANSHbitmanipulation.hashnode.dev·Aug 4, 2024Bit Manipulation: CORE CONCEPTSBit manipulation is a technique that involves directly manipulating the individual bits of a number. It's often used to optimize algorithms and solve problems efficiently. BITWISE OPERATORS Observations of XOR : a ^ 1 = ā (compliment of a) a ^ 0...10 likesbit-manipulation
Programming Yearnerprogrammingyearner.hashnode.dev·May 26, 2023How binary code worksIn this article we are going over the binary code how it works and what it is. Everything there is about binary code we are going to be describing almost everything there can be. What is Binary Code? https://programmingyearner.blogspot.com/2023/05/bi...Programming Blogs