Why remote daily awful - Try remote journal

One interesting article about daily meetings from Marco “Efesto” Polita. Here it’s just copy-pasted article about his thoughts, which I found very interesting for myself. Recently I’ve started leading a small engineering team of 4. This team was formed anew and in a remote working context and given the novelty of it, I took the occasion for rethinking some team-working approaches including the infamous remote daily. For having a common ground, the remote daily is the transposition, in form of a video call, of the classic daily or standup. ...

July 27, 2023 · 6 min · 1093 words · Me

Steamdeck: Tweaks & Tricks

Setting up password for sudo Just run “passwd” command to setup the password, it will be needed for future installations passwd Install Heroic Games Launcher as alternative for Epic Games Store Switch to “Desktop Mode” Open “Discover” app to find application Install “Heroic Games Launcher” Install ProtonUp-Qt utility to control Proton versions Switch to “Desktop Mode” Open “Discover” app to find application Install “ProtonUp-Qt” After installation you will be able to setup Proton version for different games launchers (Steam/Heroic) TODO: Transfer save data for Heroic games Install decky-loader Switch to “Desktop Mode” Open “Konsole” app Run this command (it will ask for sudo password): curl -L https://github.com/SteamDeckHomebrew/decky-installer/releases/latest/download/install_release.sh | sh Return to “Game Mode” Some of useful plugins Controller Tools CSS Loader PowerTools System Toolbox vibrantDeck Install CryoUtilities tweaks And last, but not least - CryoUtilities ...

March 6, 2023 · 1 min · 188 words · Me

Полезные однострочники - часть 6

1. Остановить приложение по имени и запустить снова в MacOS (работает для Amethyst, который очень часто вылетает в последних релизах в многомониторной конфигурации) osascript -e 'quit app "Amethyst"'; open -a "Amethyst" 2. Конвертировать JFIF файлы в каталоге в PNG (используется convert из пакета ImageMagick) for i in *.jfif; do convert "$i" "${i%.*}.png"; done 3. Установить/Обновить все плагины в Vim (для установленного Vundle) vim +PluginInstall +qall vim +PluginUpdate +qall 4. Удалить пустые и закомментированные строки в файле ...

March 5, 2023 · 1 min · 134 words · Me

Useful Windows Apps - Part 1

As a system engineer, I have some apps which I use in my daily routine tasks in Windows environment. Some of them I use quite often, some of them just work in a background and let’s started with description of these tools. FluentTerminal Link I prefer FluentTerminal over Microsoft Terminal as it is more stable with my usual workflow. FluentTerminal is a customizable terminal emulator that supports tabs, split panes, and a range of different shells. I use it to work with Powershell on host system and for WSL. ...

March 3, 2023 · 3 min · 543 words · Me

How I switched to Hugo for blog

После некоторых исследований, пришел к выводу, что Jekyll и его темы, хоть и выглядят доступными, однако не так часто обновляются и требуют установки разных зависимостей (например Ruby) на систему, в которой будет писаться блог, для отладки стиля и прочего. Из последних проблем - давно не обновляемые зависимости для работы с SCSS, которые при запуске выдают много разных Warning, из-за функций, который скоро будут deprecated. Из требований к системе было: Поддержка GitHub Pages Поддержка Markdown Простая конфигурация Разные модули для поддержи shortcodes (например для GitHub Gist) Легкая миграция существующего блога на новую платформу Поддержка разных социальных кнопок Поддержка RSS Ко всему этому внезапно подошел Hugo, как говорится в описании “Самый быстрый фреймворк для построения веб-сайтов”, из положительных моментов: ...

January 30, 2023 · 3 min · 473 words · Me