Skip to content

Instantly share code, notes, and snippets.

View sl2820's full-sized avatar

Sangyoon sl2820

View GitHub Profile
void ff(MessageUnpacker unpacker) {
try{
while (unpacker.hasNext()) {
// [Advanced] You can check the detailed data format with getNextFormat()
// Here is a list of message pack data format: https://github.com/msgpack/msgpack/blob/master/spec.md#overview
MessageFormat format = unpacker.getNextFormat();
// You can also use unpackValue to extract a value of any type
Value v = unpacker.unpackValue();
switch (v.getValueType()) {
@sl2820
sl2820 / index.html
Created September 18, 2016 00:17 — forked from anonymous/index.html
mAEvkk
<h1> Soccer </h1>
<p> <font size = "5"><b>Beauty of Soccer</b></font> <br> Soccer is my favorite sports since i was little kid. <br> At the same time, the beauty of the sport is appreciated by many people all over the world.</p>
<h3> Interesting Facts
<ul>
<li><font size="3">There exist more countries which hold memberships in FIFA than that of the United Nations</font></li>
<li><font size="3">This is link on famous soccer video called - <a href = "https://www.youtube.com/watch?v=cCm62rW7j2c"> <b><em>"#RESPECT"</em></b></a></font></li>
</ul>
</h3>