전체 글 (464) 썸네일형 리스트형 티스토리 서식 활용하여 스타일 공통적용하기 기존에 따로 관리하던 영문 블로그를 티스토리로 옮기기로 하고 얼마 전에 코드를 통해 다국어 블로그를 만들었습니다. 블로그를 쓸 때마다 수작업으로 해당코드를 해당 포스트에서 가져와 붙이는 작업을 하다 문득 다른 방법이 있을 거 같아 관리자 페이지를 살펴보니 '서식'이라는 기능이 있더군요. '서식'은 이름대로 설정해 둔 서식이나 기능을 저장해 두고 필요할 때 가져다 쓰는 기능입니다. 서식 만들기 서식 만들기는 아주 간단합니다. 관리자 페이지에서 메뉴 중 '서식관리'를 선택하고 열린 화면에서 '서식 쓰기' 선택 후 서식을 작성하고 저장하면 완료됩니다. 서식 만들기 예시 1. 서식 만들기 기존에 만들어 둔 다국어 블로그를 예시로 서식을 만들어 볼까요? '서식 쓰기'를 선택하면 아래처럼 일반 포스트 편집화면이 열.. .NET - 프로그램 파일 정리하기: 서비스 설정 익스텐션 만들기 Program.cs 파일은 .NET 애플리케이션의 시작파일로 애플리케이션 구동을 위해 필요한 모든 설정을 담고 있습니다. 프로젝트 규모가 커지면 추가하는 서비스도 많아지고 이에 따라 프로그램파일도 지저분해지는데요. 서비스를 추가하는 메서드를 만들어 프로그램 파일을 정리하는 방법을 알아볼까요? 구현하기 서비스를 추가하는 메서드를 담을 폴더를 만듭니다. 새로운 C#클래스를 생성하고 해당 클래스를 초기화 없이 바로 사용가능하게 하기 위해 'static'으로 만듭니다. IServiceCollection를 반환하는 아래 스태틱 메서드를 추가하고 public static IServiceCollection AddAPPServices() { } 매개변수를 추가합니다. 서비스를 사용하기 위해 필요한 IServiceCol.. UTM Analytics provides a report to see the sources and mediem in acquistion report by default. However, it uses a channel to group sources. So if you are using many platforms to advertise your product and want to see which advertisement platform is doing well and which is not, you won't find the exact information you are looking for. UTM is a manual URL builider to append additional information to t.. Available Features When Google Ads and Google Analytics are Linked When you link Google Ads wih Google Analytics, data between the two account flow from one to the other. Let's see some of the features that we can use when the two are linked. Ads Campaign Report in Google Analytics We can see the Google Ads campaign data under the 'Acquisition Overview' in the Google Analytics Campain Dimention in User acquisition report We can use the Google Ads campaign as a .. WSL Installation WSL(Window Subsystem for Linux) is a virtual machine platform that makes running a Linux application on the window OS possible. Installation Before installation, let's check out the minimum specification first the operating system must be window 10 / 64bit or more. You can check this on the 'system information'. In the search bar open the 'powershell' application Run this command to install wsl .. Internet Computer (Web 3) application The firs generation of the internet, Web 1, gave us the freedom to access any data on the internet anywhere. And the second one, Web 2, allowed us not only just to comsume the data but also to create contents. With the advent of the internet computer, we are on the verge of being the owner of the contents we have created. Web 3 is a new paradigm that distributes the one giant internet system to .. Angular Material - Adding Modules (module list) Angular Material is a UI component library provided by Angular. Let's see how to add the module to your angular project.Setting Up the LibraryOpen your project and run the command below (You can also use 'npm install' but 'ng add' automatically completes all the necessary configurations except for adding the module to the module file).ng add @angular/materialThen it will ask if you would like to.. 앵귤러 매터리얼 앵귤러에서 제공하는 UI 컴포넌트인 앵귤러 매터리얼을 추가해 보겠습니다.라이브러리 설치프로젝트를 열고 아래 명령어를 실행합니다. npm으로도 설치 가능하지만 ng add를 통해서 설치하게 되면 모듈에 등록하는 것 빼고 컴포넌트 사용을 위한 모든 구성이 완료되므로 편리합니다.ng add @angular/material실행을 하면 실행 여부를 다시 묻는 데 'yes'를 선택하고 테마선택, 글로벌 폰트 스타일, 애니메이션 등의 사용여부를 결정합니다.모듈에 추가추가된 라이브러리는 모듈에 추가해야 사용이 가능합니다. 정리를 위해 'app.module.ts' 파일에 바로 추가하지 않고 따로 모듈을 생성하여 추가하겠습니다. 아래 커맨드를 실행하여 모듈을 만듭니다.ng g m modules/angular-materia.. 이전 1 ··· 29 30 31 32 33 34 35 ··· 58 다음