Forward GNUPG agent with the following steps:
Run gpg once to create the directory structure.
gpg --list-keys
# https://stackoverflow.com/questions/6543519/undoing-accidental-git-stash-pop | |
# https://stackoverflow.com/questions/89332/how-to-recover-a-dropped-stash-in-git | |
accepted | |
If you have only just popped it and the terminal is still open, you will still have the hash value printed by git stash pop on screen (thanks, Dolda). | |
Otherwise, you can find it using this for Linux and Unix: | |
git fsck --no-reflog | awk '/dangling commit/ {print $3}' | |
and for Windows: |
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi | |
index f7a47f8..e9cfe7a 100644 | |
--- a/doc/misc/efaq.texi | |
+++ b/doc/misc/efaq.texi | |
@@ -1491,6 +1491,39 @@ exhibits all the colors Emacs knows about on the current display. | |
Syntax highlighting is on by default since version 22.1. | |
+Emacs 26.1 and later support direct color mode in terminals. If Emacs | |
+finds Terminfo capabilities @samp{setb24} and @samp{setf24}, 24-bit |
OPTIONAL MATCH path = (x)<-[*..3]-() WHERE ID(x) = 65 | |
WITH apoc.coll.toSet([n in nodes(path) WHERE n is not null | |
| { id: id(n),label: labels(n),type:"",metadata: properties(n) } ]) as nodes, | |
apoc.coll.toSet([r in relationships(path) WHERE r is not null | |
| { id: id(r),source: id(startNode(r)),relation: type(r),target: id(endNode(r)), directed: "true" } ]) as rels | |
RETURN { graph: { type:"",label: "",directed: "true",nodes: nodes,edges: rels, | |
metadata:{ countNodes: size(nodes),countEdges: size(rels) } } } as graph; |
defmodule Absinthe.Ecto.Resolution.Schema do | |
@moduledoc """ | |
This module provides helper functions to resolve a GraphQL query into `Ecto.Query`. | |
""" | |
import Absinthe.Resolution.Helpers | |
import Ecto.Query | |
alias Absinthe.Resolution | |
alias Absinthe.Blueprint.Document.Field |
¿cómo he de hacerte sentir? | |
¿cómo hacerte entenderlo? | |
Sin que se adueñen de ti | |
con su rostro de espanto | |
la parálisis el miedo. | |
Las palabras que fermentan | |
lo que digo lo que siento | |
incapaz de retenerlas |
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.
defmodule Config do | |
@moduledoc """ | |
This module handles fetching values from the config with some additional niceties | |
""" | |
@doc """ | |
Fetches a value from the config, or from the environment if {:system, "VAR"} | |
is provided. | |
An optional default value can be provided if desired. |