Torbjörn Gannholm
Torbjörn Gannholm
FWIW, I found a procedure to rotate the symmetric key that doesn't need poking at hidden git-crypt dependent files: 1. Delete .gitattributes files. This will unencrypt your secrets. 2. Stash...
Very much wanted!
I found a workaround so I can handle both docker and podman users: ``` host_gateway=$(podman network inspect -f "{{range .Subnets}}{{.Gateway}}{{end}}" podman 2>/dev/null || echo "host-gateway") docker run --add-host foobar:"$host_gateway" -it...
> > I found a workaround so I can handle both docker and podman users: > > ``` > > host_gateway=$(podman network inspect -f "{{range .Subnets}}{{.Gateway}}{{end}}" podman 2>/dev/null || echo...
Maybe "reverse string" should then be remade into "reverse array"? On Tue, 26 May 2020 at 17:25, Glenn Jackman wrote: > The micro-blog > > exercise deals with handling unicode...
The rendering is correct, the ring is attached to the 's' and covers the letter after the 's' On Tue, 26 May 2020 at 16:17, Sascha Mann wrote: > Could...
After considering the objections here, a good resolution to this would be to specify that the strings are 7-bit ASCII in the problem. It makes quite a difference in Julia,...
Hitting this as well
I have a situation with dereferencing values that currently involves a fair amount of duplication in several lexer modes. Consider the case of string interpolation, 'Hello $name;, you look good...