Michał Idzikowski

Results 73 comments of Michał Idzikowski

PoC (I don't know any bugs, down-sides - didn't test in production, event not on sandbox) here: https://github.com/d5/tengo/pull/372 I made this, because this repo looks more active than https://github.com/ozanh/ugo and...

I mean just proxy with switching servers without complex logic and plugins, so only handling command or pluginmessage to reconnect player internally to another server. I tried repeating same steps...

I knew about scoreboards and player list and it's very easy to clear them (my code wasn't doing it), so I'll rewrite this code in next few weeks (I take...

I gave up on NMP and did own implementation in Go. Saved me many hours fighting with this library. I had to implement only few packets and pass-through others, so...

I can't share it now, because it contains data about endpoints used for auth, but I think about making it clean and selling it, because it was pretty fast.

FMS su..... it's not the best in my opinion :)

Issue is still open and it still exists. I got report for user that his video is not playing and after some debugging I found that for this single file...

I'm going to write script, which will replace all gd function with static calls to some class and there I wonna call ImageMagick functions. IM library is a lot better...

It's exactly what I'm thinking about, the class can be singleton and contain data for image to know what and with what to do. My first version makes an static...

Firstly I'm going to create such thing: ``` php class GraphicsEngine { public function __call($name, $args) { return call_user_func_array($name, $args); } } $ge = new GraphicsEngine; $im = $ge->imagecreate(150, 250);...