This gist contains a zsh completion script for the zk (Zettelkasten) CLI, plus instructions for installation and customization.
- Create a completion directory (if you haven’t already):
This gist contains a zsh completion script for the zk (Zettelkasten) CLI, plus instructions for installation and customization.
| FROM python:3.9-slim | |
| WORKDIR /app | |
| RUN pip install aries-askar | |
| CMD ["python", "main.py"] |
| FROM python:3.9-slim | |
| WORKDIR /usr/src/app | |
| RUN apt-get update && apt-get install -y git | |
| RUN pip install git+https://github.com/Indicio-tech/acapy-minimal-example.git | |
| ADD anoncreds_test.py . | |
| CMD ["python", "anoncreds_test.py"] |
| package org.eclipse.ice.renderer; | |
| import org.eclipse.ice.dev.annotations.IDataElement; | |
| /** | |
| * This interface satisfies the dependencies of the @DataElement Annotation and | |
| * was auto-generated by the ICE Framework. | |
| */ | |
| public interface Person extends IDataElement<Person> { |
| #! /usr/bin/env ruby | |
| has_toml = `gem list -i "^toml$"` | |
| if has_toml.strip != 'true' then | |
| puts "You must first install the toml gem" | |
| puts "Run: gem install toml" | |
| exit 1 | |
| end | |
| require 'toml' |
| <?php | |
| namespace Fsl\FastRoute; | |
| class NamedRouteCollector extends \FastRoute\RouteCollector { | |
| /** @var array */ | |
| private $lookup; | |
| /** | |
| * Constructs a route collector. |