[도서] R 데이터 구조와 알고리즘

2017-06-26 KENNETH 0

[도서] R 데이터 구조와 알고리즘 분야별 신상품 – 국내도서 – 컴퓨터와 인터넷 [도서]R 데이터 구조와 알고리즘 PKS 프라카시,아슈튜니 스리 크리슈나 라오 공저/김우현 역 | 에이콘출판사 | 2017년 07월 판매가 27,000원 (10%할인) | YES포인트 1,500원(5%지급) 이벤트 : 주목 IT 신간&예약판매 사은품 이벤트 아홉 가지 정렬 알고리즘의 장단점, 스택과 큐를 배열로 구현했을 때와 링크드 리스트로 구현했을 때의 차이점 등을 R 사용자들이 쉽게 이해할 수 있도록 설명한다. 여러 가지 인덱싱 구조와 함께 최신 기술인 그래 Source: [도서] R 데이터 구조와 알고리즘

[도서] 엑셀로 하는 데이터 시각화 세트

2017-06-25 KENNETH 0

[도서] 엑셀로 하는 데이터 시각화 세트 분야별 신상품 – 국내도서 – 컴퓨터와 인터넷 [도서]엑셀로 하는 데이터 시각화 세트 조르즈 카몽이스,존 포먼 공저/이혜연,고석범 공역 | 에이콘출판사 | 2017년 07월 판매가 52,200원 (10%할인) | YES포인트 2,900원(5%지급) 이벤트 : 주목 IT 신간&예약판매 사은품 이벤트 ★ 세트 구성: 전2권 ★ 1) 데이터 시각화 원리 2) Data Smart 『데이터 시각화 원리』 소개 비즈니스에서 효과적으로 데이터 시각화할 수 있는 원리를 설명하는 책으로, 사용할 소프트웨어에 독립적으로 Source: [도서] 엑셀로 하는 데이터 시각화 세트

No Image

Secure Practices for Microservices – Dev and Ops

2017-06-24 KENNETH 0

Secure Practices for Microservices – Dev and Ops Owen Garrett, Head of Product at NGINX, is interviewed in the TechTarget Microservices channel about best practices for secure application development and deployment with microservices. A few interesting quotes: “…all incoming input… it’s potentially attack traffic.” “…build the application so that it’s very defensive in the way that it handles requests.” “For ops, good practices include deploying a load balancer or reverse proxy devices with security scanners…” “It’s a very different security situation with microservices for a couple of reasons.” For the full story, visit TechTarget. The post Secure Practices for Microservices – Dev and Ops appeared first on NGINX. Source: Secure Practices for Microservices – Dev and Ops

Smooth as Butter Animations in the Visual Layer with the Windows 10 Creators Update

2017-06-24 KENNETH 0

Smooth as Butter Animations in the Visual Layer with the Windows 10 Creators Update The Windows 10 Creators Update marks the third major release of the Windows UI platform APIs. With each release, an attempt is frequently made to simplify features introduced in prior releases. This encourages Universal Windows Platform (UWP) developers to standardize on these features. The new hide and show implicit animations are an example of this. At the same time, too much standardization can potentially lead to conformity, so with each new release more powerful visual features like the new custom animations are also added, which allow developers who are willing and able to dive into them to customize their user interfaces and stand out from the crowd. This inherent tension between ease of use and the power to customize rewards developers for their efforts while also [ more… ]

No Image

MySQL 8.0: ひらがなカタカナを判別する日本語用Collation

2017-06-23 KENNETH 0

MySQL 8.0: ひらがなカタカナを判別する日本語用Collation 以前の記事では、MySQL 8.0.1で導入された新しい 日本語のutf8bm4のCollation(文字照合順)について ご紹介しました。このcollation (utf8mb4_ja_0900_as_cs) は、CLDR 30で定義されたアクセント記号(清音濁音半濁音)ならびに大文字小文字(拗音促音など)を判別する実装となっています。 今日ご紹介するのはひらがなカタカナを判別できる新しい「かなセンシティブ」なCollation utf8mb4_ja_0900_as_cs_ksです。DUCETではひらがながカタカナよりも前にソートされるように3次レベルの重みを定義しています。例えば: 3042 ; [.3D5A.0020.000E] # HIRAGANA LETTER A 30A2 ; [.3D5A.0020.0011] # KATAKANA LETTER A 2次レベルでの違い(000E および 0011)によって 0x3042 (あ) < 0x30A2 (ア) となります。CLDRではひらがなとカタカナの違いは4次レベル(例: &あ<<<<ア)で比較するよう定義されています。デフォルトの比較レベルは3次レベル(強さ 3)となっており、最初の3次レベルでみると同じとなります。 utf8mb4_ja_0900_as_cs_ksについて utf8mb4_ja_0900_as_csに対していただいたフィードバックにお応えする形で、ひらがなとカタカナを判別する新しいCollationである utf8mb4_ja_0900_as_cs_ks を追加することにしました。ここでの’_ks’は「かなセンシティブ Kana Sensitive」を意味しています。 このCollationは最初の3次レベルまでが同じひらがなとカタカナの判別に必要となる4次レベルでの処理を行います。以下の例では、utf8mb4_ja_0900_as_cs および utf8mb4_ja_0900_as_cs_ks のそれぞれのCollationでの文字列比較結果です: mysql> SET @s1 = CONVERT(‘きゅう’ USING utf8mb4); Query OK, 0 rows affected (0.01 sec) mysql> SET @s2 = CONVERT(‘キュウ’ USING utf8mb4); Query OK, 0 rows affected (0.00 sec) mysql> SET @s3 = CONVERT(‘きゆう’ USING utf8mb4); Query OK, 0 rows affected (0.00 sec) mysql> SET @s4 = CONVERT(‘キユウ’ USING utf8mb4); Query OK, 0 rows affected (0.00 sec) mysql> SELECT STRCMP(@s1 COLLATE utf8mb4_ja_0900_as_cs, @s2); +————————————————+ | STRCMP(@s1 COLLATE utf8mb4_ja_0900_as_cs, @s2) | +————————————————+ | 0 | +————————————————+ 1 row in set (0.00 sec) mysql> SELECT STRCMP(@s2 COLLATE utf8mb4_ja_0900_as_cs, @s3); +————————————————+ | STRCMP(@s2 COLLATE utf8mb4_ja_0900_as_cs, @s3) | [ more… ]