목록전체 글 (393)
나의 발자취
xd.adobe.com/view/9b20b40f-c41a-43ff-a6cb-1bd55cd8ab1f-ce73/ 개발링크 Flow 1 37 Screens, Last modified on Oct 12, 2020 07:43 GMT xd.adobe.com xd.adobe.com/view/9b20b40f-c41a-43ff-a6cb-1bd55cd8ab1f-ce73/ Flow 1 37 Screens, Last modified on Oct 12, 2020 07:43 GMT xd.adobe.com 디자인링크
#include using namespace std; int main(){ int a; cin >> a; cout a; for (int i = 0; i
1. 메뉴바 3단 -> 1단으로 수정 해결책: HTML에서 해당 기능 삭제, 그리고 CSS에서 LINE 40, 83의 폭을 잘 조절한다( 수정 전: 960px -> 320px) /*LINE 40*/ .wrap_skin.navi_on {padding-left:320px} /*반응형 메뉴바가 나옴에 따라 본문의 왼쪽 여백이 달라지는 곳*/ /*LINE 83*/ .navi_on .wrap_sub{width:320px} /*반응형 메뉴바의 넓이를 변경하는 곳 */ * 메뉴바 열때마다 본문 전체 위치가 움직이는것이 거슬려서 그냥 라인40전체를 주석처리 해버렸다. 결과적으로는..반응형 스킨의 메리트가 조금 사라졌지만 ㅎ 참고한 사이트:lus-ty.com/409 2. 메뉴바에서 새글 아이콘 표시 해결책: CSS에서 ..
Bitcoin Core - The reference implementation bitcoin is developed by an open commu‐ nity of volunteers ; open source project Bitcoin Development Environment first, clone with git(bitcoin is an open-source) *Selecting a Bitcoin Core Release git tag : synchronize the local copy with a specific snapshot of the code repository Git checkput : To synchronize the local code with this version Git status ..
#include using namespace std; int main(){ int x,y; cin >> x >> y; if (y y; // if ( x>0 && y > 45 ) cout
처음에 짠 코드 틀린 원인 : 단순히 몫을 계산하는 함수로만 씀 -> 더블형으로 변환하는 type casting 사용 두번째 짠 코드 틀린 원인 : 소수점이 길게 안나옴 (10^-9나 더 이하로 나와야함 그쯤) -> 또다른 방법이 있겠지 생각 #include using namespace std; int main(){ int A, B; cin >> A >> B; cout
플랫폼 선정과정 Public block chain으로 한다고 제안했는데, gas fee가 발생한다. cost가 들고/안들고의 문제가 아니라 fix된것/안된것이 문제. public block chain은 TCO(Total Cost Ownership)가 자꾸 변한다. public block chain 사용은 risk가 있다. private block chain으로 충분히 가능함. ex)이더리움 테스트넷 블록체인의 trust level 높이는 서비스를 위해서 public chain을 선택한것이라면 private chain, enterprise형 서비스를 사용하면 가능하다. 자사(람다)의 universe라는 프로그램이 있다. 자사측에서 지원을 해주겠다. 서비스가 중심이고 기술은 단지 요소이다(블록체인=기..
Transactions, Blocks, Mining, and the Blockchain Bitcoin system: based on decentralized trust interactions of different participants “trusted” in bitcoin, trust is achieved as an emergent property from the interactions of different participants in the bitcoin system. a high level by tracking a single transaction through the bitcoin system and watch as it becomes “trusted” and accepted by the bit..