Skip to content

Instantly share code, notes, and snippets.

@mtkennerly
mtkennerly / vagrant.log
Created March 1, 2017 01:27
Vagrant output: unable to set environment variables for Puppet provisioning
INFO global: Vagrant version: 1.9.2
INFO global: Ruby version: 2.2.5
INFO global: RubyGems version: 2.4.5.1
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.9.2\\bin\\vagrant"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_LOG="debug"
INFO global: VAGRANT_OLD_ENV_="ExitCode=00000000"
INFO global: VAGRANT_OLD_ENV_ALLUSERSPROFILE="C:\\ProgramData"
@mtkennerly
mtkennerly / vagrant.log
Created March 4, 2017 19:38
Vagrant: unable to set Salt pillar on Windows guest
INFO global: Vagrant version: 1.9.2
INFO global: Ruby version: 2.2.5
INFO global: RubyGems version: 2.4.5.1
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.9.2\\bin\\vagrant"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_LOG="debug"
INFO global: VAGRANT_OLD_ENV_="ExitCode=00000002"
INFO global: VAGRANT_OLD_ENV_ALLUSERSPROFILE="C:\\ProgramData"
@mtkennerly
mtkennerly / Vagrantfile
Created April 16, 2017 04:23
Salt TypeError when removing a group on Windows Server 2012 R2
Vagrant.configure("2") do |config|
config.vm.box = "opentable/win-2012r2-standard-amd64-nocm"
config.vm.synced_folder "salt_srv/salt", "/srv/salt"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
end
config.vm.provision "file" do |file|
file.source = "salt_srv/minion"
@mtkennerly
mtkennerly / Cargo.toml
Created July 7, 2020 02:12
Iced ignores some commands in Command::batch if they finish too fast
[package]
name = "repro"
version = "0.1.0"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2018"
[dependencies]
# iced = "0.1.1"
iced = { git = "https://github.com/hecrj/iced" }
@mtkennerly
mtkennerly / Cargo.toml
Last active July 10, 2020 11:12
Panic in Iced when programmatically modifying text with an active selection and immediately pasting
[package]
name = "paste-panic"
version = "0.1.0"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2018"
[dependencies]
# iced = "0.1.1"
# iced_native = "0.2.2"
@mtkennerly
mtkennerly / Cargo.toml
Created July 18, 2020 00:48
Iced Container border not being shown
[package]
name = "repro"
version = "0.1.0"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2018"
[dependencies]
# iced = "0.1.1"
iced = { version = "0.1.1", rev = "4030326a352c365a282980aa2a37d549f4b659ae", git = "https://github.com/hecrj/iced" }
@mtkennerly
mtkennerly / Cargo.toml
Created July 18, 2022 15:43
Iced 0.4.0 ignores `max_height`
[package]
name = "repro-max-height"
version = "0.1.0"
edition = "2021"
[dependencies]
iced = "0.4.0"
@mtkennerly
mtkennerly / Cargo.toml
Created July 19, 2022 06:28
Iced cdd3802 scrollable height + max_height
[package]
name = "repro-max-height"
version = "0.1.0"
edition = "2021"
[dependencies]
# iced = "0.3.0"
# iced = "0.4.0"
iced = { git = "https://github.com/iced-rs/iced.git", rev = "cdd3802" }
@mtkennerly
mtkennerly / Cargo.toml
Created August 3, 2022 00:52
Iced issue with container width+max_width
[package]
name = "repro-width-and-max"
version = "0.1.0"
edition = "2021"
[dependencies]
# iced = "0.4.2"
iced = { git = "https://github.com/iced-rs/iced.git", rev = "c44267b85f7aaa2997e3caf1323b837d95818c22" }
@mtkennerly
mtkennerly / Cargo.toml
Created August 3, 2022 00:58
Iced 0.4.2 issue with container width+max_width
[package]
name = "repro-width-and-max"
version = "0.1.0"
edition = "2021"
[dependencies]
iced = "0.4.2"
# iced = { git = "https://github.com/iced-rs/iced.git", rev = "c44267b85f7aaa2997e3caf1323b837d95818c22" }