I hereby claim:
- I am davydog187 on github.
- I am davydog187 (https://keybase.io/davydog187) on keybase.
- I have a public key ASCubMQiKyFLw51a6aaD4uJXgcFPAhFbgDwoHgPd-bNEjAo
To claim this, I am signing this object:
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default | |
| ;; Base distribution to use. This is a layer contained in the directory |
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default |
I hereby claim:
To claim this, I am signing this object:
| defmodule App.Ecto.Atom do | |
| @moduledoc """ | |
| Generates an Ecto custom type for atoms. | |
| e.g. | |
| defmodule MyType do | |
| use App.Ecto.Atom, values: [:one, :two, :three] | |
| end |
| let timeout = null; | |
| let requestCount = 0; | |
| let queue = []; | |
| function schedule(limit) { | |
| if (!timeout) { | |
| timeout = setTimeout(() => throttleQueue(limit), 1000) | |
| } | |
| } |