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
use std::sync::atomic::{AtomicUsize, Ordering}; | |
use std::sync::Arc; | |
pub enum RunFlagState { | |
Running = 0, | |
Paused = 1, | |
Cancelled = 2, | |
} | |
// TODO: is there some mechanism to automate this (nightly)? |
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
git config --global https.proxy http://127.0.0.1:1080 | |
git config --global https.proxy https://127.0.0.1:1080 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
npm config delete proxy |
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 664f364c5c08a4bcb51d8ebdda2f72b9e8f8d491 Mon Sep 17 00:00:00 2001 | |
From: Benjamin Morel <[email protected]> | |
Date: Sun, 17 Sep 2023 14:50:28 +0200 | |
Subject: [PATCH] Patch | |
--- | |
scripts/mysql/mysql_load_db.sh | 5 ++--- | |
1 file changed, 2 insertions(+), 3 deletions(-) | |
diff --git a/scripts/mysql/mysql_load_db.sh b/scripts/mysql/mysql_load_db.sh |