주절주절

Sharing Keyboard and Mouse

I'm using two computers, and while Microsoft Garage Mouse without Borders worked well with Windows + Windows, I've started using a Mac + Windows, and since that program isn't supported, I've been in a bit of a dilemma. For the time being, I quickly ordered a KM switch from Amazon. The delivery is so slow,...

Windows Cleaner 3.0 Beta Released

It's been a while since we upgraded Windows Cleaner.   The speed has significantly improved compared to the previous version. We’ve made it much easier to manage startup programs and browser plugins. The startup program management is compatible with MSConfig, and recovery works perfectly. The report screen now outputs from the user's default browser. We've...

A Simple CDN Service Module Made with PHP

To reduce traffic load, I used CloudFlare, but I noticed that the connection at LAX (Los Angeles) was slowing things down significantly. In a hurry, I decided to create a CDN-like service. The server is located in Tokyo (Vultr). The principle is to connect kilho.net/{file} to cdn.kilho.net/{file}, which distributes the traffic of the main hosting....

HTTP Connection Information Logging

This is to check if the connection information is correct for testing when using OpenAPI. Method values, host, POST values upon connection. [PHP] <? $log = $_SERVER['REQUEST_METHOD'].' '.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].' n'; foreach($_SERVER as $k => $v) { if($k=='HTTP_HOST') continue; if(substr($k, 0,5)!='HTTP_') continue; $log .= '$k: $v'." "; } $log .= " "; $post = array_map('urldecode', explode('&', file_get_contents('php://input')));...