a489f514-3872-4033-b572-c178fbf518fb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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:
- 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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {- | |
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @objects | |
| form-row-* .form__row | |
| label .form__row__label | |
| input .form__row__input | |
| = Form = | |
| @on small | |
| @forEach [form-row-*] as row | |
| ${row}.label: |
NewerOlder