MacOS input source shortcuts started to conflict with vscode's CTRL+SPACE, making it stop to show suggestions. To fix disable these keyboard shortcuts in macos settings:
Select the previous input sourceSelect next source in Input menu
| // Place your key bindings in this file to override the defaults | |
| [ | |
| { | |
| "key": "alt+cmd+u", | |
| "command": "editor.action.transformToUppercase" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+u", | |
| "command": "editor.action.transformToLowercase" | |
| }, |
These tags directly influence the perceived quality, detail, and "finish" of the image.
| Modifier (Tag) | Description |
|---|---|
| "Magic" Tags | (Highest impact for Noobai/Illustrious) |
very awa |
(Noobai Specific) The most powerful tag, trained on the top 5% of aesthetically-rated images. |
masterpiece |
A classic, high-tier tag for high-quality, artistic output. |
best quality |
Similar to masterpiece, strongly pushes for a clean, well-rendered image. |
ffmpeg -i *.webm -bsf:v vp9_metadata=color_range=tv -c copy *.webmAdd \date{} to share/jupyter/nbconvert/templates/latex/base.text.j2 anywhere before /maketitle (e.g. before the title block)
If you want to control it using the notebook metadata, add this instead:
((* if nb.metadata.get('nodate', false) *))
\date{}
((* endif *))Code Puns
| echo "export GPG_TTY=$(tty)" >> ~/.zshrc | |
| echo "pinentry-program $(which pinentry-curses)" >> ~/.gnupg/gpg-agent.conf | |
| killall gpg-agent | |
| source ~/.zshrc | |
| echo test | gpg --clearsign |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Spliterator; | |
| import java.util.function.Consumer; | |
| import java.util.stream.Stream; | |
| import java.util.stream.StreamSupport; | |
| | |
| public class ChunkSpliterator<T> implements Spliterator<List<T>> | |
| { | |
| |
| package main | |
| import "fmt" | |
| const ( | |
| A int8 = 1 << iota | |
| B | |
| C | |
| ) |