Skip to content

Instantly share code, notes, and snippets.

View I-Info's full-sized avatar
:octocat:
Learning...

a.e. I-Info

:octocat:
Learning...
View GitHub Profile
@I-Info
I-Info / pop.php
Created March 27, 2022 14:09
ezpop01
<?php
class crow
{
public $v1;
public $v2;
function eval()
{
echo new $this->v1($this->v2);
@I-Info
I-Info / NioServer.kt
Last active February 17, 2022 08:16
A Protocol define & implement with JAVA NIO SocketChannel
package com.i1nfo.pbtest.server
import com.i1nfo.pbtest.Protocol
import java.io.IOException
import java.net.InetSocketAddress
import java.nio.ByteBuffer
import java.nio.channels.SelectionKey
import java.nio.channels.Selector
import java.nio.channels.ServerSocketChannel
import java.nio.channels.SocketChannel