This file contains 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 enabled the JWT Auth backend in Vault for GitLab to authenticate with (obtains a Vault token based on $CI_JOB_JWT | |
// in pipeline jobs) | |
// | |
resource "vault_jwt_auth_backend" "gitlab" { | |
type = "jwt" | |
path = var.gitlab.jwt_auth_path | |
jwks_url = format("https://%s/-/jwks", var.gitlab.hostname) | |
bound_issuer = var.gitlab.hostname | |
} |
This file contains 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
const fs = require('fs'); | |
const solc = require('solc'); | |
const Web3 = require('web3'); | |
// Connect to local Ethereum node | |
const web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); | |
// Compile the source code | |
const input = fs.readFileSync('Token.sol'); | |
const output = solc.compile(input.toString(), 1); |
This file contains 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
;;; nodejs-repl-eval.el --- Summary | |
;;; Commentary: | |
;;; | |
;;; Evaluation functions for the `nodejs-repl' package. Written on a stormy | |
;;; night between days of node hacking. | |
;;; | |
;;; Code: | |
(require 'js2-mode) | |
(require 'nodejs-repl) |
This file contains 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
;; Connect using jabber-connect | |
;; My username from the HipChat configuration | |
;; from https://www.hipchat.com/account/xmpp | |
(setq jabber-account-list '(("[email protected]"))) | |
;; To join HipChat rooms easily | |
(defvar hipchat-number "10804") | |
(defvar hipchat-nickname "Brian McKenna") | |
(defun hipchat-join (room) |
This file contains 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
(ns unfold-examples | |
(:use [unfold-util])) | |
(defn unfold-tails [s] | |
(unfold empty? identity rest s)) | |
(defn unfold-map [f s] | |
(unfold empty? #(f (first %)) rest s)) |