Set up an INK project
# Create a folder
mkdir ink3
# Go to the folder
cd ink3
# Create the ink project
# Create a folder
mkdir ink3
# Go to the folder
cd ink3
# Create the ink project
https://auto.gluon.ai/stable/index.html#
pip3 install -U pip
pip3 install -U setuptools wheel
# CPU version of pytorch has smaller footprint - see installation instructions in
# pytorch documentation - https://pytorch.org/get-started/locally/
/* eslint-disable @typescript-eslint/no-var-requires */ | |
const { BlockList } = require("net"); | |
const twColors = require("tailwindcss/colors"); | |
const defaultTheme = require("tailwindcss/defaultTheme"); | |
/** | |
* Material Design breakpoints | |
* @see https://material.io/design/layout/understanding-layout.html#layout-anatomy | |
* @see https://tailwindcss.com/docs/breakpoints | |
*/ |
# ok
3 > 2 > 1
1 < 2 < 3
# not
1 < 3 > 2
# not
#https://unix.stackexchange.com/a/377601/334761 | |
# Get the device id with "xinput" | |
# Look for "Wacom Intuos PT S Pen stylus" | |
# Get the ID value. e.g.) id=14 | |
# pass the ID (14 for mine) as "device" in | |
# xinput MAN page: https://linux.die.net/man/1/xinput | |
xinput set-prop 14 "Coordinate Transformation Matrix" 1 0 0 0 1 0 0 0 1 | |
# default |
let bt = document.createElement('button') | |
bt.appendChild(document.createTextNode('Close')) | |
bt.addEventListener('click', function(e) { | |
this.parentElement.style.display = 'none'; | |
}); | |
// Subscriptions panel | |
let subEl = document.querySelector("#sections > ytd-guide-section-renderer:nth-child(2)") | |
subEl.prepend(bt) |
{ | |
"arrowParens": "always", | |
"bracketSpacing": true, | |
"embeddedLanguageFormatting": "auto", | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxBracketSameLine": false, | |
"jsxSingleQuote": false, | |
"printWidth": 100, | |
"proseWrap": "preserve", |
title | date |
---|---|
How to add Tailwind CSS for Docusaurus |
2021-06-22 |
npx @docusaurus/init@latest init site-name class
gsettings set org.gnome.shell.extensions.dash-to-dock dock-position BOTTOM | |
gsettings set org.gnome.shell.extensions.dash-to-dock dock-position TOP | |
gsettings set org.gnome.shell.extensions.dash-to-dock dock-position RIGHT | |
gsettings set org.gnome.shell.extensions.dash-to-dock dock-position LEFT |