Skip to content

Instantly share code, notes, and snippets.

View yasithdev's full-sized avatar
👨‍💻
Beginning is fun, but true mastery comes from countless hours of work.

Yasith Jayawardana yasithdev

👨‍💻
Beginning is fun, but true mastery comes from countless hours of work.
View GitHub Profile
// ==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=> {
@yasithdev
yasithdev / venv.sh
Last active June 26, 2021 04:26
venv | helper
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"