주절주절

Release of KPlayer 0.9.0

I have used several popular video players. However, at some point, ads started popping up every time I tried to run them. I managed to overlook the ads. But recently, I personally experienced a very famous player secretly installing malicious adware without the user's consent. That moment, I was certain.“This is unacceptable.” So, I created...

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,...

Using Stripe in Korea

I was wondering if it was possible to use Stripe in Korea and came up with a fun(?) method to try it out.   You can use Stripe in Australia without entering an ID like a social security number or business registration number. The information needed for Stripe includes a local account number, phone number,...

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')));...

Creating Short Links Using Google API

I needed a short link, so I created one using PHP. Simply register for the Google API and you're good to go. Usage: shorturl_google('original address', 'API key'); <?php function shorturl_google($url, $key) { $post = array('longUrl' => $url); $json = json_encode($post); $curlObj = curl_init(); curl_setopt($curlObj, CURLOPT_URL, 'https://www.googleapis.com/urlshortener/v1/url?key='.$key); curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curlObj, CURLOPT_HEADER, 0);...

Advertising using the Tenping API

I saw a Tenping ad on Facebook and decided to test it out with PHP. If we consider the overall sales through the revenue rankings on the Tenping site, I wonder if we can keep this running for long... If the results from the test are good, I'll write about various methods to utilize Tenping...