If you're looking into automating transactions in your Steam Account using Steam Bots, you most likely will need to:
- Have TOTP ("MFA" or "2FA") enabled via Steam Authenticator (Steam Guard)
- Have in hands both
shared secretandidentity secret
Having Steam Guard enabled for your Steam Account ensures that there will be no holds on transactions such as trades. Having the shared and identity secrets are necessary for complete autonomy of your Steam Bot, meaning it won't require any human interaction from you.
There is a tremendous lack of information about all of this as Steam does not provide official support for implementing Steam Bots. The information available in this guide was gathered through lots of blood and sweat hard research, reverse eng
| WARNING: Be very very careful when following those steps, you **could** cause permanent and unexpected damages to your console if | |
| You don't follow the exact steps of this guide OR perform extra steps not specified in this guide AND followed when not STRICTLY NEEDED | |
| WARNING 2: DO NOT FLASH FIRMWARE.BIN | |
| If you get the message "Board was not initialized properly. Hang prevented." while booting Linux or Android on Mariko: | |
| 1. Get this https://github.com/hwfly-nx/hwfly-toolbox/releases/download/1.1.1/hwfly_toolbox.bin | |
| 2. Put it in `sdcard:/bootloader/payloads` | |
| 3. Get this https://github.com/hwfly-nx/firmware/releases/download/0.7.1/release_071.zip |
This process will allow you to create a shortcut on your desktop that will enable automatic entry of your OTP code into FFXIV without having to open up the authenticator each time you log in.
It uses FFXIV QuickLauncher for doing its work.
| /* | |
| MIT License | |
| Copyright (c) 2024 Maxwell Zeryck | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTW |
This document was created back in 2020 and might not be actual nowadays. It is not supported anymore, so use thise information at your own risk.
- Download WSL2 Kernel
- run
wsl --set-default-version 2in windows command line, so that all future WSL machine will use WSL2.
| # Luke's config for the Zoomer Shell | |
| # Enable colors and change prompt: | |
| autoload -U colors && colors | |
| PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " | |
| # History in cache directory: | |
| HISTSIZE=10000 | |
| SAVEHIST=10000 | |
| HISTFILE=~/.cache/zsh/history |
Downloads and installs all Noto Sans fonts and prints a config section to be added to your ~/.config/fontconfig/fonts.conf
- Run the
download.shfile - Copy the output XML and pasted it before the final closing
</fontconfig>tag in your~/.config/fontconfig/fonts.conffile
| #!/bin/bash | |
| # install the smartctl package first! (apt-get install smartctl) | |
| if sudo true | |
| then | |
| true | |
| else | |
| echo 'Root privileges required' |

