본문 바로가기

카테고리 없음

2020-05-19 12시 개발자 글 모음 | "[Reactjs] AWS Codep" 외 8개 이야기

[B급 프로그래머] 2020년 5월 16일 개발자 이야기(발표 자료) by 박재호 about Git

  • 작년에 읽고 나서 게으름 때문에 서평을 올리지 못한 책이 몇 권 있는데
  • 오늘 소개할 책은 그 중 하나인 <직업의 지리학>이다
  • 서울과 수도권 일부 지역이 그렇게 인기를 끌고 최첨단 회사들이 집중되기 때문에 과밀 문제를 막기 위해 전


[Swift 5.2] Swift Package Manager를 이용하여 패키지를 통합 관리하기 - Proxy Module by 안정민 about Swift

  • 2 // The swift-tools-version declares the minimum version of Swift required to build this package
  • dependencies: [ // Dependencies declare other packages that this package depends on
  • // Targets can depend on other targets in this package


Building a MySQL server development environment using Docker Toolbox by 오진선 about Git,Docker,HTTPS,MySQL,SQL

  • wants/*;\ rm -f /lib/systemd/system/local-fs
  • wants/*initctl*; \ rm -f /lib/systemd/system/basic
  • wants/*;\ rm -f /lib/systemd/system/anaconda


[python] range를 자유롭게 다루기 순차,역순,간격 지정하여 만들기 by 김상윤 about Python

  • 해석 : 보시다시피 range(10)을 써버 0~9까지 연속된 객체를 만들었고 각각 index와 value를 확인해 보면 index와 value값이 같다는 걸 알 수 있습니다
  • range의 step파라미터는 응용하면 유용하게 사용할 수 있습니다
  • -3)을 하게 되면 15부터 시작해서 5전까지 인덱스를 만들고 스템은 -3인 range를 만들게 됩니다


[Two Cents #22] Covid-19 — 뉴노멀, 경제회복 전망; 스타트업 — 가격, 첫 고객; New Social, Netflix, 중국 — 인구 구조, 비디오 앱… by 허진호

  • Follow all the topics you care about
  • and we’ll deliver the best stories for you to your homepage and inbox


페이스북의 기피(Giphy) 인수 by 최종원

  • 이렇게 되면 페이스북은 경쟁사의 사용자 수나 사용자 행동 분석 등 여러 가지 데이터를 얻을 수 있을 것이다
  • 다른 경쟁 서비스인 Tenor는 2년 전에 구글이 인수했으니 혹시라도 GIPHY가 망하면 Tenor를 이용해야 하고 그렇게 되면 가장 강력한 경쟁사인 구글에게 데이터를 제공하는 꼴이 되는 것이다
  • 혹은 다른 관점에서 GIPHY를 연결한 수많은 서비스의 사용량 변화를 통해 거의 실시간으로 요즘 뜨는 앱을 감지할 수도 있을 것이다


네 삶을 살아라. 폭풍이 지나갈 때까지기다리지 말라. by 김봉조

  • 폭풍이 지나갈 때까지 기다리지 말라
  • 외출했다가 돌아와 신발을 벗을 때 마음이 신발을 벗는 데 있지 않고 방에 먼저 가 있으면 신발을 아무렇게나 벗어던지게 된다
  • 무시 못할 벽이 생겨도 담쟁이는 서두르지 않고 벽을 타 넘어 앞으로 나아간다


[leetCode] 69. Sqrt(x) (Python) by 장동현 about Python

  • Since the return type is an integer
  • the decimal digits are truncated and only the integer part of the result is returned
  • Input: 8 Output: 2 Explanation: The square root of 8 is 2


[Reactjs] AWS Codepipline을 통한 배포 by 이동원 about AWS

  • 2 phases: install: commands: - echo Insatlling NPM Packages and wget Enviorment File - npm install build: commands: - echo Build started on `date` - npm run build post_build: commands: - aws s3 sync
  • /build s3://dev-productmoor --acl public-read artifacts: files: - '**/*' name: build-$(date +%Y-%m-%d) base-directory: build cache: paths: - "node_modules/**/*" 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 version : 0
  • 2 phases : install : commands : - echo Insatlling NPM Packages and wget Enviorment File - npm install build : commands : - echo Build started on ` date ` - npm run build post_build : commands : - aws s3 sync