내 맘대로 위클리 뉴스 - 2017년 07주(02월 17일)

JavaScript News

  • Filtering and Chaining in Functional JavaScript

    • 필터링(filtering)을 JavaScript의 배열(Array)에 사용하는 방법을 소개하는 기사
    • '함수형' 프로그래밍의 유행을 선도하고 있는 필터링, 맵, 리듀서를 배열에 적용해 볼 수 있는 재미있는 기사, 가볍게 접근해 보실 분들에게 추천!

    The code you produce will be cleaner and easier to maintain. Using the filter method you can be confident that you won’t alter the state of the array that you’re evaluating. You will be returning a new array each time, and your original array will remain unchanged.

  • Twitter API: Uploading Videos using Node.js

    • Node.jsTwit 라이브러리를 사용하여 Twitter에 비디오를 업로드하는 방법 스니핏 코드로 설명하는 기사
    • 기사에 소개된 스니핏 코드가 예외처리가 필요한 부분이 많기 때문에 코드를 조심해서 활용하도록 하자!
  • How to make Jenkins build NodeJS, Ruby, and Maven on Docker

    • Docker 컨테이너에 Jenkins 서버를 설치하는 방법과 Jenkins 공식 이미지를 수정하는 방법을 소개하는 기사

    [...] When you are a small team you have to do more with less. Two of the greatest weapons we use to slice overhead to confetti are Jenkins and Docker.

Python News

  • Reconciling Django Templates with React Components

    • Django TemplatesReact Components에 적용하는 방법을 소개하는 기사
    • 기사 끝부분에 소개하는 '페이지 확장'과 관련된 내용 중에서 Redux와 관련된 주제는 팀원들과 가볍게 이야기 해보고 싶음!

    The fundamental issue is that Django wants you to build up your pages using template fragments, and React wants to pull you into its world with JS components as the main building blocks. [...] Our solution was to abandon the single page app model, and instead let Django serve each page individually, with a root React component for each page.

  • Build a REST API with Django – A Test Driven Approach: Part 1

    • DRF(Django Rest Framework)를 사용해서 API 서버를 만들어보는 튜토리얼 기사
    • 나에겐 Django만 해도 분에 넘치는 기능인데, DRF는 아주 먼 기술임
  • A Simple Trending Products Recommendation Engine in Python

    • 추천 시스템을 파이썬으로 구축하는 방법을 소개하는 기사

Mobile

  • Getting to Swift 3

    • Airbnb에서 발행한 Swift 3을 앱에 적용한 경험과 기술적 통찰력을 소개하는 기사
  • Android Fragments Tutorial: An Introduction

    • 안드로이드 프레그먼트를 사용하는 방법을 소개하는 튜토리얼 기사
    • 대부분의 코드를 자세히 설명하고 있기 때문에 프레그먼트를 처음 접하시는 분들에게 추천!

Etc