Skip to content

Instantly share code, notes, and snippets.

View noslouch's full-sized avatar

Brian Whitton noslouch

View GitHub Profile
2024-02-01T13:50:45.926-0500 [INFO] Terraform version: 1.7.2
2024-02-01T13:50:45.927-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.41.0
2024-02-01T13:50:45.927-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.19.1
2024-02-01T13:50:45.927-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2024-02-01T13:50:45.927-0500 [DEBUG] using github.com/zclconf/go-cty v1.14.1
2024-02-01T13:50:45.927-0500 [INFO] Go runtime version: go1.21.5
2024-02-01T13:50:45.927-0500 [INFO] CLI args: []string{"terraform", "plan"}
2024-02-01T13:50:45.927-0500 [DEBUG] Attempting to open CLI config file: /Users/whittonb/.terraformrc
2024-02-01T13:50:45.927-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2024-02-01T13:50:45.927-0500 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins

Keybase proof

I hereby claim:

  • I am noslouch on github.
  • I am noslouch (https://keybase.io/noslouch) on keybase.
  • I have a public key ASCvTNY7XiiEJw57LPG4a51T-UfTV8owyR0FZ8qZKs4Uago

To claim this, I am signing this object:

import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
messages: null,
init() {
this._super(...arguments);
this.set('messages', []);
},
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
@noslouch
noslouch / components.my-button.js
Last active June 19, 2018 18:41
enter inside form sends click event
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
foo() {
this.set('bar', 'set from an enter press');
}
}
});

Keybase proof

I hereby claim:

  • I am noslouch on github.
  • I am noslouch (https://keybase.io/noslouch) on keybase.
  • I have a public key ASD1WiC6qkS-XRh_jeOEp0-nqM5p04aSwoDyydr7vGVNqAo

To claim this, I am signing this object:

@noslouch
noslouch / components.my-component.js
Last active January 30, 2017 20:36
removing action in dom
import Ember from 'ember';
export default Ember.Component.extend({
});
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@noslouch
noslouch / controllers.application.js
Created June 21, 2016 03:50
complex computed props
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
someVal: 'foo',
oneWayComputed: Ember.computed.oneWay('someVal'),
complexComputed: Ember.computed('someVal', {
get() {
return this.get('someVal');
},
@noslouch
noslouch / components.my-component.js
Last active April 6, 2016 19:01
isStream Property
import Ember from 'ember';
export default Ember.Component.extend({
isStream: true
});