분류 전체보기 394

Machine Learning 에서 사용하는 기초 수학

ML: 데이터와 통계로 컴퓨터를 학습시킴. (데이터를 분석해서 결과를 예측함) Python Machine Learning (w3schools.com) Python Machine LearningMachine Learning Machine Learning is making the computer learn from studying data and statistics. Machine Learning is a step into the direction of artificial intelligence (AI). Machine Learning is a program that analyses data and learns to predict the outcwww.w3schools.com데이터의 종류:NumericalC..

jQuery Traversing(요소 이동하기)

Traversing 이란 "move through" 또는 이동하다 즉 HTML element(태그)를 찾는다.  : HTML은 DOM tree 구조여서 다른 element와의 관계 속에서 태그를 찾아야 한다.  1 div : ul의 parent, 하위 모든 태그 ancestor2 ul : 좌측, 우측 li 태그의 parent 및 div 태그 child3 좌측 li : span 태그 parent, ul 태그 child, div 태그 descendant4 span 태그는 li 태그 child, ul 및 div 태그 descendant5 li 태그는 서로 sibling (동일한 부모 보유)6 b 태그는 우측 li 태그 child, ul 및 div 태그 descendant parent()정의: 선택한 eleme..

jQuery Ajax

목차$.get()$.post() $().load() $.get() jQuery AJAX get() and post() Methods (w3schools.com)  1 def: 서버에서 get방식(url)으로 데이터 요청  2 syntax : $.get(URL,callback); //URL: 요청 URL(web address). callback(option): load 후 실행 함수.   3 example:demo_test.asp:response.write("This is some text from an external ASP file.")%>Send an HTTP GET request to a page and get the result back   4 result:   $.post() jQuery AJA..

자료구조 알고리즘 (배열 연산)

알고리즘과 자료구조의 기본 개념을 설명하고, 배열의 특징과 배열에서의 연산(읽기, 검색, 삽입, 삭제)에 대해 설명합니다.큰 그림알고리즘과 자료구조는 컴퓨터 과학에서 중요한 개념입니다. 알고리즘은 문제를 해결하기 위한 단계적 절차이고, 자료구조는 데이터를 효율적으로 관리하기 위한 구조입니다.핵심 개념알고리즘: 연산을 풀어나가는 절차자료구조: 목적에 맞게 데이터를 논리적으로 정리한 구조배열: 인덱스를 통해 접근할 수 있는 데이터의 집합세부 설명배열의 특징인덱스: 배열에서 데이터가 있는 위치를 가리키며, 0부터 시작합니다.연산 속도: 배열에서의 연산은 단계 수로 측정됩니다.배열에서의 연산A. 읽기특정 인덱스에 있는 값 확인: 컴퓨터 메모리 내의 주소를 통해 인덱스 위치의 값을 읽습니다.컴퓨터가 인덱스 3의 ..

Bootstrap 사용법

A 기본 세팅 getbootstrap.com/docs/4.5/getting-started/introduction/ -viewport tag는 모바일 스케일링에 필요 Hello, world! Data attributes -only one set of data attribute can be used per element. Events -custom events can be used for unique action. $('#myModal').on('show.bs.modal', function (e) { if (!data) { return e.preventDefault() // stops modal from being shown } }) Programmatic API -Bootstrap plugins can b..

Flask 기본 게시판 (mongodb 연동, AWS 사용, Web Scraping)

사용툴 : Pycharm, MongoDB, AWS, Gabia, Ubuntu A 세팅 1 기본 프로젝트 세팅 : static - 이미지 파일 , js, css 보관 : templates - html 파일 보관 : app.py - 백앤드 로직 보관 2 필요한 패키지 from flask import Flask, render_template, jsonify, request app = Flask(__name__) # Flask Web Container import requests # Handle requests from bs4 import BeautifulSoup # WebScrap Tool from pymongo import MongoClient # MongoDB DataBaseConnectivity 3 백앤..

매우 기초적인 회원가입시 공백 검증(Validation)

회원가입 .jsp 파일에 추가해야한다. register.jsp 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 function check() { var f = document.Reg_form; if (f.MEMBER_ID.value == "") { alert("아이디를 입력해주십시오"); f.MEMBER_ID.focus(); return false; } if (f.PASSWD.value == "") { alert("비밀번호를 입력해주십시오"); f.PASS..

구글로 CSS 작업하면 반드시 해야할 것

웹 개발을 하면서 CSS 작업을 할 때 페이지 reloading을 아무리해도 변경사항이 반영이 안될 때가 있습니다.바로 웹에서 css 파일을 caching(css 파일을 매번 가져와야 하는 번거로움을 줄이기 위해서 임시로 본인 컴퓨터에 보관함)을 해서인데 이런 caching 기능을 간단하게 해제할 수 있습니다. 바로 아래 이미지 참고!!!!참고: https://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development

728x90
반응형