I hereby claim:
- I am hauptbenutzer on github.
- I am flucht (https://keybase.io/flucht) on keybase.
- I have a public key ASAFGSuRh7mrqwJ8ldYqSvVD9gF4UjCNLp8f1YxfHUqYsQo
To claim this, I am signing this object:
| <template lang="html"> | |
| <div class="code-editor"> | |
| <textarea ref="textarea"/> | |
| </div> | |
| </template> | |
| <script> | |
| import CodeMirror from 'codemirror/lib/codemirror.js' | |
| import 'codemirror/mode/htmlmixed/htmlmixed.js' | |
| // You'll also want to include the css files |
| defmodule Roman do | |
| defp num_lookup({0, _}), do: "" | |
| defp num_lookup({1, 1}), do: "I" | |
| defp num_lookup({5, 1}), do: "V" | |
| defp num_lookup({1, 2}), do: "X" | |
| defp num_lookup({5, 2}), do: "L" | |
| defp num_lookup({1, 3}), do: "C" | |
| defp num_lookup({5, 3}), do: "D" | |
| defp num_lookup({1, 4}), do: "M" |
| defmodule MyAppWeb.Guardian.VerifyHeader do | |
| @moduledoc """ | |
| This is a wrapper for Guardian.Plug.VerifyHeader, the difference being that | |
| we do not want the connection to be halted. | |
| """ | |
| @behaviour Plug | |
| def init(opts), do: Guardian.Plug.VerifyHeader.init(opts) | |
| def call(conn, opts) do |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Simple script that replaces text smileys like ':)' with the corresponding | |
| * emoji. Can be injected via Chrome Plugin 'Custom JavaScript', requires jQuery | |
| * to be loaded along with it. | |
| */ | |
| /** | |
| * Rangy, a cross-browser JavaScript range and selection library | |
| * https://github.com/timdown/rangy | |
| * |