Poly Bridge
Steam achievements and progress for Poly Bridge - 9.09% complete with 2/22 achievements unlocked.
Draft and unpublished posts
Steam achievements and progress for Poly Bridge - 9.09% complete with 2/22 achievements unlocked.
How to keep a secret - https://changelog.com/shipit/58 Kelsey Heightower Fundamentals - https://changelog.com/shipit/44 What does good devops look like - https://changelog.com/shipit/28 Docs are not optional - https://changelog.com/shipit/17 Dave Farley the foundations of Continuous Delivery - https://changelog.com/shipit/5
Steam achievements and progress for Steep - 0.0% complete with 0/41 achievements unlocked.
Vimconf 2022
Extending vim does not need to be complicated and can be done using cli tools that you might already be comfortable with. Examples, setting up codeformatters with autocmds, using lf/ranger as a tui file manager, generating new files using a template framework like cookiecutter/copier/yeoman, using ag to populate your quickfix.
vimconf!!<esc>!!figlet
local settings = require'waylonwalker.settings' M.waylonwalker_augroup = augroup('waylonwalker', { clear = true }) M.format_python = function() if settings.auto_format.python then vim.cmd('silent execute "%!tidy-imports --black --quiet --replace-star-imports --replace --add-missing --remove-unused " . bufname("%")') vim.cmd('silent execute "%!isort " . bufname("%")') vim.cmd('silent execute "%!black " ....
...
Upon first running an aws cli command using localstack you might end up with the following error.
Unable to locate credentials. You can configure credentials by running "aws configure".
The easy easiest way is to leverage a package called awscli-local.
pipx install awscli-local
If you want to use the cli pro
Hatch allows you to specify direct references for dependencies in your pyproject.toml file. This is useful when you want to depend on a package that is not available on PyPI or when you want to use a specific version from a Git repository. Often used for unreleased packages, or unreleased versions of packages.
https://www.youtube.com/watch?v=_97JOyC1o2o
snapper snap-pac grub-btrfs
These are mostly my notes to remind myself, I’d Highly reccomend watching this-video or reading this 1 min read
{% for year in markata.map(“date.year”, filter=‘published’)|unique %}
{% for post in markata.map(‘post’, filter=“published and date.year == “+year|string, sort=‘date’) %}
Steam achievements and progress for Muck - 2.04% complete with 1/49 achievements unlocked.
Steam achievements and progress for sein - 8.77% complete with 5/57 achievements unlocked.
3.10.5: 109.441 3.11-dev: 108.856
xrandr is a great cli to manage your windows in a linux distro using x11, which is most of them. The issue is that I can never remember all the flags to the command, and if you are using it with something like a laptop using a dock the names of all the displays tend to change every time you redock. This makes it really hard to make scripts that work right every time.
Check out the deresmos/xrandr-manager for more details on it.
xrander-manager is a python cli application that is simply a nice interface into xrandr. So you must have xrandr already installed, which is generally just there on any x11 window manager, I’ve never had to install it.
As with any python cli that is indended to be used as a global/system level cli application I always install them with pipx. This automates the process of creating a