Portfolio/static/public/html/projects/binary_data_format.html

16 lines
764 B
HTML

<h2>Binary Data Format</h2>
<p>
This project was created to be something similar in structure to JSON,
but also more compact. I wrote a version of this in C++ and another in Java.
The format was designed to be able to be both parsed and written to a binary blob,
while also being able to be read and written to a human-readable text format similar to JSON.
The difference between this and JSON is this one is statically typed, and natively
supports comments in the human readable version.
</p>
<h2>Links</h2>
<ul>
<li><a href="https://github.com/jsrobson10/binary-data-format" target="_blank">Binary Data Format (Java) (GitHub)</a></li>
<li><a href="https://github.com/jsrobson10/BdfCpp" target="_blank">Binary Data Format (C++) (GitHub)</a></li>
</ul>