该工具用于将大型 CSV 文件切割为更小的部分,以便更轻松地导入到数据库中。支持的 CSV 文件包括评分、标签、链接和电影信息。该工具旨在提高数据处理的效率和便捷性。
- 自动切割大型 CSV 文件,减少导入时的负担。
- 为每个 CSV 文件添加适当的表头。
The purpose of this script is to help users remove redundant network adapter entries, particularly the frequently appearing duplicates like "WLAN 2," "WLAN 3," "Local Area Connection 2," "Local Area Connection 3," etc. These unnecessary network adapter entries often affect system network management and stability, especially when devices are frequently connected and disconnected. This script allows users to easily remove these entries and resolve the frustration of OCD (Obsessive-Compulsive Disorder) when it comes to network configurations.
Do it:
usb in:
Ventura docs for M2 Macs in this comment: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd?permalink_comment_id=4555340#gistcomment-4555340
Old Monterey docs in this old revision: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd/32c410e3a1de73539c76fa13ea5486569c4e0c5d
Solution for Sonoma: https://gist.github.com/sghiassy/a3927405cf4ffe81242f4ecb01c382ac
| name: PR 预处理 | |
| on: | |
| push: | |
| branches: | |
| - 'feature/**' | |
| permissions: | |
| pull-requests: write | |
| jobs: |
| name: 编译测试 | |
| # 该脚本仅在 PR MERGE 的时候进行测试,不建议 将测试结果上传到 github | |
| # 可以通过变量来判断,比如 PR close 的时候 发布 github release & tag | |
| on: | |
| pull_request: | |
| branches: | |
| - master # 正式版本 | |
| types: | |
| - synchronize |
| if curl -s -m 5 -o /dev/null -w "%{http_code}" www.google.com | grep -q "200"; then | |
| echo "true" | |
| else | |
| echo "false" | |
| fi |
| FROM ubuntu:20.04 | |
| WORKDIR /app | |
| RUN apt-get -qq update \ | |
| && apt-get -qq upgrade \ | |
| && ln -sf "/usr/share/zoneinfo/${TZ}" /etc/localtime \ | |
| && echo "${TZ}" > /etc/timezone \ | |
| && ln -sf "$(which bash)" "$(which sh)" \ | |
| && apt-get -qq full-upgrade \ |
search unix2dos search dos2unix
[ apt | brew | yum ] install unix2dos| module testnetwork | |
| go 1.18 | |
| require github.com/fatih/color v1.13.0 | |
| require ( | |
| github.com/mattn/go-colorable v0.1.9 // indirect | |
| github.com/mattn/go-isatty v0.0.14 // indirect | |
| golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect |