본문 바로가기

카테고리 없음

2020-06-07 08시 개발자 글 모음 | "[CSS] 모바일(반응형) 에서 좌," 외 3개 이야기

Elasticsearch 7.7 feature와 heap 메모리 사용량의 두드러진 감소량 by 정철 about Node

  • Fitting as much data per Elasticsearch node as possible is often important to reduce costs
  • Learn more about the improvements coming in Elasticsearch 7
  • 7 to dramatically reduce the amount of heap memory needed per GB of data


자바 instanceof 연산자 : 객체의 타입이 맞는지 확인한다. by 조경완 about Java

  • o는 String 인스턴스를 가리키고 있는 Object 참조 변수였습니다
  • 980번째 줄의 anObject instanceof String이 그러한 역할을 수행합니다
  • anObject가 실제로 String 인스턴스를 가리키고 있지 않으면


[leetCode] 204. Count Primes (Python) by 장동현 about Python

  • class Solution: def getPrimaryNum_Eratos(N): nums = [True] * (N + 1) for i in range(2
  • len(nums) // 2 + 1): if nums[i] == True: for j in range(i+i
  • i): nums[j] = False return [i for i in range(2


[CSS] 모바일(반응형) 에서 좌,우가 움직이는 현상, 수평 스크롤 없애기 by 장민 about CSS