ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    iTerm2 使用 Shell Integration

    Jul 26, 20222 min read

    Marks

    按 Cmd-Shift-Up↑ 或者 Cmd-Shift-Down↓ 按键.

    可以显示输入命令的地方。

    查看历史命令

    Shift + Cmd + ;

    自动补全

    Cmd-;

    显示最近的历史目录

    Cmd-Opt-/

    相关文章

    How to slove "Your project requires a newer version of the Kotlin Gradle plugin." ?

    To resolve the "Your project requires a newer version of the Kotlin Gradle plugin" issue, update the Kotlin Gradle plugin version in the build.gradle file, save it, restart the IDE, and rebuild the project.

    JS 获取当前浏览器的名称

    可以使用 `navigator.userAgent` 属性结合 JavaScript 函数来识别和打印出当前浏览器的名称。

    如何查看 git push 的详细日志

    使用命令`git log --graph --abbrev-commit --decorate --date=relative --all -n 10`可以查看近十次git提交的详细日志,包括哈希值、作者、日期、消息及提交关系图,并可根据需求调整参数。

    如何使用meter标签增强密码安全性?

    使用meter标签和JavaScript脚本实现密码强度实时检测,通过密码长度、大小写字母及数字的包含情况来动态显示密码的安全等级。

    React 类型 JSX.Element React.ReactElement 的区别

    `JSX.Element` 和 `React.ReactElement` 在 TypeScript 中都是用于表示 JSX 元素类型的别名和接口,且它们是等价的。