본문 바로가기

카테고리 없음

2020-12-03 22시 개발자 글 모음 | "4. Cgroup 제어" 외 7개 이야기

42Seoul - La Piscine D+10-16 by 김정준


    Hello, Vue.js by 모영진 about Vue

    • { name : 'Minkyun Kim' }
    • { name : 'Sangmin Lee' }
    • push({ name : 'New player!' });


    [Algorithms] 벨만-포드 알고리즘 by 이동원 about Algorithm

    • dist = dist; } } 1 2 3 4 5 6 7 8 9 10 static class Point { // 시작점
    • private static boolean bellmanFord() { dist[1] = 0; // v - 1번 수행 for(int i = 1; i < n; i++){ // edge relaxtaion for(int j = 0; j < m; j++){ Point p = point[j]; // dist[there] > 현재 정점 + 거리 이면
    • dist; } } } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 private static boolean bellmanFord ( ) { dist [ 1 ] = 0 ; // v - 1번 수행 for ( int i = 1 ; i < n ; i ++ ) { // edge relaxtaion for ( int j = 0 ; j < m ; j ++ ) { Point p = point [ j ] ; // dist[there] > 현재 정점 + 거리 이면


    엠파이어 오브 신(Empire of Sin) 게임플레이 영상 튜토리얼 - 001 by 김성민


      교류회로이론 - 임피던스는 무엇인가? by 서민상


        Constants vs Util by 오명운

        • 로직이 복잡해 보이긴 하지만 어쨌든 서버 IP라는 상수를 구하는 로직이라 아래와 같이 Constants 클래스에 private static 메서드로 넣었는데
        • 동료가 Constants 에는 메서드가 있으면 Constants 클래스 성격에 안 맞는다며 getServerIp() 를 외부 Util 클래스로 빼자고 한다
        • 그러니까 결국 메서드라는 형식이 문제가 아니라 상수를 구하는 로직이 복잡하다면 외부로 빼야한다는 얘기였던 거다


        Terraform 0.13으로 테라폼 코드 업그레이드하기 by 변정훈

        • Reason: Backend configuration changed for "s3" The "backend" is the interface that Terraform uses to store state
        • 13upgrade This command will update the configuration files in the given directory to use the new provider source features from Terraform v0
        • terraform { required_providers { aws = { source = "hashicorp/aws" } } required_version = ">= 0


        4. Cgroup 제어 by 신정섭