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

Python News

  • Hack The Virtual Memory: Python bytes

    • 파이썬 3의 내부를 둘러보기 위해서 파이썬을 사용해서 가상 메모리를 해킹하는 과정을 소개하는 기사

    Everything in Python is an object: integers, strings, bytes, functions, everything. So the line s = b"Holberton" should create an object of type bytes, and store the string b"Holberton somewhere in memory. Probably in the heap since it has to reserve space for the object and the bytes referenced by or stored in the object (at this point we don’t know about the exact implementation).

  • Django Admin: Expensive COUNT(*) Queries

    • 방대한 데이터를 Admin으로 관리해야 하면서 겪게될 느려짐을 방지해줄 팁을 소개하는 기사

    Once we have done that, it will be slow when we first time load the page and it will be faster afterwards. We can also fetch and cache this value from time to time. This solution might not get us the exact count and thus mess up pagination sometimes but in most cases that would not be much of a problem.

  • How to mine newsfeed data and extract interactive insights in Python

    • 뉴스를 수집해서 기사를 유사도에 따라서 분류하고 시각화하는 방법을 소개하는 튜토리얼
  • Pandas & Seaborn - A guide to handle & visualize data elegantly

    • 데이터 처리 및 시각화를 위한 튜토리얼
    • matplotlib보다 조금 더 이쁜 Seaborn을 배워보려는 분들에게 추천하고, 곁들여서 pandas도 배워보자!

JavaScript

  • CORS — a guided tour

    • CORS의 전 영역을 Node.js 코드를 사용해서 소개하는 기사
    • 토큰 기반의 인증 시스템이 아니라면 Allowing multiple origins 코드는 사용할 일이 많으니 꼭 알아두자!
  • React is Slow, React is Fast: Optimizing React Apps in Practice

    • React.js의 퍼포먼스 향상에 관심이 있는 분들에게 추천할만한 기사

    Don’t do it first, or spend too much time to over optimize each and every component — except if you’re on mobile. And remember to test on various devices to get a good impression of your app’s responsiveness from a user’s point of view.

Mobile(iOS, Android, Etc) News


P.S 다음주부터 PythonJavaScript 기사를 줄이고 DjangoMobile쪽 기사를 확충하도록 하겠습니다. 파이썬의 경우 국내 파이썬 소식을 전해주는 raccoonyy님의 홈페이지도 있으며, 파이썬 코리아(FB, fbsight)에도 있기 때문에 Django에 집중하기로 했습니다.