- USB SSD with at least 8GB
- Windows .ISO
Open terminal and do the following:
| ps aux | fzf --header 'Select a process to kill' --preview 'echo {}' | awk '{print $2}' | xargs -I {} kill -9 {} | |
| This one-liner script for macOS provides an interactive way to view and kill processes using the command line. It leverages the power of `ps`, `awk`, `fzf`, and `xargs` to create a user-friendly interface for process management. | |
| When executed, it displays a list of all running processes in an interactive fuzzy finder (`fzf`) interface. Users can search and select a process, which is then terminated using the `kill` command. This script is particularly useful for developers and system administrators who need a quick and efficient way to manage processes without leaving the terminal. |
| // ==UserScript== | |
| // @name Alior Bank 1Password AutoFill | |
| // @namespace bpetrynski | |
| // @author Bartosz Petrynski | |
| // @description Autofills password input for 1Password support in Alior Bank. | |
| // @match https://bn.aliorbank.pl/hades/do/Login* | |
| // @match https://bn.aliorbank.pl/hades/do/LoginAlias* | |
| // @match https://bn.aliorbank.pl/hades/do/ConsentModule* | |
| // @match https://bn.aliorbank.pl/hades/do/MaskLogin* | |
| // @match https://bn.aliorbank.pl/hades/do/* |
| wget https://github.com/skylot/jadx/releases/download/v1.2.0/jadx-1.2.0.zip | |
| sudo unzip jadx-1.2.0.zip -d /usr/local/bin/jadx-1.2.0 | |
| cd /usr/local/bin/ | |
| sudo ln -s jadx-1.2.0/bin/jadx jadx | |
| sudo ln -s jadx-1.2.0/bin/jadx-gui jadx-gui |
| // ==UserScript== | |
| // @name Gumtree.pl NewTabOpener | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Skrypt wyłącza otwieranie ogłoszenia w tej samej karcie przy otwieraniu w nowej karcie | |
| // @author Michał Kaciuba, Bartosz Petryński | |
| // @match *://www.gumtree.pl/* | |
| // @grant none | |
| // ==/UserScript== |