Kielx list of assets
Full guides:
Tailwind Components:
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) | |
{ |
// function makeArrayConsecutive returns the number of missing items between smallest | |
// and largest number in provided array | |
const makeArrayConsecutive = function (array) { | |
array.sort((a, b) => a - b); | |
let myArray = []; | |
for (i = array[0]; i < array[array.length - 1]; i++) { | |
myArray.push(i); | |
} | |
myArray = myArray.filter(function (el) { |
//function checkIfEven checks if given number consists of only even digits | |
const checkIfEvenDigit = function (number) { | |
if (number % 2 === 0) { | |
return true; | |
} else { | |
return false; | |
} | |
}; |