This file contains 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
// ==UserScript== | |
// @name Convert URLs from plain text to links | |
// @namespace https://helloint.com | |
// @version 0.3 | |
// @description GitHub supports rendering CSV file, but it doesn't support links. This script will find the URLs and convert to links. | |
// @author Wayne Mao | |
// @match https://github.com/**/*.csv | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=web.app | |
// @grant none | |
// ==/UserScript== |
This file contains 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
// ==UserScript== | |
// @name Download PDF from smartedu | |
// @namespace https://helloint.com | |
// @version 0.2 | |
// @description Download PDF file from basic.smartedu.cn by press keyboard 'ddd' | |
// @author Wayne Mao | |
// @match https://basic.smartedu.cn/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=web.app | |
// @grant none | |
// ==/UserScript== |
This file contains 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
# If you have a GitLab group repos that need to migrate to GitHub, currently the best option is to create a GitHub org | |
GITLAB_GROUP_NAME=your_gitlab_group_name | |
GITLAB_DOMAIN=gitlab.com:22 | |
GITHUB_ORG_NAME=your_github_org_name | |
REPOS=("repo_1" "repo_2") | |
for REPO_NAME in ${REPOS[@]}; do | |
git clone --mirror ssh://git@$GITLAB_DOMAIN/$GITLAB_GROUP_NAME/$REPO_NAME.git $REPO_NAME/.git | |
cd $REPO_NAME | |
git config --bool core.bare false | |
git reset --hard |