This file contains hidden or 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
2025-04-25T19:14:50.109+0200 [INFO] OpenTofu version: 1.9.1 | |
2025-04-25T19:14:50.109+0200 [DEBUG] using github.com/hashicorp/go-tfe v1.36.0 | |
2025-04-25T19:14:50.109+0200 [DEBUG] using github.com/opentofu/hcl/v2 v2.0.0-20240814143621-8048794c5c52 | |
2025-04-25T19:14:50.109+0200 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
2025-04-25T19:14:50.109+0200 [DEBUG] using github.com/zclconf/go-cty v1.14.4 | |
2025-04-25T19:14:50.109+0200 [INFO] Go runtime version: go1.22.12 | |
2025-04-25T19:14:50.109+0200 [INFO] CLI args: []string{"tofu", "init"} | |
2025-04-25T19:14:50.109+0200 [TRACE] Stdout is a terminal of width 236 | |
2025-04-25T19:14:50.109+0200 [TRACE] Stderr is a terminal of width 236 | |
2025-04-25T19:14:50.109+0200 [TRACE] Stdin is a terminal |
This file contains hidden or 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
# remap prefix | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# use send-prefix to pass C-a through to application | |
bind C-a send-prefix | |
# reload ~/.tmux.config with <prefix>r | |
bind r source-file ~/.tmux.conf \ |
This file contains hidden or 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
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# ansible | |
ANS_VAULT= | |
# autostart tmux | |
INIT_TMUX= | |
ALLOW_MULTIPLE_TMUX= |
This file contains hidden or 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
try | |
:set t_Co=256 | |
:set background=dark | |
:colorscheme desertEx " http://www.vim.org/scripts/script.php?script_id=1693 | |
catch | |
endtry | |
:let mapleader = "," | |
syntax on " enable syntax highlighting |
This file contains hidden or 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
using System; | |
using System.Globalization; | |
using System.Reflection; | |
using System.Web.Mvc; | |
public class FloatingPointNumberModelBinder : DefaultModelBinder | |
{ | |
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) | |
{ | |
if (bindingContext.ModelType != typeof(float) |