본문 바로가기

카테고리 없음

2020-05-05 08시 개발자 글 모음 | "Portal Network Hacka" 외 12개 이야기

ONNX by 이제민

  • import onnx from onnx import numpy_helper from onnx import helper # Load the ONNX model model = onnx
  • onnx") # Print a human readable representation of the graph print(onnx
  • import numpy as np import onnxruntime as ort img = np


Spring boot에서 Redis Cache 사용하기 by 정준 about Git,Redis,Spring,Cache

  • setConnectionFactory(connectionFactory); return redisTemplate; } @Bean public RedisConnectionFactory redisConnectionFactory() { RedisStandaloneConfiguration redisStandaloneConfiguration = new RedisStandaloneConfiguration(); redisStandaloneConfiguration
  • @Repository public class BoardRepository { // DB 조회 횟수 private static int dbCount = 0; public List createBySize(String size) { // DB 조회를 했다고 가정하여 카운트를 올린다
  • @RestController public class BoardController { @Autowired BoardService service; @GetMapping() public List boards(String size) { List boards = service


5월 달리기, 언제까지라도 달리고 싶다. by 김봉조

  • 아쉽게도 꽃이 질까 걱정하던 애달픈 마음도 사라졌다
  • 4주 째 서울 대공원 마라톤 코스를 달리고 있다
  • 다음주 부터는 아마도 원래 달리던 보금자리로 갈 수 있을거라고 기대한다


Go언어로 웹 서버 개발 시 Swagger 문서 자동 생성하기 by 최용호 about Django,Python

  • python의 경우 장고를 사용하면 자동으로 Swagger 문서를 생성해주는 기능이 있어서 Go 언어는 없을까 하여 찾아보니 swaggo를 발견하게 되었다
  • // @Accept json // @Produce json // @Param apiver path string true "API version" // @Param project_id path string true "Project ID" // @Success 200 {object} base
  • Response // @Router /{apiver}/projects/{project_id}/hosts [post] func (o *Handler) CollectHost(c echo


(Java) 파일 FTP 프로토콜 전송 기능 구현방법 (FTP Client 구현) by 김진성 about Java

  • final String targetDir) throws Exception { FTPClient client = new FTPClient(); try (InputStream input = new FileInputStream(file)) { String remoteFilePath = "/" + targetDir + "/" + file
  • remoteFilePath)) { // throw new FileStoreFailedException("File Target store failed"); //} } catch (Exception e) { e
  • disconnect(); } else { throw new Exception("Login Failed"); } } catch (Exception e) { client


ICYMI 웹 탐험 – 2020년 05월 04일 by 최재훈


    뒤늦은 2020년 계획 by 송재윤

    • 내가 가장 먼저 해야 할 일은 다른 것을 욕심내기보다도 우선 일상으로 복귀하는 것이다
    • 교수님께서 1년동안 박사생활 준비 차원에서 원격으로나마 매주 미팅을 하며 프로젝트에 참여할 것을 제안해주셨고
    • 이런 감사한 제안에 나도 그간의 게으름을 반성하고 내가 가진 능력을 총동원하여 프로젝트에 의미있는 기여를 하는 것이 목표이다


    BOB ( best of the best ) 8기 후기 by 김유진


      MSP ( MICROSOTF STUDENT PARTNER ) 인증 by 김유진


        SW 2018 컨트리뷰톤 참여 후기 by 김유진


          IT동아리 (YAPP) 참여후기 by 김유진


            유니톤(UNIYHON) 참여후기 by 김유진


              Portal Network Hackathon 후기 by 김유진 about Blockchain