일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- priority queue
- Study
- data scientist
- Restroom
- Preparing for the Google Cloud Professional Data Engineer Exam
- Data Engineer
- binary search tree
- BST
- 빅데이터 커리어 가이드북
- Linked List
- data
- 빅데이터 지식
- Computer Organization
- HEAPS
- Algorithms
- Newyork
- Data Structure
- Heap
- hash
- exam
- Data Analyst
- 데이터 엔지니어
- 뉴욕 화장실
- algorithm
- dataStructure
- 빅데이터
- 데이터 분석가
- 화장실 지도
- Computer Science
- Binary Tree
- Today
- Total
목록Development Log/Web Development (8)
Jaegool_'s log
AJAX stands for Asynchronous JavaScript and XML. It is a set of web development techniques used to create interactive and dynamic web applications. AJAX allows web pages to update content asynchronously, meaning data can be retrieved from a server and loaded into a web page without requiring a full page refresh. Here's how AJAX typically works: Asynchronous: AJAX allows data to be fetched from a..

https://teamsparta.notion.site/5-18b62b60cc7d4343a5917dc8b7121977 [스파르타코딩클럽] 웹개발 종합반 - 5주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site > - server from flask import Flask, render_template, request, jsonify app = Flask(__name__) from pymongo import MongoClient import certifi ca = certifi.where() client = MongoClient('mongodb+srv://test:sparta@cluster0.l0equ.mongodb.net/Cluster0?retryWrites..

https://teamsparta.notion.site/4-0056714b522240a68f7c778237525282 [스파르타코딩클럽] 웹개발 종합반 - 4주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site 1. Make API, using Flask framework. 2. Make API and connect to clients. from flask import Flask app = Flask(__name__) @app.route('/') def home(): return 'This is Home!' if __name__ == '__main__': app.run('0.0.0.0',port=5000,debug=True) @app.route('/test',..

https://teamsparta.notion.site/3-baced734e9a44ffc9fd96e2ab6ad34f7 [스파르타코딩클럽] 웹개발 종합반 - 3주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site import requests from bs4 import BeautifulSoup headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'} data = requests.get('https://www.genie.co.kr/chart/top200?ditc=M&r..

https://www.notion.so/2-f9706fef663a4b5ca7c7013a57c1785d#5b49e4f975794b91842170362701b9e9 [스파르타코딩클럽] 웹개발 종합반 - 2주차 매 주차 강의노트 시작에 PDF파일을 올려두었어요! www.notion.so $.ajax({ type: "GET", url: "여기에URL을입력", data: {}, success: function(response){ console.log(response) } }) * CSS는 class로 명명해주고 jQuery는 id로 명명해준다. * CSS는 style에서 꾸며주고 jQuery는 script에서 설정해준다. * jQuery에서 let temp_html = `${txt}` 위와 같은 문장을 쓸 때 B..

https://teamsparta.notion.site/1-da6d8595945d4b868e5fcfa933c56011 [스파르타코딩클럽] 웹개발 종합반 - 1주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site 나는 구역을 나누죠 나는 문단이에요 bullet point!1 bullet point!2 h1은 제목을 나타내는 태그입니다. 페이지마다 하나씩 꼭 써주는 게 좋아요. 그래야 구글 검색이 잘 되거든요. h2는 소제목입니다. h3~h6도 각자의 역할이 있죠. 비중은 작지만.. span 태그입니다: 특정 글자를 꾸밀 때 써요 a 태그입니다: 하이퍼링크 img 태그입니다: input 태그입니다: button 태그입니다: 버튼입니다 textarea 태그입니다: ..