본문 바로가기

카테고리 없음

2021-01-19 08시 개발자 글 모음 | "PostgreSQL 인덱스와 멀티 컬" 외 7개 이야기

코드스쿼드 11일차 by 임지선 about Java


    운영체제(Operating System,OS) - part3 by 김종하


      포물선 운동 by 이동준

      • 이 운동을 이해하기 위해서는 수평 방향(x축 방향)의 운동과 수직 방향(y축 방향)의 두 운동으로 나누어서 생각해야 합니다
      • 던져진 초기 속력 중 수평 방향의 속력이 계속 유지됩니다
      • 위로 던져 올려진 물체는 위로 올라가는 속력이 점점 줄어들다가 나중에는 다시 지구 중심을 향해 속력이 증가합니다


      Python venv만들기, package install by 김경록 about Python

      • python3 -m venv venv
      • pip install -r requirments
      • rm -r venv


      Dynamic Connectivity: Union Find by 임택

      • public class UF { public int [ ] id ; public int count ; public UF ( int N ) { this
      • id [ i ] = i ; } } void validate ( int p ) { if ( p < 0 || p > this
      • find ( q ) ; if ( pid == qid ) return ; for ( int i = 0 ; i < this


      [Arm프로세서] Armv8: 익셉션 핸들러(Exception Handler) by 김동현

      • This blog contains Linux Kernel Analysis(4
      • x) and kernel crash debugging case-study for seminar and lecture
      • by AustinKim


      [공유] YES24 '2020년 베스트 IT 전문서' 로 선정: 디버깅을 통해 배우는 리눅스 커널의 구조와 원리 by 김동현 about Linux

      • This blog contains Linux Kernel Analysis(4
      • x) and kernel crash debugging case-study for seminar and lecture
      • by AustinKim


      PostgreSQL 인덱스와 멀티 컬럼 인덱스에 대해서 by 노아론 about SQL

      • 075 rows=21 loops=1) Recheck Cond: ((last_name)::text = 'Ingram'::text) Heap Blocks: exact=17 -> Bitmap Index Scan on index_people_names (cost=0
      • db=# explain analyse select * from people where last_name = 'Ingram' and first_name = 'Alice'; QUERY PLAN ---------------------------------------------------------------------------------------------------------------------------- Index Scan using index_people_names on people (cost=0
      • 075 rows=21 loops=1) Recheck Cond: ((last_name)::text = 'Ingram'::text) Heap Blocks: exact=17 -> Bitmap Index Scan on index_people_names (cost=0