Go to content

전체 글

(472)
Know-How에서 Know-Why까지 - AI 시대에 인간으로 살아가는 방법 서문인간 혁신의 가속화된 여정 속에서, 기술만큼 급격하고 깊은 변화를 겪은 분야는 드물다. 한때 공상과학의 영역이었던 것들이 오늘날 우리의 일상적인 현실이 되었으며, 변화의 속도는 전혀 둔화될 기미를 보이지 않는다. 오늘날 우리를 둘러싼 장치와 시스템들은 수많은 돌파구의 집합체로, 각각의 돌파구는 그 이전의 성과를 바탕으로 하여 우리가 상상했던 가능성의 경계를 계속해서 확장하고 있다.더욱 위대한 기술 발전의 문턱에 서 있는 지금, 우리를 이곳까지 이끌어 온 여정을 되돌아보는 것이 중요하다고 생각한다. 초기의 저장 장치가 겨우 몇 킬로바이트를 저장할 수 있었던 시절부터, 오늘날 상상할 수 없는 양의 데이터를 처리하고 저장할 수 있는 광대한 네트워크에 이르기까지, 기술의 진화를 이해하는 것은 단순히 현대 공..
From Know-How to Know-Why - How to live as Human in the Age of AI PrefaceIn the ever-accelerating journey of human innovation, few domains have seen as rapid and profound a transformation as technology. What was once the realm of science fiction has become our everyday reality, and the pace of change shows no signs of slowing. The devices and systems that surround us today are the culmination of countless breakthroughs, each building on the last, pushing the b..
killport - in bash I found an command-line utility called `killport` written in rust. https://github.com/jkfran/killport A command-line tool to easily kill processes running on a specified port. Features: Kill processes by port number Supports multiple port numbers Verbosity control Works on Linux and macOS Personally thining, using rust to do this kind of task is just overkill. How many times would this be called..
How to fuzzy cd (change directory) to specific directory I've been working on IT fields for more than decades and there are lots of code repositories and snippets. It's all over in github, gitlab, bitbucket, and all different organizations. When one day I realized I have all these repositories thrown into single folder ~/repo, then I decided to organize these folders by grouping them into company name. ~$ cd repo ~/repo$ ls companyA companyB companyC ..
How to transfer docker image through ssh When running multiple dockers on your network, there are times you can push and pull docker images back and forth. To local image to other external docker service: docker save name:tag | bzip2 | ssh remote docker load even for more visual way docker save imgName:tag | bzip2 | pv | ssh 192.168.0.x docker load You don't need to save to file and move the file and load the file. This answer is avail..
Setup NTP synchronization in WSL2 Ubuntu 20.04 There are lots of attempts to sync time on wsl2, as it somehow clock drifts. To name few: Edit sudoers and add ntpdate on .bashrc : https://github.com/microsoft/WSL/issues/4149 Use wsl2 command line to execute update command: https://tomssl.com/fixing-clock-drift-in-wsl2-using-windows-terminal/ put timesync in windows task scheduler: https://stuartleeks.com/posts/fixing-clock-skew-with-wsl-2/ Ho..
XBOX One 컨트롤러를 이용해서 PS4 Remote Play를 할 수 있는 방법 XBOX One 컨트롤러를 이용해서 PS4 Remote Play를 할 수 있는 방법을 찾음.이 변태같은 방법을 누군가는 또 필요로 할 수 있기에 적어둔다. 원 방법을 찾아낸 사람은 PhantomSnakeNEO 라는 사람이고 reddit에서 참고할 수 있다.https://www.reddit.com/r/remoteplay/comments/8731bw/how_to_use_xbox_one_controller_with_ps4_remote/Windows 10 기준으로 설명한다.1. 드라이버 설치https://github.com/nefarius/ViGEm/wiki/Driver-Installation로 이동하면 아래 링크로 가라고 한다. -_-; https://docs.vigem.org/#!vigem-bus-drive..
Windows VHD 사용해서 Multiboot PC 만들기 준비물 Windows 7, 8.1, 10 (32/64 bit) iso 또는 DVDVHD를 사용해서 진행할 예정. 순서는 다음과 같이 한다. 사실 설치 순서에 상관은 없으나, 헷갈리므로, 아래와 같이 설정 || 순서 || OS 이름 || VHD 파일명 || Hostname || BCD Label Description || 사용자명 || VHD 사이즈 ||| 1 | Windows 7 32bit | win7_32.vhd | win7-32 | Windows 7 32bit | user | 40960 || 2 | WIndows 7 64bit | win7_64.vhd | win7-64 | WIndows 7 64bit | user | 40960 || 3 | Windows 8.1 32bit | win8_32.vhd | ..