Kielx list of assets
Full guides:
Tailwind Components:
| This allows you to use shift-tab to switch active tab in midnight commander, while allowing you to use tab for autocomplete commands like cd. Good for people used to using TAB to autocomplete commands in terminal line. | |
| Original post: https://unix.stackexchange.com/questions/250818/how-to-use-command-line-completion-in-midnight-commander | |
| nano ~/.config/mc/mc.keymap | |
| [filemanager:empty-cmdline] | |
| ChangePanel = tab | |
| [filemanager] | |
| ChangePanel = ctrl-tab; shift-tab |
| # Change Timestamps in Windows | |
| ## Get Started | |
| ### Open PowerShell | |
| Open PowerShell in the target directory. Normally, you can open PowerShell in current directory by holding <kbd>shift</kbd> and right-clicking the context menu **Open PowerShell Here**. | |
| ### Use the Following Commands |
Kielx list of assets
Full guides:
Tailwind Components:
ZSH, also called the Z shell, is an extended version of the Bourne Shell (sh), with plenty of new features, and support for plugins and themes.
This is a framework for zsh
Powerlevel10k is a theme for Zsh. It emphasizes speed, flexibility and out-of-the-box experience.
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| # PS : ChatGPT makes mistakes, consider "trust but verify" principle | |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| #Events to Monitor | |
| https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/plan/appendix-l--events-to-monitor | |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| #run | |
| eventvwr.msc Event viewer | |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| Event Viewer(Local)-Windows Logs (shutdown / restart ) |
| You need the terminal color codes. For linux it's the following (your system might be different, look it up): | |
| //the following are UBUNTU/LINUX, and MacOS ONLY terminal color codes. | |
| #define RESET "\033[0m" | |
| #define BLACK "\033[30m" /* Black */ | |
| #define RED "\033[31m" /* Red */ | |
| #define GREEN "\033[32m" /* Green */ | |
| #define YELLOW "\033[33m" /* Yellow */ | |
| #define BLUE "\033[34m" /* Blue */ | |
| #define MAGENTA "\033[35m" /* Magenta */ |
| #include <stdio.h> | |
| #include <time.h> | |
| long int fibIt(int n) | |
| //Funkcja oblicza i zwraca okreslony wyraz ciagu Fibonacciego metoda iteracyjna | |
| { | |
| long int i, t1 = 0, t2 = 1, nastepnyWyraz; | |
| for (i = 1; i <= n; ++i) | |
| { |