일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql
- hacking
- Javascript
- hackthissite
- 파이썬
- 백엔드
- 경제
- Web
- hackerschool
- BOF
- 러닝스칼라
- c++
- Python
- 러닝 스칼라
- Linux
- 딥러닝
- 인공지능
- c
- backend
- flask
- ChatGPT
- webhacking
- Scala
- 챗GPT
- Shellcode
- 웹해킹
- BOF 원정대
- 리눅스
- deep learning
- php
- Today
- 2
- Total
- 134,834
목록개발 및 관련 자료 (77)
jam 블로그
SPA(Single Page Application)는 하나의 페이지로 구성된 웹 애플리케이션으로, 다른 페이지로 이동하지 않고도 동적으로 콘텐츠를 변경하고 제공할 수 있습니다. 이러한 SPA 웹 애플리케이션을 개발하려면 어떤 기술과 지식이 필요할까요? SPA를 개발하려면 JavaScript, HTML, CSS에 대한 지식이 필요합니다. 특히 JavaScript Framework/Library(ex. React, Vue.js, Angular)를 사용하여 웹 애플리케이션을 개발하는 방법에 대한 경험이 필요합니다. 또한 REST API와의 통신, 라우팅, 상태관리 등에 대한 이해도 중요합니다. 프론트엔드 개발자가 SPA를 구현하려면 이러한 지식과 기술들을 잘 이해하고 활용할 수 있어야 합니다. HTML, CS..
React 18은 React 프레임워크의 새로운 버전입니다. 이번 버전에서는 기존의 React와 비교하여 많은 기능 개선 및 업그레이드가 이루어졌습니다. 예를 들어, 성능을 개선하고 안정성을 확보하기 위해 다양한 업그레이드가 이루어졌습니다. 주요 기능 서버 사이드 렌더링 개선: 이번 버전에서는 기존에 있었던 서버 사이드 렌더링의 성능 이슈가 해결되었습니다. 이로 인해 더욱 빠르고 안정적인 서버 사이드 렌더링이 가능해졌습니다. 이 기능의 개선으로 인해, 사용자들은 더욱 빠른 웹 페이지 로딩 시간을 경험할 수 있게 되었습니다. 새로운 이벤트 모델: 기존의 이벤트 모델에서 발생하던 문제점들을 개선하였습니다. 예를 들어, 이제 이벤트 처리가 더욱 직관적이고 유연해졌습니다. 이로 인해, 사용자 경험과 개발자 경험..

문제 Given a string s, find the length of the longest substring without repeating characters. Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Input: s = "bbbbb" Output: 1 Explanation: The answer is "b", with the length of 1. Example 3: Input: s = "pwwkew" Output: 3 Explanation: The answer is "wke", with the length of 3. Notice that the ..

문제 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself. Example 1: Input: l1 = [2,4,3], l2 = [5,6,4] Output: [7,0,8] Explanation: 34..

문제 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. Example 1: Input: nums = [2,7,11,15], target = 9 Output: [0,1] Explanation: Because nums[0] + nums[1] == 9, we return [0, 1]...