No Image

MySQL 8.0: InnoDB Introduces LOB Index For Faster Updates

2018-05-15 KENNETH 0

MySQL 8.0: InnoDB Introduces LOB Index For Faster Updates To support the new feature Partial Update of JSON documents, InnoDB changed the way it stored the large objects (LOBs) in MySQL 8.0. This is because InnoDB does not have a separate JSON data type and stores JSON documents as large objects.… Source: MySQL 8.0: InnoDB Introduces LOB Index For Faster Updates

NumPy와 C++ Extensions의 성능 비교

2018-05-15 KENNETH 0

NumPy와 C++ Extensions의 성능 비교 파이썬은 놀라운 생산성을 발휘하는 언어입니다. 하지만 성능 문제는 늘 발목을 잡게 합니다. 이 문제를 극복하는 방법으로 일반적으로 C Extension을 작성하는 방법이 권장되며, 여기서는 표준 편차를 구하는 함수를 작성하여 순수 파이썬의 성능과 NumPy, 각종 C++ Extensions의 성능을 비교해 보도록 합니다. Python 표준 편차를 구하는 파이썬 코드는 아래와 같이 작성할 수 있습니다. def mean(lst): return sum(lst) / len(lst) def standard_deviation(lst): m = mean(lst) variance = sum([(value – m) ** 2 for value in lst]) return math.sqrt(variance / len(lst)) NumPy NumPy로는 매우 간단하게 한 줄로 처리 가능합니다. np.std(lst) NumPy를 사용하면 코드가 간단해지고, 일반적으로 NumPy는 C로 최적화한 매우 효율적인 라이브러리로 알려져 있으나 NumPy는 싱글 코어와 대형 배열에 최적화된 라이브러리라는 한계가 존재합니다. 실제로 배열의 크기가 100개 이내인 경우 NumPy는 순수 파이썬 구현 보다도 오히려 낮은 성능을 보입니다. C++ Extension 여기서는 C++로 Extension을 작성하여 성능을 최적화 해보도록 합니다. C++로 표준 편차를 [ more… ]

Windows 10 Tip: Organize your busy lives with a family notebook in OneNote

2018-05-15 KENNETH 0

Windows 10 Tip: Organize your busy lives with a family notebook in OneNote Grocery lists. Vacation planning. Shared notes. Families share information every day, and often, it’s challenging to capture it all and keep it up to date. That’s where a family notebook comes in. Share to-do lists, recipes, vacation plans, and more Once your notebook is created, it will be automatically shared with your Microsoft family. Whatever you choose to add to your family notebook, it will be in one place that everyone in your family can access. We’ve started you off with some examples for Household management, Food, Vacations, and more. Add new sections for your family’s favorites Track your favorite TV shows, home projects, or any other information you want to share – in one convenient place. Here are some more great ideas for your family notebook: [ more… ]

HP announces two new lines of laptops, desktops and All-in-Ones powered by Windows 10   

2018-05-14 KENNETH 0

HP announces two new lines of laptops, desktops and All-in-Ones powered by Windows 10    Today, HP unveiled two lines of premium devices in a variety of form factors designed for wherever work and life take you with amazing battery life, security, collaboration and entertainment tools and more. Let’s take a look.    HP Elite 1000 Series   The HP Elite 1000 series is an ideal match for the person who wants sleek design and durability, industry-leading security, and collaboration tools as they weave in and out of their work day. Powered by Windows 10, these devices arrive with your digital personal assistant Cortana,* comprehensive protection with secure and manageable PCs and Windows Defender, and new ways to talk and share faster with the people you talk to the most.     HP EliteBook x360 1030 weighs only 2.76 lbs. and is 15.8 mm thin and has up to 18 hours of battery life so you can work easily on-the-go, plus 4G Cat9 LTE connectivity for the ultimate in connectivity. HP EliteBook x360 1030 is expected to be available in June for [ more… ]

AWS 주간 소식 모음 – 2018년 5월 14일

2018-05-14 KENNETH 0

AWS 주간 소식 모음 – 2018년 5월 14일 안녕하세요! 여러분~ 매주 월요일 마다 지난 주에 업데이트된 국내 AWS관련 콘텐츠를 정리해 드립니다. AWS 클라우드에 대한 새로운 소식을 확인하시는데 많은 도움 되시길 바랍니다. 혹시 빠지거나 추가할 내용이 있으시면, 저에게 메일 주시면 추가 공유해 드리겠습니다. AWS코리아 블로그 AWS Step Functions, 서울 리전 출시 (2018-05-12) Amazon Aurora Backtrack – 데이터베이스 시점 복원 기능 출시 (2018-05-11) AWS 5월 클라우드 마이그레이션 특집 온라인 세미나 (2018-05-11) Amazon Aurora (PostgreSQL 엔진), 서울 리전 출시 (2018-05-10) Amazon Transcribe를 이용한 자동 자막 생성하기 (2018-05-10) 이상 탐지를 위한 Amazon SageMaker 의 Random Cut Forest 빌트인 알고리즘 (2018-05-10) 떠오르는 인공 지능 스타트업 소개 – 뷰노, 매스프레소, 포티투마루, 액션파워, 엘리스 (2018-05-09) AWS Glue, 서울 리전 출시 (2018-05-09) AWS 멀티 어카운트 환경을 위한 통합 로깅 방법 (2018-05-09) EC2 요금 인하 – H1 인스턴스 (2018-05-09) AWS 최신 뉴스 Amazon CloudWatch를 사용한 Amazon Kinesis Data Analytics [ more… ]