본문 바로가기
728x90
반응형

전체 글295

JavaScript] 웹에서 Apple Login 구성하기 Apple Developer Documentation : https://developer.apple.com/documentation/sign_in_with_apple/sign_in_with_apple_js/configuring_your_webpage_for_sign_in_with_apple 참조 : https://sarunw.com/posts/sign-in-with-apple-4/ 1. Apple Developer 에 로그인 https://developer.apple.com/account 2. Certificates, Identifiers & Profiles 메뉴에서 Service ID 설정한다. 자세한 내용은 아래 참조 https://help.apple.com/developer-account/#/dev.. 2021. 10. 13.
C#] Tuple types 간단한 데이터 구조로 여러 데이터 요소를 그룹화하는 간결한 구문 제공 (double, int) t1 = (4.5, 3); Console.WriteLine($"Tuple with elements {t1.Item1} and {t1.Item2}."); // Output: // Tuple with elements 4.5 and 3. (double Sum, int Count) t2 = (4.5, 3); Console.WriteLine($"Sum of {t2.Count} elements is {t2.Sum}."); // Output: // Sum of 3 elements is 4.5. 임의의 많은 요소를 포함하는 튜플 정의 가능 var t = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, .. 2021. 10. 13.
Blazor Sever VS Blazor WebAssembly 장단점 출처: https://code-maze.com/blazor-webassembly-introduction/#difference 우리는 웹 어플리케이션을 개발할 때, 보통 java, .NET, Node.js 등의 framework 또는 language를 사용하여 server-side project를 만든다. 그리고 Angular, React, Vue.js와 같은 javascript framework를 사용하여 브라우저에 데이터를 보여준다. 하지만, 우리는 server-side application에서 사용한 언어를 client-side에는 사용할 수가 없다. server-side와 client-side는 기본적으로 단절되어있다. 우리가 만약, server language를 client에도 재사용한다면 좋지 .. 2021. 10. 2.
Blazor WASM] Google Chart 그리기 소스링크 : https://github.com/BigExecution/BlazorWASM.git Blazor WebAssembly 앱 생성 시, 자동으로 세팅되는 Weather forecast 페이지 하단에 날짜별 온도를 나타내는 구글차트를 추가해보자. 1. index.html 파일에 google chart 스크립트 태그 추가 2. graph.js 파일 추가 function setGrowthGraph(data) { var dt = new google.visualization.DataTable(); dt.addColumn('string', 'Date'); dt.addColumn('number', 'Temp. (C)'); dt.addColumn('number', 'Temp. (F)'); dt.addRows(.. 2021. 9. 30.
HTML] video태그, 웹사이트에 mp4 파일 보여주기 2021. 9. 28.
C#] EmailTemplate 활용하여 메일 발송하기 1. EmailTemplate.cshtml 2. Model 추가 Model.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace TEST.Models { public class ViewEmail { public string prodName { get; set; } public string name { get; set; } public string telNum { get; set; } public string mail { get; set; } public string address { get; set; } public string title { get; set; } public stri.. 2021. 9. 28.
728x90
반응형