본문 바로가기

카테고리 없음

2020-05-12 22시 개발자 글 모음 | "[Django]Blog Creatio" 외 13개 이야기

10. 자리올림수 예측 가산기 (Carry look Ahead Full Adder) by 백지오

  • 앞 비트의 전가산기 연산이 끝나 Carry가 얻어지기 전에는 다음 비트의 계산을 수행할 수 없어
  • 입력 A/B에 대하여 자리올림수 예측 가산기는 다음의 연산을 수행해 G와 P를 구한다
  • 결과적으로 모든 carry가 위와 같이 기존 연산에 구애받지 않고 처리되기 때문에 전가산기에 비해 빠르게 연산을 수행할 수 있다


Vue.js 간단정리 #4 리스트 렌더링 by 서진규 about Vue

  • < body > < div id = " app " > < ol > < li v-for = " name in names " > {{name}} < script src = " https://cdn
  • < li v-for = " name in names " :key = " name " > {{name}} < li >
  • index) in names " :key = " index + name " > {{name}} < li >


Power BI 에서 mysql 데이터베이스 연결 하기 by Ricky Han about MySQL,SQL

  • 프로그램 시작하고 나서 아래와 같이 <데이터 가져오기> 버튼 누르고
  • Power BI를 재시작하셨으면 다시 처음처럼 <데이터 가져오기> 버튼 누르고
  • 그리고 DB 계정과 암호를 넣어주시고 <연결> 버튼을 클릭하면 연결이 됩니다!!!


[BaekJoon] 1764번 : 듣보잡 (Python) by 장동현 about 백준,Python

  • split()) people_no_hear = [] people_no_look = [] for i in range(N): name = str(input()) people_no_hear
  • append(name) for i in range(M): name = str(input()) people_no_look
  • append(name) no_hear_look = (set(people_no_hear) & set(people_no_look)) no_hear_look = sorted(no_hear_look) print(len(no_hear_look)) for name in no_hear_look: print(name)


Copy a changed or new files using GitLab-CI by 안영선 about Git

  • \ set dst_folder = o :\target for /f "tokens=*" %%i in ( File -list
  • stages : - deploy after_script : - ' net use /delete o:' deploy-to-prod : stage : deploy environment : name : production server only : - master script : - echo 'deploy to production server' - ' net use o: \\server_ip\folder password /user:id' - ' git diff --name-only HEAD~2 > copy-target
  • Copy a list (txt) of files: https://stackoverflow


스프링 프레임워크 도서 추천해주세요! by 김주엽 about Spring Boot,Spring


    상품정보1 by 김헌기

    • 이메일 주소로 전송
    • 귀하의 이메일 주소
    • 귀하의 블로그에서 이메일로 글을 공유할 수 없습니다


    상품정보2 by 김헌기

    • 이메일 주소로 전송
    • 귀하의 이메일 주소
    • 귀하의 블로그에서 이메일로 글을 공유할 수 없습니다


    처리해야 할 공백 문자가 있다면, 꼭 고려해야 할 ‘ZERO WIDTH SPACE’ by 김형준 about SPA

    • for ( let i = 0 ; i < address
    • if ( charCode === 8203 /* Unicode Character 'ZERO WIDTH SPACE' */ ||
    • charCode === 160 /* nbsp(non-breaking space) */ ||


    상품정보3 by 김헌기

    • 이메일 주소로 전송
    • 귀하의 이메일 주소
    • 귀하의 블로그에서 이메일로 글을 공유할 수 없습니다


    [Java] Immutable Object(불변객체) by 사명기

    • age = age ; } public Age getAge ( ) { return age ; } } class Age { private int value ; public Age ( final int value ) { this
    • age = age ; } } class Age { private final int value ; public Age ( final int value ) { this
    • animals = new ArrayList < > ( animals ) ; } public List < Animal > getAnimals ( ) { return Collections


    [RFC7231] HTTP/1.1 : Semantics and Content 번역 by 이병록

    • A user agent that sends Content-Location in a request message is stating that its value refers to where the user agent originally obtained the content of the enclosed representation (prior to any modifications made by that user agent)
    • An origin server that receives a Content-Location field in a request message MUST treat the information as transitory request context rather than as metadata to be saved verbatim as part of the representation
    • then the new state of that resource is expected to be consistent with the one representation supplied in that PUT; the Content-Location cannot be used as a form of reverse content selection identifier to update only one of the negotiated representations


    VIM 꼼수의 발견 - 7th by 강명훈


      [Django]Blog Creation Tutorial(Translation/Correction) 1 by 안기웅 about Django,Python

      • 5MB 364kB/s Collecting pytz (from django) Downloading https://files
      • models import Post def getRecentPosts(request): posts = Post
      • models import Post def getRecentPosts(request): posts = Post