I hereby claim:
- I am dennisreimann on github.
- I am dennisreimann (https://keybase.io/dennisreimann) on keybase.
- I have a public key ASDBBSKvX05Qufq72EMx5skXDINPJoT0oZA4PTNthAuUXwo
To claim this, I am signing this object:
| language: node_js | |
| cache: | |
| # Yarn 2 does not store dependencies in node_modules anymore, at least not by default. | |
| # If you are using the node-modules plugin, remove the `npm: false` line. | |
| npm: false | |
| # Yarn 2 caches to the local .yarn directory, not the Travis default `$HOME/.yarn` | |
| directories: | |
| - ./.yarn/cache |
| #!/bin/sh | |
| # by dennisreimann, but most of this is adapted from Stadicus: | |
| # https://stadicus.github.io/RaspiBolt/raspibolt_61_system-overview.html | |
| # | |
| # Dependencies: jq | |
| # | |
| # source the environment so that we can use the variables | |
| . $BTCPAY_BASE_DIRECTORY/.env | |
| # set colors |
| #!/bin/sh | |
| # by dennisreimann | |
| # most of this is taken from Stadicus: | |
| # https://stadicus.github.io/RaspiBolt/raspibolt_61_system-overview.html | |
| # set colors | |
| color_red='\033[0;31m' | |
| color_green='\033[0;32m' | |
| color_yellow='\033[0;33m' | |
| color_blue='\033[0;34m' |
| #!/usr/bin/env node | |
| const resolveOpenalias = require('./openalias'); | |
| const address = process.argv[2] | |
| if (!address) { | |
| console.error('Please provide an address to resolve.\n\nUsage: ./openalias-cli.js my.domain.com') | |
| process.exit(1) | |
| } |
I hereby claim:
To claim this, I am signing this object:
| # Code for the chapter on creating an Identicon in | |
| # "The Complete Elixir and Phoenix Bootcamp" on Udemy. | |
| # see https://www.udemy.com/the-complete-elixir-and-phoenix-bootcamp-and-tutorial/ | |
| defmodule Identicon do | |
| defmodule Identicon.Image do | |
| defstruct hex: nil, color: nil, grid: nil, pixel_map: nil | |
| end | |
| alias Identicon.{Image} |
| {- | |
| This file is a reaction to the article "A small dive into, and rejection of, Elm": | |
| https://hackernoon.com/a-small-dive-into-and-rejection-of-elm-8217fd5da235#.9w3ml4r6b | |
| I think constructive criticism is very welcome in the Elm community. Pointing out | |
| possibilities for documentation improvements, mentioning missing features or ways | |
| in which the language could evolve etc. are imho a vital part of a good community. | |
| However, the article above is neither well informed nor constructive. IMHO ranting |
| var gulp = require('gulp'); | |
| var elm = require('gulp-elm'); | |
| var plumber = require('gulp-plumber'); | |
| var del = require('del'); | |
| // builds elm files and static resources (i.e. html and css) from src to dist folder | |
| var paths = { | |
| dest: 'dist', | |
| elm: 'src/*.elm', | |
| staticAssets: 'src/*.{html,css}' |
| @objects | |
| form-row-* .form__row | |
| label .form__row__label | |
| input .form__row__input | |
| = Form = | |
| @on small | |
| @forEach [form-row-*] as row | |
| ${row}.label: |
| { | |
| "coffeescript_error": { | |
| "level": "error" | |
| }, | |
| "arrow_spacing": { | |
| "name": "arrow_spacing", | |
| "level": "ignore" | |
| }, | |
| "no_tabs": { | |
| "name": "no_tabs", |