Skip to content

Instantly share code, notes, and snippets.

View mamboer's full-sized avatar

Levin Wong mamboer

View GitHub Profile

在 TypeScript 和 JavaScript 中,?? 和 || 都是用于处理默认值的运算符,但它们的行为略有不同。

??(空值合并运算符, Nullish Coalescing Operator)

  • 用途:用于处理 null 或 undefined 的情况。
  • 行为:如果左侧操作数是 null 或 undefined,则返回右侧操作数;否则返回左侧操作数。
const value = someVariable ?? 'default value';
Tips on using NodeJS
@mamboer
mamboer / love-and-beloved-zh.md
Created August 12, 2024 07:54
Life Essay-随笔
🌲 An exploration of life's philosophy, personal growth, and self-actualization.
🌼 关于生活哲学、个人成长与自我实现的随笔/读书笔记。
@mamboer
mamboer / python-dotenv.md
Last active August 11, 2024 16:45
Python tutorials - Usage of pyenv along with virtualenv

如何将存放在.env中的GH_TOKEN传给build_readme.py脚本?

步骤一:安装 python-dotenv

首先,确保您已经安装了 python-dotenv 库。如果没有安装,可以使用以下命令进行安装:

pip install python-dotenv

步骤二:创建 .env 文件

@mamboer
mamboer / macos-terminal-themes
Created December 6, 2023 03:06
Mac - Terminal Themes
1. https://draculatheme.com/terminal
2. https://github.com/lysyi3m/macos-terminal-themes
@mamboer
mamboer / brain-waves.md
Last active August 14, 2024 06:50
makemusic

常见的脑波类型及其音乐频率范围

α波(Alpha Waves)

频率范围通常在8-14赫兹之间,与放松、冥想和轻度唤醒状态相关联。α波音乐旨在帮助人们达到放松的状态,提高专注力和创造力 。

β波(Beta Waves)

频率范围从13-30赫兹,与日常警觉、集中思考和活跃思维状态相联系。β波音乐可能用于提高注意力和处理任务的能力 。

@mamboer
mamboer / pandafan-reload-local-dev-page-loop.md
Created November 29, 2023 13:48
Pandafan 每隔 60 秒刷新本地开发的页面

背景

Mac 电脑,本地跑了一个 react app(http://localhost:3000) host 配置 prompt-dev.com, 指向 127.0.0.1 nginx 配置 prompt-dev.com 做了反向代理,指向 react app 的端口。

结果

浏览器访问 prompt-dev.com 的时候,每隔 60 秒刷新一次页面。

解决办法

@mamboer
mamboer / lofi-music-plugins.md
Last active November 29, 2023 08:30
Lofi Music Plugins(2023.12)
  1. Donutsaudio Lo-Fi Drums for Mac(低保真鼓插件)
  2. Lofi Panda
  3. Unison Lo-fi Drum and Melody
  4. F-AudioLabs 套装
  5. ArturiaFX Collection for Mac(音乐效果器合集)
  6. Rigid Audio Lofi Explorer Bundle for mac
@mamboer
mamboer / install-nginx-macos-80-port.md
Created November 28, 2023 14:01
Install nginx on macOS at port 80(2023.12)
@mamboer
mamboer / macOS-Software-list.md
Last active August 14, 2024 05:24
macOS 软件推荐 - Apple Silicon(2023.12)

系统增强工具

顾名思义,基本都是在系统已有的功能上进行增强,例如截图工具

homebrew–软件包管理

主页:brew.sh

官方安装方式:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"