쭈니아빠 블로그
close
프로필 배경
프로필 로고

쭈니아빠 블로그

    • 분류 전체보기 (87)
      • Development (70)
        • C# (10)
        • WPF (4)
        • ASP.Net (11)
        • Javascript & TypeScript (4)
        • HTML & CSS (1)
        • NodeJs (1)
        • NextJS (1)
        • Angular (1)
        • Python (6)
        • Linux (1)
        • SQL (6)
        • Windows (7)
        • Visual Studio Code (1)
        • Unity (2)
        • Cocos2d-x (3)
        • Flutter (1)
        • Utility Apps (7)
        • Docker (1)
        • LeetCode (1)
      • 일상 (7)
        • 이런 저런 이야기 (2)
        • 노트북 (1)
        • 주변기기 (2)
      • 이글루스 블로그 기록들 (9)
        • 기록 보관소 (8)
        • 오래된 도구들 (1)
  • mode_edit_outline글작성
  • settings환경설정
  • 홈
  • 태그
  • 방명록
[ASP.NET] ASP.Net core 6에서 NLog 사용하기

[ASP.NET] ASP.Net core 6에서 NLog 사용하기

NuGet packge manager에서 NLog.Web.AspNetCore 패키지를 검색해서 설치해줍니다. 검색이 귀찮으면 프로젝트 파일에 직접 써넣습니다. Program.cs 파일에 아래 코드를 추가합니다. using NLog.Web; ... // NLog builder.Logging.ClearProviders(); builder.Logging.SetMinimumLevel(LogLevel.Trace); builder.Host.UseNLog(); ... var app = builder.Build(); 아래와같이 NLog.config 파일을 작성합니다. 이제 ILogger 인터페이스로 쓰여진 모든 log 메세지들도 NLog로 redirect되므로 NLog의 logging 함수들을 사용해도 되고 ILogg..

  • format_list_bulleted Development/ASP.Net
  • · 2023. 1. 17.
  • textsms
[DBeaver] 무료 통합 데이터베이스 클라이언트 GUI 툴

[DBeaver] 무료 통합 데이터베이스 클라이언트 GUI 툴

여러 프로젝트를 진행 하다보면 각 프로젝트별로 서로 다른 DBMS를 사용하게 될 경우가 많은데 해당 프로젝트 DB에 연결하기 위해서 개별 client들을 쓰는게 불편하게 느껴질 때가 있으신 분들에게 꼭 필요한 툴입니다. 아래 사이트에 접속해서 다운로드 받으면 됩니다. https://dbeaver.io/ DBeaver Community | Free Universal Database Tool DBeaver Universal Database Tool Free multi-platform database tool for developers, database administrators, analysts and all people who need to work with databases. Supports all po..

  • format_list_bulleted Development/Utility Apps
  • · 2023. 1. 13.
  • textsms
[PostgreSql] json_array_elements() 함수로 json string을 행으로 가져오기

[PostgreSql] json_array_elements() 함수로 json string을 행으로 가져오기

json_array_elements() 함수를 사용하면 json 타입의 컬럼에서 json 내의 배열 property의 값을 행으로 가져올 수 있습니다. with test as (select '{"array": [ "v1", "v2", "v3", "v4", "v5" ]}'::json json) select j.* from test, json_array_elements(json -> 'array') j

  • format_list_bulleted Development/SQL
  • · 2023. 1. 13.
  • textsms
[PostgreSql] split_part(), string_to_array(), unnest() 함수로 컬럼의 문자열 분리하기

[PostgreSql] split_part(), string_to_array(), unnest() 함수로 컬럼의 문자열 분리하기

1. 구분자로 문자열을 분리한 다음 각각의 컬럼으로 나누기 with test as (select '서울,대구,부산,대전,인천,광주' cities) select split_part(cities, ',', 1) "1", split_part(cities, ',', 2) "2", split_part(cities, ',', 3) "3", split_part(cities, ',', 4) "4", split_part(cities, ',', 5) "5", split_part(cities, ',', 6) "6" from test 2. 문자열 분리 후 배열로 가져오기 with test as (select '서울,대구,부산,대전,인천,광주' cities) select string_to_array(cities, ',') fr..

  • format_list_bulleted Development/SQL
  • · 2023. 1. 13.
  • textsms

[PostgreSql] JSON type 컬럼 Query 방법

공식 문서 참조 : https://www.postgresql.org/docs/9.3/functions-json.html OperatorRight Operand TypeDescriptionExample -> int Get JSON array element '[1,2,3]'::json->2 -> text Get JSON object field '{"a":1,"b":2}'::json->'b' ->> int Get JSON array element as text '[1,2,3]'::json->>2 ->> text Get JSON object field as text '{"a":1,"b":2}'::json->>'b' #> array of text Get JSON object at specified path '{"..

  • format_list_bulleted Development/SQL
  • · 2023. 1. 4.
  • textsms
[Unity] 레이저 광선 효과 쉽게 만들기

[Unity] 레이저 광선 효과 쉽게 만들기

Unity Hub에서 프로젝트 템플릿 3D (URP) 선택 후 프로젝트를 생성합니다. URP 템플릿으로 생성하면 SampleScene에 Global Volume이라는 Object가 하나 더 들어가 있습니다. Inspection창을 들여다보면 Volume component를 통해 Global Post-Processing을 처리합니다. Tonemapping, Bloom, Vignette 3가지가 설정되어 있는데 Laser의 광선(발광) 효과를 주기 위해서는 Bloom 효과가 활성화 되어 있어야 합니다. 우선 scene에 plane, cube, cylider 오브젝트들을 추가합니다. 그다음 laser라는 Material을 하나 생성합니다. Inspector 창에 생성된 Material의 Shader를 Part..

  • format_list_bulleted Development/Unity
  • · 2023. 1. 3.
  • textsms
  • 1
  • ···
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
공지사항
전체 카테고리
  • 분류 전체보기 (87)
    • Development (70)
      • C# (10)
      • WPF (4)
      • ASP.Net (11)
      • Javascript & TypeScript (4)
      • HTML & CSS (1)
      • NodeJs (1)
      • NextJS (1)
      • Angular (1)
      • Python (6)
      • Linux (1)
      • SQL (6)
      • Windows (7)
      • Visual Studio Code (1)
      • Unity (2)
      • Cocos2d-x (3)
      • Flutter (1)
      • Utility Apps (7)
      • Docker (1)
      • LeetCode (1)
    • 일상 (7)
      • 이런 저런 이야기 (2)
      • 노트북 (1)
      • 주변기기 (2)
    • 이글루스 블로그 기록들 (9)
      • 기록 보관소 (8)
      • 오래된 도구들 (1)
최근 글
인기 글
최근 댓글
태그
  • #PostgreSQL
  • #C#
  • #ObservableObject
  • #mvvm
  • #ASP.NET
  • #wpf
  • #asp.net core 6
  • #.net6
  • #asp.net core
  • #CommunityToolkit.Mvvm
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바