Category Archives: Elixir

Phoenix で CKEDITOR is not definedエラー

環境 Elixir: 1.4.4 Phoenix: 1.2.2 とあるBoots … Continue reading

Posted in Elixir, Phoenix Framework, 技術情報 | Leave a comment

Phoenix プロジェクト作成

[bash] // プロジェクト作成 $ mix phoenix.new Pho … Continue reading

Posted in Elixir, Phoenix Framework, 技術情報 | Leave a comment

Elixir Fileの読み込み

[ruby] {:ok, file} = File.read("sam … Continue reading

Posted in Elixir, 技術情報 | Leave a comment

Ruby と Python と Elixir と。

除算の違い。 [bash] # Ruby puts 3.to_f / 2 #=& … Continue reading

Posted in Elixir, Python, Ruby, 技術情報 | Leave a comment

Elixir の with について

公開されている情報が、なかなか理解できないので手を動かしてみた。 [erlang … Continue reading

Posted in Elixir, 技術情報 | Leave a comment

ElixirのHeadとTailについて

[head | tail]の挙動が、いまひとつわからなかった。 しかし、どうもE … Continue reading

Posted in Elixir, 技術情報 | Leave a comment

Elixir ファイル読み込み

File読込み。 [bash] defmodule FileIO do def … Continue reading

Posted in Elixir, 技術情報 | Leave a comment

Elixir プログラムの実行方法

下記のモジュールファイルを作成する。 MyModule.exs これを実行するに … Continue reading

Posted in Elixir, 技術情報 | Leave a comment

Elixir関数定義

以下は、同じらしい。 [bash] fun = &(&1 + 5 … Continue reading

Posted in Elixir, 技術情報 | Leave a comment

Elixir エラーハンドリングのパターン

存在しないファイルを読み込んだ時、:ok は帰ってこない為、パターンマッチに失敗 … Continue reading

Posted in Elixir, 技術情報 | Leave a comment