Troubleshoot

  • Published on
    ## background recently I migrated my Blog from Hugo to [timlrx/tailwind-nextjs-starter-blog](https://github.com/timlrx/tailwind-nextjs-starter-blog) I deploy the blog via Netlify and serve it via Cloudflare proxy. ## how to see the problem open browser console, you'll see errros like this: ``` 4f0b14e9-f6a6045a21104f01.js:1 Uncaught Error: Minified React error #425; visit https://reactjs.org/docs/error-decoder.html?invariant=425 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. ...
  • Published on
    ```shell  ~/.ssh ❯ paru -Ss openssh | rg install core/openssh 8.8p1-1 [0B 5.90MiB] [Installed] ``` 如果你最近升级到了 openssh 8.8-p1 版, 你会发现连接某些之前连接得好好的服务器突然无法连接: > Unable to negotiate with x.x.x.x port 2222: no matching host key type found. Their offer: ssh-rsa 解决办法 ```shell ssh -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa user@myhost -p 2222 ...
  • Published on
    ## 解决办法 环境: `qt5-qtbase-devel` `5.13.2` @ Fedora 32 Workstation Edition `qt5-qtbase-devel` `5.11.1` @ CentOS Linux release 8.1.1911 首先检查`CONFIG`是不是包含`console`, 如果没有则加上 `CONFIG += console` 检查`$HOME/.config/QtProject/qtlogging.ini`文件(如果没有则创建)是否包含以下内容: ```ini [Rules] *.debug=true qt.*.debug=false ``` 重新运行Qt程序,就可以看到qDebug的输出了。 ...
  • Published on
    系统版本: `Fedora 32` Firefox版本: `76.0.1 (64-bit)` 我偶然发现一个页面bug。Chromium下是显示正常的: ![](option-background-color-chromium.jpg) 而Firefox下是这样的: ![](option-background-color-firefox-linux.jpg) 这个HTML代码看上去是没问题的: ```html <option style="background-color: black" value="Black">Black</option> <option style="background-color: sienna" value="Sienna">Sienna</option> ...