시작하자마자 부수고 또 부수었다. 기존 코드를 ‘한 가지만 하는’ 함수로 나누다 보니 객체가 자연스레 생겼다. 그 객체 수가 불어나며 그를 묶어낼 패키지도 자연스레 정의되었다. 이 시기 ‘델파이 프로그래밍 언어‘가 나의 친구였다. C 프로그래밍 언어를 읽어보면서, 각 언어의 레퍼런스로 창시자가 내놓은 일명 ‘XX 프로그래밍 언어’가 정말 좋음을 이 때 깨달았다. 그래서 산 책인데, 이를 통해 10년 […]
Problem using Virtualbox and VMWare while running Hyper-V
On Hyper-V installed Windows, Virtualbox only run 32bit OS and VMWare is cannot be used. Because on Hyper-V the OS you using is the first virtual machine on the Hypervisor. From: https://blogs.technet.microsoft.com/tonyso/2009/04/02/hyper-v-how-to-understand-hyper-v-architecture/ In other words, only booting to Windows with Hyper-V means run the first VM with it. So other Hypervisor cannot be used.
How to deal with Ubuntu Internal Error on Hyper-V
Press Ctrl + Alt + F2 and press sudo apt-get update sudo apt-get dist-upgrade sudo dpkg –configure -a then restart. From: //askubuntu.com/questions/759987/error-in-ubuntu-16-04-installation
Cisco EasyVPN @ Windows 8/8.1/10
Small Business router like Cisco RV320 only provides EasyVPN, not Anyconnect nor QuickVPN. But it has a problem. OS above Windows 8 don’t support EasyVPN. (And it can’t be connected with cellphones. Cellphones only can connect to these routers with PPTP and IPSec. Prerequisites. SonicWALL Global VPN Client EasyVPN Client (x86 / x64) Firstly install […]
Change Windows boot method from BIOS to UEFI
Caution! This method is extremely dangerous. Clean install with UEFI is safer. Use at your own risk. UEFI provides you some advantages like faster boot. So in this article, you can get how to change the boot method without losing any data. Prerequisites. Windows installation CD gptgen Minitool Partition Wizard In this article I assume […]
Insecure registry @ Docker Toolbox, The Easier Way
Open C:\Program Files\Docker Toolbox\start.sh and find “${DOCKER_MACHINE}” create -d Then insert –engine-insecure-registry (Registry url or ip):(Registry port) before -d
Host Docker Registry in Synology, The Working Way
In most cases, you can just push your image to Docker Hub. But for some reasons like images for work or something, you can’t open your image to public. In that case, you need a Docker Registry. This article will help you to run a Docker Registry with your Synology NAS. Before we start, prepare […]
Docker Quickstart Terminal @ Hyper-V Guide
This is the result. Inner window is running Hyper-V VM, and outer one is Docker Quickstart Terminal. We can easily get Hyper-V VM with Boot2Docker image. But there’re some advantages to use Docker Quickstart Terminal instead of just VM. For example DQT supports easy way to build natively and run with VM. I personally like […]
CrystalDiskInfo 개발자가 말하는 사랑받는 소프트웨어란?
CrystalDiskInfo 개발자인 hiyohiyo씨의 ‘ユーザーに愛されるソフトを作りたい!!’ 를 번역해 보았습니다. 가장 압권이었던 부분은 CrystalDiskInfo를 만든 동기였습니다. 1.어떤 연말의 어느 날 “달의 공주님이 홈스테이” 라는 설정의 게임 플레이 동영상을 우연히 보게 되었다 (수수께끼 2.가장 좋은 곳에서 동영상이 끝! 3.부리나케 PS2판을 사러 달려라! 4.연말 연시를 모에하며 지내자!! 5.디스크 정보 도구를 만들자!! 이 무슨… 37번 슬라이드의 스이쇼 시즈쿠 프로듀스 과정에서 가장 […]
Windows 10 NVMe Command Sample (C++)
This article only has code sample. If you need explanation, see this article. This is the code for below WDK 10. If you have newer WDK than 8.1, erase namespace Windows 10. [snippet slug=windows-10-nvme-passthrough-sample-cpp lang=c_cpp]