snow.sui

2.1K posts

snow.sui banner
snow.sui

snow.sui

@wp3553823

Plume Goon

Hong Kong Katılım Ekim 2015
2.3K Takip Edilen850 Takipçiler
Sabitlenmiş Tweet
snow.sui
snow.sui@wp3553823·
谷歌浏览器多开分身方法 我的电脑是MAC M1的,结合大佬们的攻略,我研究了一下Google实例多开,可能有些撸友还不太清楚大佬的攻略,所以我这里详细的写一份非常简单的小白也没问题的公路,使用命令“谷歌多开”。先看完不要着急开始,我会把所有小白关心的问题都写在下面,以下是步骤详解: 一、创建多个实例 1.进入你想要安装的目录创建文件夹 mkdir -p Chrome_Profiles/Profile_{1..10} 2.在你刚刚的目录创建启动脚本,然后编写这个文件 touch chrome_profiles.sh 然后你能看到生成了这个文件,然后“右键”点击这个文件,“文本编辑”打开,把以下内容复制进去后,关闭。(注意第一参数那里的XX是你的路径,查看路径使用pwd,或者右键点击图中这里复制) #!/bin/bash # 定义参数 APPS_DIR="/Users/XX/Chrome/Chrome实例应用" # 生成的独立应用存放目录 MAX_PROFILES=10 # 检查输入参数 if [ $# -eq 0 ]; then echo "错误,好好检查路径是否一致" exit 1 fi input="$1" # 解析输入(支持逗号和范围) IFS=',' read -ra PARTS <<< "$input" declare -a PROFILES_TO_OPEN=() for part in "${PARTS[@]}"; do if [[ "$part" =~ ^[0-9]+(-[0-9]+)?$ ]]; then if [[ "$part" == *"-"* ]]; then start=$(cut -d '-' -f1 <<< "$part") end=$(cut -d '-' -f2 <<< "$part") if [ "$start" -gt "$end" ]; then echo "错误:范围 $part 的起始值大于结束值" exit 1 fi for ((i=start; i<=end; i++)); do PROFILES_TO_OPEN+=("$i") done else PROFILES_TO_OPEN+=("$part") fi else echo "错误:无效的输入部分 '$part'" exit 1 fi done # 去重并验证范围 PROFILES_TO_OPEN=($(printf "%s\n" "${PROFILES_TO_OPEN[@]}" | sort -nu)) for i in "${PROFILES_TO_OPEN[@]}"; do if [ "$i" -lt 1 ] || [ "$i" -gt "$MAX_PROFILES" ]; then echo "错误:实例编号 $i 超出 1-$MAX_PROFILES 的范围" exit 1 fi done # 通过 .app 文件启动实例 for i in "${PROFILES_TO_OPEN[@]}"; do APP_PATH="$APPS_DIR/Chrome实例$i.app" if [ -d "$APP_PATH" ]; then echo "正在启动实例 $i..." open "$APP_PATH" # 日志记录(按日期分割日志) LOG_FILE="/tmp/chrome_profiles_$(date '+%Y%m%d').log" echo "$(date '+%Y-%m-%d %H:%M:%S') - 实例 $i 已启动" >> "$LOG_FILE" else echo "错误:应用 $APP_PATH 不存在" # 记录错误日志 LOG_FILE="/tmp/chrome_profiles_$(date '+%Y%m%d').log" echo "$(date '+%Y-%m-%d %H:%M:%S') - 错误:应用 $APP_PATH 不存在" >> "$LOG_FILE" fi done echo "已启动实例:${PROFILES_TO_OPEN[*]}" 以上是内容,不要复制本段话。 3.创建生成Google的实例文件create_chrome_apps.sh touch create_chrome_apps.sh 同样的方法,文本编辑点开粘贴复制以下内容: #!/bin/bash # 定义配置 CHROME_PROFILES_DIR="/Users/XX/Chrome/Chrome_Profiles" # 你的配置目录 TOTAL_INSTANCES=10 # 实例总数 APPS_OUTPUT_DIR="/Users/XX/Chrome/Chrome实例应用" # 生成的独立应用存放目录 # 清理并重建输出目录 rm -rf "$APPS_OUTPUT_DIR" mkdir -p "$APPS_OUTPUT_DIR" # 生成独立应用 for i in $(seq 1 $TOTAL_INSTANCES); do APP_NAME="Chrome实例$i" APP_PATH="$APPS_OUTPUT_DIR/$APP_NAME.app" # 创建应用结构 mkdir -p "$APP_PATH/Contents/MacOS" mkdir -p "$APP_PATH/Contents/Resources" # 生成启动脚本 cat < "$APP_PATH/Contents/MacOS/ChromeLauncher" #!/bin/bash PROFILE_DIR="$CHROME_PROFILES_DIR/Profile_$i" mkdir -p "\$PROFILE_DIR" exec open -na "Google Chrome" --args --user-data-dir="\$PROFILE_DIR" EOF chmod +x "$APP_PATH/Contents/MacOS/ChromeLauncher" # 生成 Info.plist 文件(定义应用名称和图标) cat < "$APP_PATH/Contents/Info.plist" apple.com/DTDs/PropertyL…"> CFBundleExecutable ChromeLauncher CFBundleName $APP_NAME CFBundleIdentifier com.chrome.instance.$i CFBundleIconFile AppIcon EOF # 复制 Chrome 图标(可选) cp "/Applications/Google Chrome.app/Contents/Resou…" "$APP_PATH/Contents/Resources/AppIcon.icns" echo "已生成应用: $APP_NAME.app" done echo "所有独立应用已生成到: $APPS_OUTPUT_DIR" 4.同样在目录中创建“关闭”的脚本,当然你可以一个一个关闭,就不需要这一步。 touch close_chrome_profiles.sh 接着“文本编辑”打开后,粘贴以下内容: #!/bin/bash CHROME_PROFILES_DIR="/Users/XX/Chrome/Chrome_Profiles" MAX_PROFILES=10 # 实例数量 if [ $# -eq 0 ]; then echo "错误,好好检查路径是否统一" exit 1 fi input="$1" if [ "$input" == "all" ]; then pkill -f "Google Chrome.*--user-data-dir=.*/Profile_" echo "已关闭所有 Chrome 实例" exit 0 fi IFS=',' read -ra PARTS <<< "$input" declare -a PROFILES_TO_CLOSE=() for part in "${PARTS[@]}"; do if [[ "$part" =~ ^[0-9]+(-[0-9]+)?$ ]]; then if [[ "$part" == *"-"* ]]; then start=$(cut -d '-' -f1 <<< "$part") end=$(cut -d '-' -f2 <<< "$part") if [ "$start" -gt "$end" ]; then echo "错误:范围 $part 的起始值大于结束值" exit 1 fi for ((i=start; i<=end; i++)); do PROFILES_TO_CLOSE+=("$i") done else PROFILES_TO_CLOSE+=("$part") fi else echo "错误:无效的输入部分 '$part'" exit 1 fi done PROFILES_TO_CLOSE=($(printf "%s\n" "${PROFILES_TO_CLOSE[@]}" | sort -nu)) for i in "${PROFILES_TO_CLOSE[@]}"; do if [ "$i" -lt 1 ] || [ "$i" -gt "$MAX_PROFILES" ]; then echo "错误:实例编号 $i 超出 1-$MAX_PROFILES 的范围" exit 1 fi done for i in "${PROFILES_TO_CLOSE[@]}"; do pids=$(pgrep -f "Google Chrome.*--user-data-dir=.*/Profile_$i(\s|$)") if [ -n "$pids" ]; then echo "正在关闭实例 $i (PID: $pids)..." kill -9 $pids else echo "警告:实例 $i 未在运行" fi done echo "操作完成!" 以上是脚本内容,不要复制本段话。 如果你按照以上方法,那到这里就算完成了。
snow.sui tweet mediasnow.sui tweet media
中文
2
2
11
2.7K
snow.sui
snow.sui@wp3553823·
@windyapp_co Your forecasting software is becoming increasingly inaccurate. The forecast called for strong winds, but upon arriving at the site, it was calm and still. The level of inaccuracy is significant!
English
1
0
0
10
Windy.app
Windy.app@windyapp_co·
🚨 Gale Warning in effect for the coastal waters of New Jersey and Delaware! 🚨 Timing: From 6 AM to midnight EST on March 5, 2025.​ Forecasted Conditions: Winds: South winds 25–35 knots with gusts up to 45 knots. Seas: 7–12 feet. These hazardous conditions could capsize or damage vessels and reduce visibility. Mariners are advised to remain in port, seek safe harbor, or secure their vessels Stay updated with Windy.app for real-time weather information
English
2
0
1
1K
Thousands Network
Thousands Network@Thousandsxyz·
$ WC LISTING: LIVE Uniswap Pool: app.uniswap.org/explore/pools/… Tokens are now Transferable CA: 0x0290a3256c939F3Acb6CA5465154d94133DC5e02 Remain vigilant during Launch. Please come to Discord if you have any questions!
Thousands Network tweet media
English
84
14
68
60.2K
snow.sui
snow.sui@wp3553823·
@Greta0086 我被wc这个垃圾骗了4年多的时间和几千U…这个垃圾是怎么获得帕拉丁这些投资的啊,真的是明🈹了
中文
1
0
1
448
snow.sui
snow.sui@wp3553823·
@doncare79 @oya1su @goldchainrank 你自己一个人玩怎么玩得下去,也不联系人、联系投资或者联系有技术的来和你一起做,encto和网站有什么捆绑,我不知道你是否有想过。还有持币的也不知道你在搞些什么,那你怎么持续下去?
中文
0
0
0
36
我叫美元
我叫美元@doncare79·
@oya1su @goldchainrank 没放弃但是基建没有投资很难一只持续下去,我自己也不是财富自由的人TAT,这个就是看龙虾很火爆,给消耗token增加了一些趣味性而已。
中文
1
0
1
61
我叫美元
我叫美元@doncare79·
金钳排行 @goldchainrank 前100个用户注册可以领取OG龙虾,让每一枚Token的消耗被赋予意义和价值,边玩龙虾边解锁不同厂商的皮肤,还有全球排名和地区排名,现在这么多线下小龙虾聚会,掏出的皮肤就证明你消耗了多少不同的Token,带一点点虚荣心的龙虾周边产品。项目源码都是开源的,不放心的可以丢给AI检查一下,把网站告诉你的Openclaw它就会帮你去领取皮肤了,OG皮肤是手里多一块Rolex的手表,限量的噢,我已经去领取来一只。大表哥你不是在玩龙虾吗?来领取一只吧 @cz_binance goldchain.club #Openclaw #龙虾
我叫美元 tweet media我叫美元 tweet media
日本語
1
0
1
699
snow.sui
snow.sui@wp3553823·
@BTClianba 几乎是合约小白,但看到好多贴都这么写,然后我又忍不住都去试了下,还是有个问题,10美金怎么开100倍杠杆?
中文
0
0
0
813
stacks.btc
stacks.btc@Stacks·
#2 ​Best Community Builder Being a builder doesn't just mean being a developer. Who has supported the Stacks community the most this year? (Please reply directly to this post with your nominations, not to the end of the thread)
English
67
3
38
2.6K
stacks.btc
stacks.btc@Stacks·
Stackers, it's that time of year... And we need your help! The 2025 Stackies Annual Community Awards are quickly approaching and we need your help to narrow down the main contenders. Please reply to each post below with your top selections for each category!
stacks.btc tweet media
English
30
46
166
17.9K
snow.sui retweetledi
Karrier One
Karrier One@karrier_one·
We do it ALL in one place: • Send money • Message and call • Manage eSIMs • Control identity • Use biometrics Stay connected with Karrier One
Karrier One tweet media
English
19
45
136
2.9K
snow.sui
snow.sui@wp3553823·
Congratulations on the successful conclusion of @StandX_Official's Pre-Deposit Campaign. Congratulations also to @StandX_Official's USDC/DUSD pair, which ranked first on Pancakeswap, reflecting users' optimism about Standx's development.
snow.sui tweet mediasnow.sui tweet media
English
0
0
0
46
snow.sui retweetledi
Pawtato Finance | Sui
Pawtato Finance | Sui@PawtatoFinance·
🔥 $𝗧𝗔𝗧𝗢 𝗶𝘀 𝗟𝗜𝗩𝗘 🔥 The ticker that’s set to ignite the future of the Pawtato ecosystem! 𝗢𝗳𝗳𝗶𝗰𝗶𝗮𝗹 𝗖𝗼𝗶𝗻 𝗔𝗱𝗱𝗿𝗲𝘀𝘀: 0x04deb377c33bfced1ab81cde96918e2538fe78735777150b0064ccf7df5e1c81::tato::TATO 𝘑𝘰𝘪𝘯 𝘵𝘩𝘦 𝘮𝘰𝘷𝘦𝘮𝘦𝘯𝘵, 𝘦𝘢𝘳𝘯 𝘳𝘦𝘸𝘢𝘳𝘥𝘴, 𝘢𝘯𝘥 𝘧𝘶𝘦𝘭 𝘵𝘩𝘦 𝘳𝘪𝘴𝘦. 🚀 🔗 pawtato.app/tge
Pawtato Finance | Sui tweet media
English
1.5K
1.2K
1.9K
86.2K
snow.sui retweetledi
Pawtato Finance | Sui
Pawtato Finance | Sui@PawtatoFinance·
𝗧𝗵𝗲 𝗻𝗲𝘄 𝗲𝗿𝗮 𝗯𝗲𝗴𝗶𝗻𝘀. ⚔️ The $𝗧𝗔𝗧𝗢–𝗨𝗦𝗗𝗖 pool on @Turbos_finance has rewards waiting, with 10M TATO and 10M uTATO allocated for incentives. Provide liquidity and earn TATO and uTATO as you help ignite the Pawtato ecosystem. 🔗 pawtato.app/TATO-pool
Pawtato Finance | Sui tweet media
English
221
240
438
12K
snow.sui retweetledi
Pawtato Finance | Sui
Pawtato Finance | Sui@PawtatoFinance·
$𝗧𝗔𝗧𝗢 𝗶𝘀 𝗻𝗼𝘄 𝗩𝗲𝗿𝗶𝗳𝗶𝗲𝗱 𝗼𝗻 @SlushWallet! ✅ This ensures $TATO appears correctly across the wallet, so users will see the proper token information and be able to swap $TATO once it goes live! Another solid step toward a secure, reliable, and growing Pawtato ecosystem! 🚀
Pawtato Finance | Sui tweet media
English
2K
1.7K
2.4K
44.6K
Pawtato Finance | Sui
Pawtato Finance | Sui@PawtatoFinance·
$𝗧𝗔𝗧𝗢 𝗶𝘀 𝗻𝗼𝘄 𝗼𝗻 @coingecko! 🔥 Add it to your watchlist ahead of tomorrow’s TGE and stay ready for launch. 🚀 𝘊𝘩𝘦𝘤𝘬 𝘪𝘵 𝘰𝘶𝘵: 🔗 coingecko.com/en/coins/pawta… 📆 𝗧𝗚𝗘: 𝗡𝗼𝘃𝗲𝗺𝗯𝗲𝗿 𝟭𝟱𝘁𝗵 𝗮𝘁 𝟮𝗣𝗠 𝗨𝗧𝗖
Pawtato Finance | Sui tweet media
English
1.9K
1.5K
2.2K
43.1K