Hacker tips: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

24 January 2020

23 January 2020

  • curprev 10:0610:06, 23 January 2020Mip talk contribs 239 bytes +239 Created page with "== Hex == See Hex. == Bit manipulation == === Endian swap === For 32-bit: <source lang="bash"> #pseudo code v = (v <<< 24) & 0xff00ff00 | (v <<< 8) & 0x00ff00ff </source>..."