정보기술

Gnu Board Theme 0.9.7 Update

We have updated the Bootstrap theme for Gnu Board (0.9.7). You can use Bootstrap without changing the Gnu Board source. Installation Method Download the theme and install it in the Gnu Board theme folder.Ex) /theme/bootstrap/ In the theme settings, apply Bootstrap 5. In the basic settings, apply the most recent post skin, search skin, visitor...

Using Threads in Delphi

This is an easy way to work with threads in Delphi. Just make sure to use synchronize properly 🙂 Function Details uses System.Classes, System.SysUtils, Vcl.Forms; procedure Wait(Proc: TProc); begin Thread := TThread.CreateAnonymousThread(procedure() begin Proc; end); Thread.FreeOnTerminate := True; Thread.Start; while not Thread.Finished do Application.ProcessMessages; end; How to Use Wait(procedure() begin // .... content end);

Finding Current Location (PHP)

We can determine the location using the geolocation function. If there are relevant permissions issues or if the browser is not supported, we can use the API provided by Naver to obtain the location via IP address. Before using it, please get your Naver API key at the following address.(https://www.ncloud.com/product/applicationService/geoLocation) <? function makeSignature($secretKey, $method, $baseString,...