Pythonで開発するならKiteを導入して爆速開発

Kiteとは?

Kite integrates with your IDE and uses machine learning to give you useful code completions for Python.

AIがPythonのコード補完やってくれる便利なツール。ドキュメントもすぐ見れる。 Atom、VSCode、Vim、NeoVim、PyCharmなど主要なエディタ・IDEで簡単に導入ができる。

Read more  ↩︎

Project EulerをHaskellで解いていく(Problem1: Multiples of 3 and 5)

TL;DR

Haskellの勉強を兼ねてProject Eulerを解いていきます。 始めたばかりでわからないことが多いのでコメント頂けると嬉しいです。

問題文

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000.

10未満の自然数のうち, 3 もしくは 5 の倍数になっているものは 3, 5, 6, 9 の4つがあり, これらの合計は 23 になる. 同じようにして, 1000 未満の 3 か 5 の倍数になっている数字の合計を求めよ.

Read more  ↩︎

Project EulerをHaskellで解いていく(Problem2: Even Fibonacci numbers)

TL;DR

Haskellの勉強を兼ねてProject Eulerを解いていきます。 始めたばかりでわからないことが多いのでコメント頂けると嬉しいです。

問題文

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.

フィボナッチ数列の項は前の2つの項の和である. 最初の2項を 1, 2 とすれば, 最初の10項は以下の通りである. 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... 数列の項の値が400万以下の, 偶数値の項の総和を求めよ.

Read more  ↩︎

「プログラマが知るべき97のこと」をクローリングしてPDFを作る

はじめに

プログラマが知るべき97のこと」というエッセイ集がWeb上で公開されていたのでクローリングしてPDF化してみました。

Read more  ↩︎

MySQL8.0でSequel Proを使えるようにする

問題

Sequel ProがMySQL8.0ではクラッシュして接続できない

Read more  ↩︎