Skip to content

Instantly share code, notes, and snippets.

View jacmkno's full-sized avatar

jacmkno

View GitHub Profile
@jacmkno
jacmkno / Disable Youtube Shorts and Advertisement on Logo.css
Created November 20, 2023 18:05
Disable Youtube Shorts and Advertisement on Logo
ytd-reel-shelf-renderer.style-scope.ytd-item-section-renderer {}ytd-reel-shelf-renderer.style-scope.ytd-item-section-renderer {}ytd-reel-shelf-renderer.style-scope.ytd-item-section-renderer {}ytd-reel-shelf-renderer.style-scope.ytd-item-section-renderer {
display: none !important;
}
yt-icon#logo-icon:before {
content: 'Customized...';
position: absolute;
left:1em;
top:0.5em;
}
@jacmkno
jacmkno / Kraken Order Options.JSON
Last active January 2, 2024 07:19
Kareken Order Options
// Fields available to open a new position in kraken on a given asset
{
"Order Type": {
"Description": "Type of order for execution",
"Options": {
"Market": {
"description": "Executes at the current market price",
"fields": {}
},
"Limit": {
@jacmkno
jacmkno / docker-react-builder.sh
Last active August 27, 2024 02:42
Simple Docker React Bundler from package.json only
#!/bin/bash
# Put this file in your react project root.
IMAGE="node:lts-alpine"
OUTPUT_DIR="$(pwd)/../public/"
if [ "$1" == "help" ]; then
echo "Usage: $0 [command] [options]"
echo
echo "Commands:"
echo " none build once and shutdown the container."