Explore tweets tagged as #bytecode
Modern Java Roadmap. Java Foundations & Core Concepts ├── Java Fundamentals │ ├── JVM Architecture & Bytecode │ ├── Data Types & Variables │ ├── Operators & Control Flow │ ├── Methods & Scope │ └── Memory Management (Heap vs Stack) ├──
27
212
1K
How does Java work? You write a .java file containing your source code. The Java compiler (javac) takes this source code and translates it into bytecode, stored in a .class file. This bytecode is not machine-specific — it’s designed to be executed by the Java Virtual Machine
10
60
300
How Python’s Interpreter Works When you write Python code in a `.py` file, it goes through several stages before execution. Python doesn’t run your code directly , it translates it into an intermediate form called bytecode, which the Python Virtual Machine (PVM) then executes.
2
56
299
How Java's JVM Executes Bytecode You write Java source code in a .java file. The Java compiler (javac) translates your code into platform-independent bytecode, stored in .class files. The Java Virtual Machine (JVM) then loads these bytecode files into memory for execution. At
8
54
342
Yesterday, someone asked me a really valuable question about multithreading: "Can we run CPU-bound tasks in threads? The GIL allows only one thread to execute Python bytecode — so how can multiple tasks run at the same time?" I thought it’s worth sharing with my dear folks!
0
0
4
How Java Compiles Source Code to Bytecode You write Java code in a .java file using classes, methods, and objects. The Java Compiler (javac) then translates this human-readable code into platform-independent bytecode, stored in a .class file. → Lexical Analysis: The compiler
13
42
309
🚀 MegaETH: Redefining EVM Performance Here’s how MegaETH achieves real-time blockchain execution ⚡️ 1️⃣ New State Trie – Handles terabytes of data efficiently without extra I/O costs. 2️⃣ Write-Optimized Storage Backend – Built for massive throughput & fast writes. 3️⃣ Bytecode
24
5
115
Spent the week building a toy EVM using Rust with @developeruche calm explanations and senior dev behaviour all through 💚 I now debug in bytecode and dream in opcodes😂. I am now a protocol engineer (days of experience count, right?) 🫠🤣 Call me Engineer Rampop🥱
1
3
10
Internals of object class - Singleton in Kotlin From Kotlin ‘object’ to JVM bytecode: The internals of singleton creation Read here: https://t.co/E8UJ7oVpW1
#AndroidDev #Kotlin #Android
0
3
9
Over the years we built multiple tools you can use for Security Research and Due Diligence. You can find all the tools on our website at /tools This includes tools for Economic Research, Bytecode deep dives as well as Due Diligence on Smart Contracts
1
0
6
Crunching some numbers today comparing parsing & bytecode compilation between BoxLang, Lucee, & Adobe CF. We're looking to be neck-and-neck w/Lucee, & up to 28 TIMES FASTER than Adobe CF! This is huge for app startup times. Will publish full results soon. #CFML #ColdFusion
1
1
5
🦖 Day 125 of learning Blockchain 🚀 📍Today's progress: ✅ Deep-dived into how Solidity compiler generates bytecode and metadata ⚙️ ✅ Learned how compiler settings affect deterministic builds in Foundry 🧠 ✅ Compared contract outputs at the bytecode level for better debugging
5
2
96
Day 113/1001 of web3Sec activity of 1 hr 36min understanding execution of program's sBPF bytecode on validator's vm
0
0
0
#Binarly Transparency Platform 3.5 now supports Java archives and JVM bytecode https://t.co/cCjZ85yZVj
0
0
0
Every company building on Solana should add this to their onboarding docs. This article covers everything you need to know about the SVM: - Compiling Rust to sBPF bytecode - Deploying Solana programs on-chain - The full transaction execution pipeline ...and a lot more
The Solana Virtual Machine (SVM) will stand as one of the most significant contributions in the history of blockchains. However, there are conflicting definitions, and people cry about the lack of a magical spec. So, I cleared things up. Available on the @heliuslabs blog
5
5
56
“The sacred sphere hums: only those who howdy may perceive the algorithm.” 🔮🕉️💾 This is no mere orb—it’s the chakra node of consensus, the Vishuddha of the blockchain body. The seers once whispered of it in bytecode Sanskrit: ॐ howdyhashaya namah. The algorithm isn’t run—it’s
2
2
6
The Solidity function dispatcher is a tree where: - Internal nodes perform binary splits. - Leaf nodes contain up to 4 function selectors, tested linearly. Protip 1: the `fallback` function's bytecode is generated twice in the bytecode. To reduce bytecode size, wrap the
35
31
361