You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A hands-on learning tool for understanding bitwise operations. Every operation — including binary ↔ decimal conversion — is implemented manually without abstractions to see exactly how the math works under the hood.
4
+
5
+
## Operations Covered
6
+
7
+
-**AND** — bits set in both operands
8
+
-**OR** — bits set in either operand
9
+
-**XOR** — bits set in one operand but not both
10
+
-**LSHIFT** — shift bits left (multiply by powers of 2)
11
+
-**RSHIFT** — shift bits right (divide by powers of 2)
12
+
13
+
## Features
14
+
15
+
- Chainable operations in the UI — build multi-step expressions interactively, e.g., how the snowflake id is generated
0 commit comments