Pierre-Yves Landuré
Pierre-Yves Landuré
bug: `home.sessionVariables` and `bash.sessionVariables` end up serving the same purpose: `.profile`
I've just commented here The relevant part of the comment for this issue is: `programs.bash.sessionVariables` are written to `~/.profile`. They should be written to `~/.bash_profile`, to only be set for...
bug: `home.sessionVariables` and `bash.sessionVariables` end up serving the same purpose: `.profile`
Thank you, so, the answer would be to: 1. write `programs.bash.sessionVariables` to `.bashrc`, using the same logic as `programs.bash.initExtra`. 2. add `if [ -f ~/.bashrc ]; then . ~/.bashrc; fi`...
I don't believe it easy, but with things like Tinted Theming and Stylix out there, it would be a nice feature. The theme should be configurable, like Bat or Zellij...
The documentation is missing information on domain inspection APIs configuration. It requires a [Shodan](https://www.shodan.io/) account, or a [DNSDumpster.com](https://dnsdumpster.com/) account (free): ```env # DL_SHODAN_URL=https://api.shodan.io/dns/domain/ # SHODAN_TOKEN= DL_DNSDUMP_URL=https://api.dnsdumpster.com/domain/ DNS_DUMPSTER_TOKEN= # Preferred subdomain...
Thank you, after upgrading `phpstan/phpdoc-parser`, the issue is fixed. ``` Upgrading phpstan/phpdoc-parser (1.33.0 => 2.3.0) ``` It stays a bug, since `symfony/type-info` doesn't requires sufficiently recent version of `phpstan/phpdoc-parser` and...
I'm confronted to a related issue, but with the inverse need. with this markdown: ```md > some text \[…\] - [My link \[some author name\]](http://link.com). ``` mdformat removes the `\`:...
Yes it's somewhat related. But this is a simple filter on tag, not a full search.
The descriptions in the detailed list mode are limited to 2 lines by CSS. Descriptions with more length are visually hidden to visitors.
Watchtower can run an upgrade script after automatically updating a container. I don't know about laravel, but most symfony project I've seen run migrations and cache warmup at container startup....
Hello, I've worked on a container post-update script for LinkAce container. I bind mount an executable file with these contents on `/usr/local/bin/linkace-post-update` ```bash #!/usr/bin/env ash # /usr/local/bin/linkace-post-update # Upgrade Linkace...