본문 바로가기

카테고리 없음

2020-06-04 22시 개발자 글 모음 | "알고리즘 | 더 맵게" 외 8개 이야기

git revert by 박세용 about Git

  • git log 를 확인하면 새로운 커밋이 생긴 것을 확인할 수 있습니다
  • git log -p 로 확인해봐도 R4 때 추가되었던 텍스트가 삭제된 것을 볼 수 있습니다
  • 만약 Message 1으로 돌아가고 싶을때는 바로 git revert (Message 2 commit 값) 을 하면 안되고 역순으로 차근차근 해줘야 충돌이 일어나지 않습니다


새 제품 엔더 3(Ender3) 팔아요~! - 판매 완료 by 이동규


    Python Heapq by 이찬호 about Python

    • def print_heap (self) :
    • def get_left_child (self
    • def get_max_child_index (self


    django naver 소셜로그인 by 황은지 about Django


      389. Serverless 점검법 by 서태호 about Cloud,AWS

      • <2> api gateway에서 cloudwatch logs
      • service > api gateway > 해당 API 클릭 > stages > dev > logs/tracing >enable cloudwatch logs > log level : info
      • serviec > xray > 해당 lambda > 추적 보기 > 로그 그룹 보기> 이벤트 필터에


      웹 아트워크 #1 나만의 파도 만들어보기 by 서진규 about Javascript

      • 0 ) ; } html { width : 100% ; height : 100% ; } body { width : 100% ; height : 100% ; overflow : hidden ; background-color : #ffffff ; } canvas { width : 100% ; height : 100% ; } < title > Wave < body > Watch out
      • init ( ) ; } init ( ) { for ( let i = 0 ; i < this
      • centerY ) ; } } draw ( ctx ) { for ( let i = 0 ; i < this


      2020-06-04 by 박동건

      • 헤드태그에들어가는 meta title script style 이 네가지를 관리해준다 => 검색엔진이 알아먹을 수 있게 !
      • 사이트 들어가보면 og:title
      • import Helmet from "react-helmet" ;


      django - iamport 결제 api 사용하기 by 황은지 about Django,Python

      • json ( ) if access_res [ 'code' ] is 0 : return access_res [ 'response' ] [ 'access_token' ] else : return None def paymentes_prepare ( order_id
      • json ( ) if res [ 'code' ] is not 0 : raise ValueError ( 'API 통신오류' ) else : raise ValueError ( '토큰오류' ) def find_transaction ( order_id
      • json ( ) if res [ 'code' ] is 0 : context = { 'imp_id' : req [ 'response' ] [ 'imp_uid' ]


      알고리즘 | 더 맵게 by 이찬호 about Algorithm,Python

      • elif len(scoville) == 1 :
      • i = heappop(scoville)
      • j = heappop(scoville)