top of page
검색

T-SQL - Cursor - Description and Use-Case (Example)
Cursor in t-sql is very useful feature. In SQL, it is difficult to set a pointer to a set of data and evaluate other tables or data...
2023년 3월 19일2분 분량
조회수 5회


Entity Framework Core - Best Practices - C# & .NET
This article will show several best practice cases for using Entity Framework Core (aka EF Core). EF was an innovative technology to...
2023년 3월 14일3분 분량
조회수 4회

100% 모든 OS 체제에 작동하는 페이지 이동 이벤트 포착 자바스크립트 코드 - JavaScript
웹 애플리케이션을 만들다 보면 페이지 애널리틱스를 적용해야 하는 경우가 간혹 생깁니다. 저 같은 경우는 한 페이지에서 유저가 보던 동영상의 마지막 시점이 어디였는지를 유저가 다른 페이지나 사이트로 이동 전에 받아와서 다음에 같은 동영상을 볼 때...
2023년 3월 12일2분 분량
조회수 2회

Page Change Event Code That Works in ALL Devices and Browsers - JavaScript
Detecting page change event in all devices is a difficult job because of different ecosystem. Especially iOS has its own browser...
2023년 3월 12일3분 분량
조회수 3회


Static Method Using "this" - C# & .NET
This is one of my favorite coding method. If used properly, it can make your coding life much easier. Using "this", you can create a...
2023년 3월 8일1분 분량
조회수 0회


Entity Framework Core - Entity Change (엔티티 체인지 하기) - C# & .NET
엔티티 프레임워크 (Entity Framework, 또는 EF)에서 데이터 베이스에 있는 테이블을 불러오는 건 당연히 쉽죠. 그렇지만 테이블의 칼럼들이 너무 많고 앱에서는 다 필요가 없을 시에는 어떻게 할까요? 원래는 다 가지고 오면 좋은...
2023년 3월 5일1분 분량
조회수 1회

Easy Guide to AutoMapper (Simple Class Converter) - C# & .NET
While you are creating numerous classes during development, there are numerous cases where you have to convert from one to another...
2023년 2월 25일1분 분량
조회수 5회


Tips for Performance Improvement - Visual Studio
A lot of developers use Visual Studio as their IDE. I also have used since version 2005 through 2022. However, you sometimes see...
2023년 2월 25일3분 분량
조회수 1회


this... Static Method (this 정적 메소드) - C# & .NET
제가 아주 즐겨 쓰는 기능입니다. 잘 쓰면 코딩이 아주 편리해 지죠. this를 이용하여 static 메소드를 사용할 수 있습니다. 만약에 내가 byte 타입의 변수에 파일을 생성하는 코드를 자주 쓴다고 하면 일일이 매번 컨버젼 코드를 쓸...
2023년 2월 19일1분 분량
조회수 5회


Persisting Grafana and Prometheus Configuration Data - Kubernetes
If you install Grafana in Kubernetes, you may see that the config data in Grafana may be reset (such as admin password and dashboard...
2023년 2월 19일1분 분량
조회수 2회

Comprehensive Setup Guide for Prometheus and Grafana in AKS - PowerShell
I will explain easy and comprehensive way to install and setup Prometheus and Grafana in AKS (Azure Kubernetes Service). In Kubernetes...
2023년 2월 19일2분 분량
조회수 6회


Adding SSL to Grafana and Accessing It from Anywhere - Kubernetes
Because of Grafana's dashboard tool, it will be useful to access from anywhere. If you access it locally, it is easy to do a port...
2023년 2월 19일2분 분량
조회수 16회


Table-Valued Function (TVF) Explained (with Examples) - SQL
Table Valued Function (TVF) in T-SQL (Transact-SQL) returns a table. Especially this feature is useful with Entity Framework because EF...
2023년 2월 18일1분 분량
조회수 7회

Create A Versatile and Stable Popup Window For All OS's and Browsers - JavaScript
Creating a versatile and stable popup window in a web app is a difficult task because browsers and OS's behave differently. After some...
2023년 2월 17일2분 분량
조회수 2회


Entity Framework Core - Best Practices (모범사례) - C# & .NET
.NET을 하시는 분들이면 Entity Framework을 쓰시죠. ADO.NET 에서 EF Core (Entity Framework Core)로 넘어온 지 오랜 세월이 지났지만 아직도 완전히 EF Core를 제대로 알고 쓰는 사례가 많이 없는...
2023년 2월 5일2분 분량
조회수 0회


PART 1 - How To Compile Protobuf in Windows Environment - REACT
This article discusses how to compile gRPC-Web's Protobuf file for React (or other JavaScript-based web app) in Windows environment. This...
2023년 1월 28일2분 분량
조회수 28회


PART 2 - How To Get Data from gRPC-Web Server - REACT
This article describes how to communicate with a gRPC-Web proxy server with the Protobuf compilation files we created from the Part 1. 1....
2023년 1월 28일1분 분량
조회수 0회

How To Create gRPC Server in .NET and Add gRPC-Web - C# & .NET
In gRPC world, there is no text-to-binary conversion, so the machines do not spend time to convert data to the format they can read. ...
2023년 1월 28일1분 분량
조회수 3회

Add CORS To gRPC-Web Server - C# & .NET
If you separate front and back end, you may have CORS issue. The CORS issue can happen if you assign different ports or use different...
2023년 1월 28일1분 분량
조회수 4회


다기능 다이얼로그 박스 또는 모달 창 (Dialog Box or Modal Window) - JavaScript
하나의 코드로 Confirm과 Alert 기능을 다 쓸 수 있는 다이얼로그 박스 (또는 모달 창) Dialog Box입니다. 하나의 코드로 다음의 세 가지 기능을 구현할 수 있습니다: Alert 창 콜백이 있는 Alert 창 콜백이 있는...
2023년 1월 22일1분 분량
조회수 9회

bottom of page