본문 바로가기

카테고리 없음

2020-09-17 08시 개발자 글 모음 | "투자유치개론" 외 10개 이야기

[삼성 SW 역량 테스트] 어른 상어 by 구상철

  • priority[cd][d]; int ny = cy + dy[nd]; int nx = cx + dx[nd]; if (ny < 0 || ny >= N || nx < 0 || nx >= N || board[ny][nx][2] != 0) { continue; } is_move = true; new_board[cy][cx][0] = 0; if (new_board[ny][nx][0] == 0) { new_board[ny][nx][0] = i + 1; new_board[ny][nx][1] = i + 1; new_board[ny][nx][2] = K; shark[i]
  • priority[cd][d]; int ny = cy + dy[nd]; int nx = cx + dx[nd]; if (ny < 0 || ny >= N || nx < 0 || nx >= N) { continue; } if (board[ny][nx][2] != 0 && board[ny][nx][1] != i + 1) { continue; } new_board[cy][cx][0] = 0; if (new_board[ny][nx][0] == 0) { new_board[ny][nx][0] = i + 1; new_board[ny][nx][1] = i + 1; new_board[ny][nx][2] = K; shark[i]
  • y = -1; } break; } } } if (kill_shark == M - 1) { break; } for (int y = 0; y < N; ++y) { for (int x = 0; x < N; ++x) { board[y][x][0] = new_board[y][x][0]; board[y][x][1] = new_board[y][x][1]; board[y][x][2] = new_board[y][x][2]; } } } if (time <= 1000) { ret = time; } } int main() { scanf("%d %d %d"


Spring MVC의 핵심 객체 DispatcherServlet에 대한 모든 것(DispatcherServlet이 하는 역할 정리, 동작 프로세스) by 정동교 about Spring

  • WebApplicationContext 를 컨트롤러 같은 프로세스의 다른 요소가 사용할 수 있는 속성으로 요청에 바인딩합니다
  • 요청을 매핑하는 중에 예외가 발생하거나 실제 컨트롤러로부터 예외가 발생하면 DispatcherServlet 은 HandlerExceptionResolver 빈의 체인에 예외를 처리를 위임한다
  • Spring MVC는 특정 뷰 기술에 의존하지 않고 브라우저에서 모델을 렌더링할 수 있는 ViewResolver 와 View 인터페이스를 정의합니다


12 Binary Search Tree by 이찬행 about HTML


    13 Red-black Trees by 이찬행 about HTML


      백준 - [Gold 4] 1922번 네트워크 연결 by 최승호 about 백준

      • "r") def find(node): # path compression 기법 if parent[node] != node: parent[node] = find(parent[node]) return parent[node] def union(node_v
      • node_u): root1 = find(node_v) root2 = find(node_u) # union-by-rank 기법 if rank[root1] > rank[root2]: parent[root2] = root1 else: parent[root1] = root2 if rank[root1] == rank[root2]: rank[root2] += 1 def make_set(node): parent[node] = node rank[node] = 0 def kruskal(vertices
      • append(weight) # 합쳐줄 때 추가 return sum(mst) # N 컴퓨터의 개수 # M 선의 수 N = int(stdin


      UXer를 위한 101가지 원칙 - 리뷰 :: 마이구미 by 이정현

      • 실수를 만회할 수 있다는 사실에 사용자는 부담없이 제품을 더 많이 써볼 것이다
      • 메일이나 채팅은 보냈던 것을 삭제할 수 있는 기회를 주고 있다
      • 실제로 굉장히 많이 볼 수 있는 부분이지만 항상 어떻게 개발자들에게 설득해야할 지 몰랐다


      LG디스플레이 주가 LG 롤러블폰 & 롤러블 TV로부터 by 전재훈


        Go gRPC 튜토리얼 #1 - 세팅부터 Unary RPC Call 사용까지 by 노아론

        • syntax = "proto3"; package api; option go_package = "api/proto"; service Api { rpc GetHello(Request) returns (Reply) {} } message Request { string name = 1; } message Reply { string message = 1; }
        • package main import ( "context" "log" pb "my_project/api/proto" ) // APIServer is representation of protobuf ApiServer type APIServer struct { } // GetHello implements api
        • package main import ( "log" "net" pb "my_project/api/proto" handler "my_project/server/handler" //추가 "google


        오픈소스 컨트리뷰터가 될뻔했던 썰.SSUL by 이창섭 about Mybatis

        • 어차피 이런거 찾은김에 오픈소스에 문서화에 기여하는것도 가장 쉽게 contributor가 되는 길이라고 생각했던 나는 빠르게 mybatis에서 PR을 날릴 준비를 한다
        • 거기 오류기 때문에 그 라이브러리 버그를 해결하면 링크 오류가 해결 되는 것인 듯하다
        • 그렇게 mybatis에 라이브러리 버그로 박제가 된 상태로 이번 오픈소스 기여는 마무리 되었다


        DEP0700 : Registration of the app failed by 김도균


          투자유치개론 by 배기홍

          • 우리같이 투자하는 사람들이 가장 많이 받는 질문이 “어떻게 하면 투자를 받을 수 있나요?”
          • 그래도 조금이나마 이 질문에 대한 답이 될 수 있게 내 생각을 조금 정리한 동영상 두 개를 공유한다
          • maybe some other time…그래도 내용은 이상한 스타트업 학원 같은 곳에서 돈 주고 듣는 것보다 훨씬 값질 것이다