are you me?    id passwd

status  

 sleepy

picture

 

 thinking

calender

sqrt - 컴퓨터

float sqrt3(const float& n)                                                                       
{                                                                                                 
    //https://www.gamedev.net/forums/topic/704525-3-quick-ways-to-calculate-the-square-root-in-c/ 
    if (n == 0)                                                                                   
        return 0.0f;                                                                              
    static union { int i; float f; } u;                                                           
    u.i = 0x2035AD0C + (*(int*)&n >> 1);                                                          
    return n / u.f + u.f * 0.25f;                                                                 
}                                                                                                 

written time : 2023-11-27 22:16:06.0

WSL ssh - 컴퓨터

WSL
set up ssh server and change its port number using /etc/ssh/sshd_config
then open the firewall
sudo ufw allow $PORT/tcp

Powershell
netsh interface portproxy add v4tov4 listenport=PORT listenaddress='0.0.0.0' connectport=PORT connectaddress=WSL_IP

// WSL uses its own IP address thus you need to check the ip then set port forwarding using the command above.

written time : 2023-11-21 22:04:40.0

Goodbye my old friend - 자동차


written time : 2023-11-14 21:45:59.0
...  1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |  ...