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
================================================ | |
How to Get Involved with Airavata + Cybershuttle | |
================================================ | |
* Getting Started Guide - https://airavata.apache.org/get-involved.html | |
--------------------------- | |
Airavata - Repositories | |
--------------------------- | |
------------- |
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 Disable Bing Search Engine Scroll | |
// @namespace your-namespace | |
// @description Disables scrolling on the Bing search engine page to prevent accidental scrolling into the Bing chat feature. | |
// @match https://www.bing.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
window.addEventListener("wheel", e=> { |
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
venv() { | |
USAGE_INFO="Usage: venv [ -h | create [ ENV_NAME [ --overwrite ] ] | delete | activate | list | update ]" | |
DIR_ALREADY_EXISTS="A virtual environment / directory already exists with that name. Use --overwrite flag to overwrite it." | |
NOT_IN_VENV="This command is only allowed in a virtual environment." | |
VENV_DIR_NOT_SET="VENV_DIR environment variable is not set." | |
VENV_PYVER_NOT_SET="VENV_PYVER environment variable is not set." | |
VENV_CREATED="Virtual environment created" | |
VENV_DELETED="Virtual environment deleted" |