App Name | Description | Homebrew Command | Category |
---|---|---|---|
--- Reinstall --- | --- | --- | --- |
Raycast | Productivity launcher & command palette | brew install --cask raycast |
Reinstall |
Warp | Modern terminal emulator | brew install --cask warp |
Reinstall |
Postman | API development platform | brew install --cask postman |
Reinstall |
Telegram Desktop | Desktop messaging app | brew install --cask telegram-desktop |
Reinstall |
Tencent Meeting | Video conferencing tool (VooV Meeting) | brew install --cask tencent-meeting |
Reinstall |
Visual Studio Code | Code editor |
This document lists useful free and open-source applications from your Homebrew installation script, organized by type.
App Name | Description | Homebrew Command |
---|---|---|
Applite | A user-friendly GUI for managing and updating applications | brew install --cask applite |
Blender | Professional 3D creation suite for modeling, animation, and rendering | brew install --cask blender |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Required taps | |
TAPS=( | |
bookstairs/tap | |
homebrew/services | |
lijy91/biyi | |
quackduck/tap | |
tabbyml/tabby | |
ygsgdbd/tap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
import os | |
import re | |
# 设置图片文件夹路径 | |
image_folder = 'path_to_your_images' # 替换为你的文件夹路径 | |
output_pdf = 'output.pdf' # 输出的PDF文件名 | |
# 正则提取括号内的数字 |
This script makes the variable names clearer and adds a confirmation message at the end. You can easily change the branch names by modifying the variables at the top.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 定义一个异步函数来处理删除操作 | |
async function clearCart() { | |
// 使用更通用的属性选择器来找到所有商品项 | |
const cartItems = document.querySelectorAll('[class*="trade-cart-item-info"]'); | |
let deletedCount = 0; | |
const totalItems = cartItems.length; | |
console.log(`找到 ${totalItems} 个商品项`); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# can't use mem_limit in a 3.x docker-compose file in non swarm mode | |
# see https://github.com/docker/compose/issues/4513 | |
version: "2.4" | |
services: | |
whoogle-search: | |
image: ${WHOOGLE_IMAGE:-benbusby/whoogle-search:0.9.3} | |
container_name: whoogle-search | |
restart: unless-stopped | |
pids_limit: 50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update Homebrew | |
echo "Updating Homebrew..." | |
brew update | |
# Add necessary taps | |
echo "Adding required taps..." | |
brew tap homebrew/cask-versions | |
brew tap homebrew/cask-fonts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to configure conda settings | |
echo "Starting conda configuration..." | |
# Set proxy servers | |
conda config --set proxy_servers.http http://127.0.0.1:7890 | |
conda config --set proxy_servers.https http://127.0.0.1:7890 | |
# Set default channel |
NewerOlder