Kilho.net

Kilho.net

Notice

Short Domain Service

I found out that the short URL service provided by Google would soon be discontinued, so I quickly built and released this service. It is similar to the existing service, but since it was difficult and inconvenient to find a…

Read more — Short Domain Service
IT

Using Threads in Delphi

Here’s an easy way to use threads in Delphi. Just use synchronize properly 🙂 Function [code lang=”delphi”] uses System.Classes, System.SysUtils, Vcl.Forms; procedure Wait(Proc: TProc); var Thread: TThread; begin Thread := TThread.CreateAnonymousThread(procedure() begin Proc; end); Thread.FreeOnTerminate := True; Thread.Start; while not…

Read more — Using Threads in Delphi
Notice

SecretDNS Update

Recently, due to concerns about SNI eavesdropping, I created and released SecretDPI and SecretSNI. There was a lot of feedback about having to run several programs separately, so I included them in SecretDNS, allowing DNS encryption and SNI eavesdropping protection…

Read more — SecretDNS Update