伟大伟大

摘要: URI(统一资源标识符)在网络世界中无处不在,而 JavaScript 提供了 encodeURI() 和 encodeURIComponent() 两个函数来处理 URI 的编码问题。虽然它们都用于编码,但作用对象和编码范围却大相径庭。理解它们的区别,能帮助我们避免在 URL 处理中踩坑。 enc 阅读全文
posted @ 2025-06-15 23:24 wooHsi 阅读(34) 评论(0) 推荐(0)
摘要: 标题:Tailwind CSS技巧:为何flex-1和truncate一起用时会失效?解密min-w-0 引言 在日常使用 Tailwind CSS 进行 Flexbox 布局时,我们经常会遇到一个经典场景:一个固定大小的元素(如用户头像)和另一个需要占据剩余空间的弹性元素(如用户信息)。我们希望弹 阅读全文
posted @ 2025-06-13 22:58 wooHsi 阅读(2) 评论(0) 推荐(0)
摘要: static 块级元素默认就是静态定位,在文档流中从上到下堆叠。 relative 相对元素在原文档流位置重新定位,元素原来占据的空间没有动,其他元素也不会动。 <div> <div>helllllllllllllll</div> <div class="relative top-4 left-4 阅读全文
posted @ 2025-05-27 00:08 wooHsi 阅读(16) 评论(0) 推荐(0)
摘要: 命名返回函数,注意defer可以修改命名返回变量(命名返回变量的作用域为整个函数作用域);匿名返回则会提前创建一个临时变量,并将return的变量值赋值给临时变量,defer中无法改变临时变量的值。 不要在循环中使用defer,因为defer的内容会入栈,如果循环次数多会造成比较大开销。 defer 阅读全文
posted @ 2025-03-25 23:59 wooHsi 阅读(13) 评论(0) 推荐(0)
摘要: 查看最新版 https://go.dev/doc/install 现在最新版是1.24.1 go install golang.org/dl/go1.24.1@latest go.124.1 download 不出意外应该会安装在/Users/$YOU/sdk/go1.24.1 查一下老版本go路径 阅读全文
posted @ 2025-03-25 21:32 wooHsi 阅读(64) 评论(0) 推荐(0)
摘要: 以下是50个常见水果的英语单词、美式音标及中文意思,结合多份证据整理并核实,部分存在矛盾的翻译已剔除或修正: Apple [ˈæpəl] 苹果 Banana [bəˈnænə] 香蕉 Orange [ˈɔrɪndʒ] 橙子/橘子 Pear [pɛr] 梨 Grape [ɡreɪp] 葡萄 Straw 阅读全文
posted @ 2025-02-14 16:49 wooHsi 阅读(72) 评论(0) 推荐(0)
摘要: Create project and install dependencies mkidr my-app && cd my-app npm init -y npm i -D @babel/cli @babel/core @babel/node @babel/preset-env dotenv npm 阅读全文
posted @ 2024-07-17 10:28 wooHsi 阅读(3) 评论(0) 推荐(0)
摘要: 1. config ~/.tmux.conf set -g mouse on set -g mode-keys vi bind-key -T copy-mode-vi v send-keys -X begin-selection bind-key -T copy-mode-vi y send-key 阅读全文
posted @ 2024-07-16 10:49 wooHsi 阅读(38) 评论(0) 推荐(0)
摘要: # Get the UTF-8 encoded hexadecimal representation of the specified character '中' echo -n '中' | xxd -p # Convert UTF-8 encoded hexadecimal back to the 阅读全文
posted @ 2024-02-01 11:39 wooHsi 阅读(6) 评论(0) 推荐(0)
摘要: To completely delete any version of MongoDB from Mac, follow the below steps on the terminal: Check if any mongo service is running: launchctl list | 阅读全文
posted @ 2023-07-28 10:27 wooHsi 阅读(55) 评论(0) 推荐(0)