전체 글(44)
-
Github 프로젝트(repository) 채팅방
자신이 만든 프로젝트에 대해 이야기할 수 있는 채팅방을 원하시나요? 그렇다면 당신에게 추천해줄 사이트가 있습니다. Gitter : https://gitter.im/ Gitter Where developers come to talk. gitter.im 마크업 언어까지 지원한답니다. 효과적으로 개발자들과 소통할 수 있지 않을까요?
2020.08.16 -
Github build passing, coverity passed
깃허브 프로젝트 문서에서 위와 같은 사진을 본 적이 있을 것이다. 오늘은 저것을 어떤 사이트에서 추가하는 것인지 알려주려고 한다. 1. Build (빌드) 테스트 사이트 https://travis-ci.org/ Travis CI - Test and Deploy Your Code with Confidence travis-ci.org 대신 빌드를 해주며 오류가 생기지 않을 시 passing을 했음을 알려주는 사이트이다. 2. 정적 분석 사이트 https://scan.coverity.com/ Coverity Scan - Static Analysis “Ah, that's cool. Pretty neat that an automated tool can catch mutex lock problems in condi..
2020.08.16 -
Git Fetch Pull 차이점, Rebase Merge 차이점
Remote 저장소로부터 최신 커밋 정보를 가져오는 것은 공통점이나, Fetch는 임시폴더(.git)에 저장하고 Pull은 바로 현재 Branch에 Merge 작업을 같이 한다. 두 Branch의 커밋 내용을 합치는 것은 공통점이나, Rebase는 합치기 전에 되감기(Rewinding)를 하고 Merge는 되감기를 안하고 합친다. Rebase를 하게 되면 원래 Master 브랜치에서 계속 작업하고 있었던 것처럼 보이게 된다. 그러나 Merge는 브랜치들이 합쳐지는 과정 모두 커밋으로 보여준다.
2020.08.08 -
오픈소스 목록 볼 수 있는 사이트
Apache (http://git.apache.org) ASF Writable Git Services! ASF Writable Git Services This service, gitbox.apache.org, provides Apache projects with a two-master setup of git repositories, allowing committers to utilize two different avenues of committing code to the Apache Software Foundation; through GitHub or th gitbox.apache.org Linux Kernel (http://git.kernel.org) Kernel.org git repositories ..
2020.08.08 -
계수, 멱지수, 차수, 항, 다항식 영어로 무엇?
계수 -> coefficient 멱지수 (거듭제곱할때의) -> exponent 차수 -> degree 항 -> term 다항식 -> polynomial
2020.04.18 -
[acmicpc] 10814 나이순 정렬 정답 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
2020.04.13