일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
- Today
- In Total
목록💻Bootcamp Self-Study Revision✨ (99)
A Joyful AI Research Journey🌳😊
The code const sum = numbers.reduce((a, b) => a + b); calculates the sum of the elements in the array numbers. The reduce() method takes a callback function as an argument, and this function is called repeatedly, with the accumulated sum as the first argument and the current element of the array as the second argument. In this case, the callback function simply adds the two arguments together. T..
Differences between Spring/JSP and React/TypeScript for CRUD Operations: Language and Type-Checking: With Spring/JSP, you would typically use Java for the server-side logic. Java is a statically typed language which means you have to define the types of your variables when you declare them. However, with React, you are typically using JavaScript (or TypeScript in your case). JavaScript is a dyna..
Polyfills allow web developers to use an API regardless of whether or not it is supported by a browser, and usually with minimal overhead. Fetch API Fetch is a built-in browser API for making HTTP requests. It was introduced to replace XMLHttpRequests. Pros: It is promise-based, which means it's easier to use and read than older APIs like XMLHttpRequest. It is built into most modern browsers, wh..
pull the latest changes from the remote repository (GitLab) into your local repository: git pull origin master After pulling the changes, you can verify that your local repository is up-to-date by running: git status If you want to see what origin actually refers to, you can use the following command: git remote -v pwd(print making directory): 현재 디렉터리 확인 파일 삭제: rm [파일명] https://wotres.tistory.co..
정수론 (1) - 최대공약수, 최소공배수, 유클리드 호제법 안녕하세요, Dimen입니다! 오늘부터 정수론에 대한 글을 써보고자 합니다. 정수론은 정규 수학 교육과정에서 잘 다루지 않기 때문에 많은 분들에게 생소한 분야입니다. 그런 만큼 많은 분들에게 dimenchoi.tistory.com Greatest Common Divisor (최대 공약수) :the greatest common divisor of two or more integers is the largest positive integer that divides each of the given integers without leaving a remainder. function GCD(x, y) { return !x ? y : GCD(y, x % y..
padStart: the padding is added at the start of the string and padEnd: the padding added at then end. index === 0 is a condition used to determine if the current element being processed in the map() function is the first element of the row. 코드) 알고리즘 문제는 하단 output처럼 문자는 왼쪽, 숫자는 오른쪽으로 테이블에 정렬하기였다. const data = [ ["AAA", 1.23456, 123456], ["BBBBB", 12.3, 123], ["CCCC", 123.4, 1234] ]; function newTa..
https://barcode.tec-it.com/en/MobileQRCode?data= Free Online Barcode Generator: Create Barcodes for Free! This free online barcode generator creates all 1D and 2D barcodes. With TEC-IT Barcode Software you generate barcodes as part of applications or web-sites. Available as Barcode ActiveX, Barcode .NET Web Forms Control, Barcode DLL. barcode.tec-it.com 위 링크에서 QR코드를 생성한다. 입고 등록 itemReceived.jsp ..
내가 만든 포트폴리오 웹사이트의 기술 목록인데 노트북 같은 큰 화면에서는 정상적으로 보인다. 하지만 모바일로 봤을 때는 글자들이 하단처럼 나왔는데 내가 원했던 건 왼쪽 칼럼의 클자가 오른쪽 칼럼의 글자 위로 올라가게 만드는 것이었다. 해결책은 Bootstrap의 col-sm-12를 모든 칼럼에 사용하면 된다. 이유는 화면의 스크린 크기가 모바일처럼 작을 때 (col-sm) 칼럼 너비 전체를 차지하게 만드므로 (12) 모든 칼럼들이 세로로 일렬로 정렬된다. This class specifies that the column should take up the full width of the grid system on small screens (sm breakpoint). It means that the col..
출처: https://coderlife.tistory.com/757 SQLP / SQLD 역할 직무1. 데이터모델의 이해 및 분석 개발자는 데이터모델과 SQL 구문의 연관성을 위해 엔터티, 속성, 관계, 식별자, 정규화 등 데이터 모델의 기본 지식을 바탕으로 데이터 모델을 이해하고 분석하는 작업을 수행 직무2. SQL 이해 및 활용 SQL 문법, 옵티마이저, 인덱스의 기초 원리의 이해 이를 바탕으로 데이터 정의어(DDL)를 통해 테이블의 구조를 생성/변경/삭제/재명명하고, 데이터 조작어(DML)를 통해 데이터를 입력/조회/수정/삭제 수행 집합과 집합의 관계를 다양한 JOIN 방법을 사용하여 표현하고, 주종 관계의 경우 서브쿼리를 사용하는 작업 등을 수행 직무3. SQL 튜닝 고성능 SQL, 아키텍처 기반..
value가 2개인 (Y/N) 값을 쉽게 바꿔준다. UPDATE medical_supplies SET visible = CASE WHEN visible = 'Y' THEN 'N' WHEN visible = 'N' THEN 'Y' END WHERE name = 'Tridol';
230612 Mon p.30 ~ Do it! 스위프트로 아이폰 앱 만들기: 입문 | 송호정 - 교보문고 Do it! 스위프트로 아이폰 앱 만들기: 입문 | 아이폰 분야 1위 도서, 개정 5판 출간! 최신 버전인 스위프트 5.3, Xcode 12.1 반영! 아이폰 분야 1위 도서, 《Do it! 스위프트로 아이폰 앱 만들기 입문》 개 product.kyobobook.co.kr 기억할 것을 정리했다. 1. AppDelegate.swift: 앱의 실행 주기(Life Cycle)를 관리하는 내용의 스위프트 소스 코드가 들어 있는 클래스 파일 2. SceneDelegate.swift: 사용자 인터페이스(User Interface:Ul)의 실행 주기(Life Cyle)를 관리하는 내용의 소스 코드가 들어 있는 클래..
처음에 터미널에서 깃허브 아이디, 비밀번호 설정할 때 깃허브에서 발급받은 클래식 토큰(Tokens(Classic))을 비밀번호로 사용한다. 1) 폴더 경로를 지정해 주고 예시) cd /Users/yeongjinyu/Documents/github 2) git clone을 한다. 예시) git clone https://github.com/yjyuwisely/Traveling-from-Ulju-gun.git git clone 깃주소 3) 폴더 경로로 들어간다. 예시) cd /Users/yeongjinyu/Documents/github/Traveling-from-Ulju-gun 터미널에서 깃허브 커밋 History에 있는 잘못 입력된 4) 특정 Author의 이름을 자신이 원하는 깃허브 id로 수정하는 방법은 ..