Hierarchical data metrics that allows fast read operations on tree like structures.
Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.
<# | |
.SYNOPSIS | |
Installs ZeroTier | |
.DESCRIPTION | |
Install ZeroTier and join/configure ZeroTier network | |
.EXAMPLE | |
./ios-InstallZeroTier.ps1 | |
.NOTES | |
This script will install PowerShell 7 if it is not present. | |
A UAC prompt will appear during install if -UI is used. |
Hierarchical data metrics that allows fast read operations on tree like structures.
Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.
* GitToolBox by Lukasz Zielinski | |
* Rainbow Brackets by izhangzhihao | |
* .env files support by Adel F | |
* String Manipulation by Olivier Smedile, Vojtech Krasa | |
* Atom Material Icons by AtomMaterial | |
* GitHub Copilot |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
auto const CB1 = CallFunc::create([&](){}); | |
// Better to use CallFuncN as default if you need to pick one to use generically. | |
auto const CB2 = CallFuncN::create([&](Ref* const sender) | |
{ | |
if (!sender) {return;} | |
// Do something. | |
}); |
cd my-repository | |
dpkg-scanpackages binary /dev/null | gzip -9c > binary/Packages.gz | |
dpkg-scansources source /dev/null | gzip -9c > source/Sources.gz |