Search result

기술 블로그 개발 회고

반응형     기술 블로그가 필요하게 된 이유 블로그라는 매체를 통해 생각을 쉽게 전파할 수 있다. 그 장점으로,...

프로젝트 회고

Leetcode - Maximum Length of a Concatenated String with Unique Characters

You are given an array of strings arr. A string s is formed by the concatenation of a subsequence of arr that has unique characters.

algorithm Leetcode

Leetcode - Average Salary Excluding the Minimum and Maximum Salary

You are given an array of unique integers salary where salary[i] is the salary of the ithemployee.

algorithm Leetcode

Leetcode - Count Odd Numbers in an Interval Range

Given two non-negative integers low and high. Return the count of odd numbers between low and high (inclusive).

algorithm Leetcode

AWS S3 에서 파일 로드시 CORS 에러 해결 방법

- 아마존 S3에서 CSS 파일 로드시 내부 url의 경로 파일(font등) 로드시 CORS(Cross-Origin Resource Sharing) 에러 발생하는 상황 해결법 - 403 Forbidden 에러 발생 해결 포함 //--------------------------------...

Web

Leetcode - Add Two Numbers

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...

algorithm Leetcode

Leetcode - Swap Nodes In Pairs

Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list’s nodes (i.e., only nodes themselves may be changed.)

algorithm Leetcode

Xdebug를 이용하여 PHP에서 디버깅을 해보자.

개발자는 일하는 시간의 대부분을 디버깅을 하는데 사용합니다. 리팩토링 책에서 테스트 코드의 가치를 말할 때 디버깅을 하는데 시간을 줄여준다고 합니다. 하지만 이미 작성되어 있는 여러 코드들 사이에서 테스트...

게시판

Xdebug를 이용하여 PHP에서 디버깅을 해보자.

개발자는 일하는 시간의 대부분을 디버깅을 하는데 사용합니다. 리팩토링 책에서 테스트 코드의 가치를 말할 때 디버깅을 하는데 시간을 줄여준다고 합니다. 하지만 이미 작성되어 있는 여러 코드들 사이에서 테스트...

게시판

[실전 PHP] SQL 인젝션(Injection) 절대 안 당하는 방법

안녕하세요. 모던 PHP 유저그룹 운영진 박민권입니다. SQL 인젝션이란? 아래는 로그인을 위해 사용자의 아이디(id)와 비밀번호(pw)를 받아서 사용자(user) 테이블에 일치하는 레코드가 있는지 확인하는 SQL 문자열을...

게시판