분류 전체보기(24)
-
SAPUI5 Walkthrough Tutorial (JavaScript) Step1~2
Step2 진행1. 터미널에 아래 수행 : Framework를 추가한다.ui5 use OpenUI5ui5 add sap.ui.core sap.m themelib_sap_horizon## ui5.yaml 파일에 framework가 추가된다specVersion: "4.0"metadata: name: ui5.walkthroughtype: applicationframework: name: OpenUI5 version: "1.138.0" libraries: - name: sap.m - name: sap.ui.core - name: themelib_sap_horizon 2. index.html / index.js 추가sap.ui.define([], () => { "use strict"; a..
2025.07.09 -
SAPUI5 Walkthrough Tutorial (JavaScript) Step1
https://sapui5.hana.ondemand.com/#/topic/2680aa9b16c14a00b01261d04babbb39 SAPUI5 SDK - Demo Kit sapui5.hana.ondemand.com 위 링크의 Step1을 따라 했습니다. 1. Visual Studio 신규 프로필 생성 : SAPUI5 프로필을 만듬 2. SAPUI5, FIORI 관련 Extension들을 설치함 3. Node JS를 업데이트하기 위해 NVM 설치How to Install and Use NVM on Windows? - GeeksforGeeksHow to Update Node.js and NPM to the Latest Version (2024) - GeeksforGeeks How to Update Node..
2025.01.16 -
SAPUI5 VSCODE 설치 방법
Setting up Visual Studio Code for UI5 development ... - SAP Community Setting up Visual Studio Code for UI5 development - part1Last year around November, the free trial of SAP Web IDE was discontinued and developers were encouraged to start using SAP Business Application Studio ( BAS ). I set up the development environment on SAP BAS and migrated all my existing projects. However,community.sap.c..
2025.01.16 -
Hello World!
Flutter로 Hello World를 출력해보자. 아래 Flutter.dev를 참고했다. https://flutter.dev/docs/development/ui/widgets-intro Introduction to widgets Learn about Flutter's widgets. flutter.dev . runApp : Function, Widget Tree의 Root . Widget 예제는 2개의 Widget으로 구성됨. 1) Center Widget 2) Text Widget . APIs textDirection.ltr : 글자를 왼쪽에서 오른쪽으로 나오도록 설정 - Material Design tooltip : 길게 누르고 있으면 메시지 보임 - StatefulWidgets : state를 가..
2021.08.14 -
Sliding Window
# 기본 문제 [LeetCode] 159. Longest Substring with At Most Two Distinct Characters leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters/ Account Login - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com
2021.04.04 -
제대로 시작하는 기초 통계학 #1
book.naver.com/bookdb/book_detail.nhn?bid=17580073 제대로 시작하는 기초 통계학 통계의 쓰임을 이해하고, 실제로 활용할 수 있어야 한다.통계학은 풀이가 목적인 학문이 아니라,현재 상황에 대한 이해를 목적으로 하는 학문이다.통계학을 공부할 때는 통계 이론이 실생활이 book.naver.com 위의 책을 토대로 기초 통계학 내용을 정리했습니다. 유튜브에서 노경섭 교수님의 강의도 들을 수 있습니다. 용어정리 1-1. 모집단: 전체 집합 1-2. 표본: 모집단의 일부 2-1. 모수: 모집단을 분석하여 얻는 결과 수치 ex) 모평균, 모분산, 모표준편차, 모비율 2-2. 통계량: 표분을 분석하여 얻는 결과 수치 ex) 표본평균(x-), 표본분산(s^2), 표본표준편차(s),..
2021.03.20