QM6
2023-05-24 22:20:12

2023-05-22, 쿨링팬 교체 리콜 서비스

▼ more
컴퓨터 청소를 끝냈는데
2023-05-01 13:56:16

달라진 것이 없다.

분명 먼지는 날려 버렸는데;;

▼ more
오일 engine oil
2023-05-01 10:57:46

273902

조향기어 누유

▼ more
c, current time in milliseconds
2022-11-05 00:09:52

#include <sys/time.h>

#include <iostream>

int main() {

   struct timeval cur_time;

   gettimeofday(&cur_time, NULL);

   std::cout << "Current time since January 1, 1970: "

             << cur_time.tv_sec * 1000 + cur_time.tv_usec

            << " ms" << std::endl;

   return 0;

}

▼ more