Skip to content

Instantly share code, notes, and snippets.

View katcipis's full-sized avatar
🏠
Working from home

Tiago Cesar Katcipis katcipis

🏠
Working from home
View GitHub Profile
@katcipis
katcipis / terraform-cond-expr-crash-logs.txt
Created June 28, 2022 15:24
terraform conditional expression crash logs
2022-06-28T17:19:09.502+0200 [INFO] Terraform version: 1.2.3
2022-06-28T17:19:09.503+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.0.0
2022-06-28T17:19:09.503+0200 [DEBUG] using github.com/hashicorp/hcl/v2 v2.12.0
2022-06-28T17:19:09.503+0200 [DEBUG] using github.com/hashicorp/terraform-config-inspect v0.0.0-20210209133302-4fd17a0faac2
2022-06-28T17:19:09.503+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734
2022-06-28T17:19:09.503+0200 [DEBUG] using github.com/zclconf/go-cty v1.10.0
2022-06-28T17:19:09.503+0200 [INFO] Go runtime version: go1.18.3
2022-06-28T17:19:09.503+0200 [INFO] CLI args: []string{"terraform", "validate"}
2022-06-28T17:19:09.503+0200 [TRACE] Stdout is not a terminal
2022-06-28T17:19:09.503+0200 [TRACE] Stderr is not a terminal
@katcipis
katcipis / keybase.md
Created February 22, 2018 19:42
keybase.md

Keybase proof

I hereby claim:

  • I am katcipis on github.
  • I am katcipis (https://keybase.io/katcipis) on keybase.
  • I have a public key ASDwPdQ5H4V6f_NbsKzDb9P4CMuRP-1xjhXGfecy9JgMjgo

To claim this, I am signing this object:

@katcipis
katcipis / Makefile
Last active August 29, 2015 14:18 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@katcipis
katcipis / bug966247.html
Last active August 29, 2015 14:12
Firefox bug 966247
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title> Reproducing bug 966247 </title>
<link rel="stylesheet" href="">
@katcipis
katcipis / supertest-octet-stream-problem
Created July 26, 2014 14:49
Supertest problem sending octet-stream
"use strict";
var request = require('supertest');
var express = require('express');
var app = express();
var expectedBuffer = new Buffer(10);
expectedBuffer[0] = 234;