Skip to content

Instantly share code, notes, and snippets.

@pgdaniel
pgdaniel / protocol.rb
Created November 19, 2019 05:55 — forked from omnisis/protocol.rb
Ruby UDP Server/Client Pair with Custom Binary Protocol
require 'bindata'
class CustomProtocol < BinData::Record
endian :big
stringz :command_word
uint8 :op1
uint8 :op2
end
@pgdaniel
pgdaniel / index.html
Last active September 22, 2023 18:22 — forked from arscan/index.html
Basic Visualization
<html>
<h1>BLAH</h1>
</html>