HuggingFace Page for model download: https://huggingface.co/hakurei/waifu-diffusion-v1-3
This file contains hidden or 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
| # Add this snippet to your $PROFILE to make Bash's autocompletion available to PowerShell on Linux. | |
| # Warning: adds ~500ms initialization time. | |
| # References: https://brbsix.github.io/2015/11/29/accessing-tab-completion-programmatically-in-bash/ | |
| # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/register-argumentcompleter | |
| # Find all commands | |
| $commands = bash -c 'source /usr/share/bash-completion/bash_completion && complete' | awk '{ print $NF }' | |
| $commands += ls /usr/share/bash-completion/completions | |
| $commands | ForEach-Object { |
This file contains hidden or 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
| mkfifo /tmp/gfifo | |
| ./xdp-screen-cast-ffmpeg.py & # or run in another terminal | |
| # Note the gstreamer pipeline | |
| # 'pipewiresrc fd=%d path=%u ! videorate ! video/x-raw,framerate=60/1 ! videoconvert ! filesink location=/tmp/gfifo' | |
| # I specified a 60/1 frameerate. You can do other pre-processing here, or offload it to ffmpeg. | |
| # Encode the stream and pipe to netcat | |
| # note: must specify correct resolution here | |
| # we can now use h264_nvenc, mpegts, and anything else ffmpeg has |
Sometimes it seems like the first (and sometimes only) advice you get offered for almost any problem with a Raspberry Pi is "check your power supply". You think something like:
"hey, I'm using an official power supply sold as being matched with my Pi so how can there be any problem?"
You look up the specs then stick a controlled load across your supply and confirm that it can deliver the required number of Watts.
Yet your problems persist…
Enable GPU accelerated content decoding and DOM compositor rendering on Linux. For more details refer to docs.
Properties can be set by navigating to about:config.
gfx.webrender.all=true
layers.mlgpu.enabled=true
This file contains hidden or 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
| This glitch has returned with team names: https://i.imgur.com/vVaQvH9.png | |
| Patched on 1.48 though. | |
| All credit goes to flarn2006, he was the one who found that glitch! | |
| !!!! | |
| New album, way better organized | |
| ALL sprays, player icons, achievement icons, and other stuff! | |
| https://imgur.com/a/HJoeHy1 |
This file contains hidden or 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
| local preload = type(package) == "table" and type(package.preload) == "table" and package.preload or {} | |
| local require = require | |
| if type(require) ~= "function" then | |
| local loading = {} | |
| local loaded = {} | |
| require = function(name) | |
| local result = loaded[name] | |
| if result ~= nil then |
This file contains hidden or 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
| #!/usr/bin/python2.7 | |
| """Quick hack of 'modern' OpenGL example using pysdl2 and pyopengl | |
| Based on | |
| pysdl2 OpenGL example | |
| http://www.arcsynthesis.org/gltut/Basics/Tut02%20Vertex%20Attributes.html | |
| http://schi.iteye.com/blog/1969710 | |
| """ | |
| import sys |
NewerOlder