Skip to content

Instantly share code, notes, and snippets.

@lukiffer
lukiffer / debug.log
Created September 3, 2020 09:00
hashicorp/random provider error
2020/09/03 03:51:19 [INFO] Terraform version: 0.13.2
2020/09/03 03:51:19 [INFO] Go runtime version: go1.14.7
2020/09/03 03:51:19 [INFO] CLI args: []string{"/usr/local/Cellar/tfenv/2.0.0/versions/0.13.2/terraform", "plan"}
2020/09/03 03:51:19 [DEBUG] Attempting to open CLI config file: /Users/lfritz/.terraformrc
2020/09/03 03:51:19 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2020/09/03 03:51:19 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2020/09/03 03:51:19 [DEBUG] ignoring non-existing provider search directory /Users/lfritz/.terraform.d/plugins
2020/09/03 03:51:19 [DEBUG] ignoring non-existing provider search directory /Users/lfritz/Library/Application Support/io.terraform/plugins
2020/09/03 03:51:19 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2020/09/03 03:51:19 [INFO] CLI command args: []string{"plan"}
@lukiffer
lukiffer / ozw.log
Last active October 23, 2018 02:14
OZW Log Comparison
Always, OpenZwave Version 1.4.3190 Starting Up
Info, Setting Up Provided Network Key for Secure Communications
Warning, Failed - Network Key Not Set
Info, mgr, Added driver for controller /dev/ttyUSB0
Info, Opening controller /dev/ttyUSB0
Info, Trying to open serial port /dev/ttyUSB0 (attempt 1)
Info, Serial port /dev/ttyUSB0 opened (attempt 1)
Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_VERSION: 0x01, 0x03, 0x00, 0x15, 0xe9
Detail, contrlr, Queuing (Command) FUNC_ID_ZW_MEMORY_GET_ID: 0x01, 0x03, 0x00, 0x20, 0xdc
Detail, contrlr, Queuing (Command) FUNC_ID_ZW_GET_CONTROLLER_CAPABILITIES: 0x01, 0x03, 0x00, 0x05, 0xf9
@lukiffer
lukiffer / keybase.md
Created January 25, 2018 00:09
keybase.md

Keybase proof

I hereby claim:

  • I am lukiffer on github.
  • I am lukiffer (https://keybase.io/lukiffer) on keybase.
  • I have a public key ASDm9vY2seOadftHgOhULb073lUqKuNrAvH7F4aQDVZ1tgo

To claim this, I am signing this object:

import { INutritionData } from '../models/nutrition-data.interface';
import { Ingredient } from '../models/ingredient';
import { RecipeIngredient } from '../models/recipe-ingredient';
import * as _ from 'lodash';
export class NutritionCalculatorService {
public calculate(ingredients: RecipeIngredient[]): INutritionData {
const result = new Ingredient(null, null);
const properties = ['calories', 'sodium'];
@lukiffer
lukiffer / Program.cs
Created May 26, 2015 02:40
Castle.Windsor Example
using System;
using System.ComponentModel.Design.Serialization;
using Castle.MicroKernel.Registration;
using Castle.Windsor;
namespace CastleWindsorExample
{
class Program
{
static void Main(string[] args)