Ikseon-dong Yajang: Where Hanok Charm Meets Pojangmacha Vibes

Ikseon-dong-yajang

Welcome to Ikseon-dong, one of Seoul’s trendiest neighborhoods, where the quiet charm of traditional hanok houses blends with vibrant, modern energy. Tucked within these charming alleys is Ikseon-dong Yajang, a special pub that perfectly captures the lively spirit of an outdoor street food stall (pojangmacha). It’s the ideal spot for anyone looking to enjoy a drink in a nostalgic, open-air setting.

Two Plus Sirloin, Gwanghwamun: A Premier Hanwoo Dining Experience

kwanghwa-2plus-beef

Located in the landmark Seoul Finance Center in the heart of Gwanghwamun, Two Plus Sirloin (투뿔등심) is more than just a Korean BBQ restaurant; it’s a premier destination for important business dinners and special occasions. Adhering to the highest standard of 1++ (Two Plus) grade Hanwoo beef, this establishment offers a truly satisfying experience in taste, ambiance, and service.

Euljiro Jeonjook: A 20-Year-Old Culinary – The Special Encounter of Squid and Fire-Grilled Ribs

euljiro-jeonjook

Nestled amidst the bustling skyscrapers in the heart of Seoul lies Euljiro, a neighborhood harboring long-standing restaurants that have stood the test of time. Among them, “Euljiro Jeonjook” shines brightly, having been a local favorite for over 20 years. This establishment captures the hearts of food lovers with its unique signature dish: “Ojingeo Bulgogi-jjim” (Spicy Squid and Grilled Rib Stew).

플러터(Flutter) 예제(Example) – 동영상 플레이어 | video_player, image_picker 플러그인 사용

my-player-app

플러터(Flutter) 예제(Example)로 동영상 플레이어를 만들어 보자.
필수 사용 플러터 플러그인은 video_player, image_picker이다.
특히 재생 중에 동영상을 변경할 때, unInitializeController() 함수 안의 await videoPlayerController?.dispose(); 함수를 반드시 호출해 주어야 이전에 재생중이던 동영상이 닫힌다.
Stack, Positioned 위젯과 Align 위젯을 사용하여 위젯들의 정렬을 처리하였고 StatefulWidget의 didUpdateWidget() 함수를 이용하여 동영상이 변경되었을 때 처리를 하였다.

MFC, C++ | CHttpFile, CInternetSession을 이용하여 JSON 파일 읽어오는 예제와 UTF-8 BOM 이슈

http-url-json-file-read

MFC / C++
CHttpFile, CInternetSession
회사에서 투자정보 서버에서 서비스로 제공해 주던 데이터를 갑자기 웹 파트를 통해 URL을 이용하여 JSON 파일(.json)로 데이터를 다운 받을 수 있게 제공해 준다고 하여 웹 URL 상의 JSON 파일을 연결하여 JSON 데이터를 읽어와서 사용해야 하는 경우가 발생했다.

그래서 우리 코드 상에 잘 없는 경우인 Http URL 통신 로직을 본격적으로 추가하게 되었다.