All Posts

  • Published on
    ## 使用 GNOME 自定义快捷键无法调起 flameshot gui 这个解决办法主要来自 https://github.com/flatpak/xdg-desktop-portal/issues/1070#issuecomment-1762884545 注意, 这里比较奇怪的是,直接在 GNOME 自定义 key binding 里面的 command 写上 `/usr/bin/env QT_QPA_PLATFORM=wayland flameshot gui` 是不会工作的. 必须通过 shell 脚本执行。暂时不知道原因。 ```shell sudo tee /usr/local/bin/flameshot-gui-workaround > /dev/null <<'EOF' ...
  • 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
    [evernote-backup](https://github.com/vzhd1701/evernote-backup) > Quickly sync all your notes into the SQLite database for backup. > Export all backed up notes in *.enex format, as notebooks or single notes. ```shell pip install --user evernote-backup ``` ## Step 1. Database initialization By default, it will prompt you to enter your account credentials. You can provide them beforehand with `--user` and `--password` options. ...
  • Published on
    https://github.com/timlrx/tailwind-nextjs-starter-blog https://github.com/timlrx/pliny <TOCInline toc={props.toc} asDisclosure /> ## migration repo ```shell git checkout -b hugo git push origin hugo git branch -D main git checkout --orphan main rm -rf ./* rm -rf .forestry .gitignore .gitmodules cp -rav ~/repo/blog/nextjs-ttys3.dev/* . ...
  • Published on
    主要是想从 crx 文件安装一个[扩展](https://github.com/pt-plugins/PT-Plugin-Plus/wiki/install-from-crx) 因为一些原因, 这个扩展可能在 Chrome Web Store 上架的并不是最新版本, 所以只能从 crx 文件安装最新的版本. 但是当前 Chrome 版本已经不再允许直接从 crx 文件安装扩展了 (这里只讨论正常的安装, 不考虑打开开发者模式从文件load的情况). 不过 Chrome 官方也并没有封死路, 只是需要在策略里面添加一个白名单, 才能允许从 crx 文件安装扩展. wiki里面只介绍了 Windows 下载改注册表的方法. ...