$ cd /path/to/your/website
$ rm -Rf ./lib
<?php | |
// Here is a sample of the URLs this regex matches: (there can be more content after the given URL that will be ignored) | |
// http://youtu.be/dQw4w9WgXcQ | |
// http://www.youtube.com/embed/dQw4w9WgXcQ | |
// http://www.youtube.com/watch?v=dQw4w9WgXcQ | |
// http://www.youtube.com/?v=dQw4w9WgXcQ | |
// http://www.youtube.com/v/dQw4w9WgXcQ | |
// http://www.youtube.com/e/dQw4w9WgXcQ | |
// http://www.youtube.com/user/username#p/u/11/dQw4w9WgXcQ |
Hiking DDS238-2 ZN/S energy meter: Modbus holding registers | |
register(s) word order data format meaning unit (symb.) | |
0000h-0001h hi-lo unsigned? total energy decawatt-hours (daW·h) | |
0008h-0009h hi-lo unsigned? export energy¹ decawatt-hours (daW·h) | |
000Ah-000Bh hi-lo unsigned? import energy¹ decawatt-hours (daW·h) | |
000Ch unsigned? voltage decivolts (dV) | |
000Dh unsigned? current centiamperes (cA) | |
000Eh two's compl. active power watts (W) |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
Note
More information you can find on Microsoft documentation.
Tip
You can install all Visual C++ Redistributable Packages using only one command with winget! https://gist.github.com/ChuckMichael/d4221fd8681a7e962c8d37d623ff3145
- x64 8.0.61000 (EOL)
Microsoft.VCRedist.2005.x64
This gist will explain you how to enable an undocumented feature of PHP-FPM
which will give a real-time performance stats.
Everybody knows the famous phpinfo()
and the page it generates, right? Then the real-time PHP-FPM
status page design is very similar.
Some informations from the top are not displayed to avoid security issues.
<?php | |
namespace PHP81_BC; | |
/** | |
* Locale-formatted strftime using \IntlDateFormatter (PHP 8.1 compatible) | |
* This provides a cross-platform alternative to strftime() for when it will be removed from PHP. | |
* Note that output can be slightly different between libc sprintf and this function as it is using ICU. | |
* | |
* Usage: | |
* use function \PHP81_BC\strftime; |
Warning
App Installer must be installed on Win10/11.
Tip
You can save it and run as batch file (.bat).
winget install --id=Microsoft.VCRedist.2005.x86 -e && winget install --id=Microsoft.VCRedist.2005.x64 -e && winget install --id=Microsoft.VCRedist.2008.x86 -e && winget install --id=Microsoft.VCRedist.2008.x64 -e && winget install --id=Microsoft.VCRedist.2010.x86 -e && winget install --id=Microsoft.VCRedist.2010.x64 -e && winget install --id=Microsoft.VCRedist.2012.x86 -e && winget install --id=Microsoft.VCRedist.2012.x64 -e && winget install --id=Microsoft.VCRedist.2013.x86 -e && winget install --id=Microsoft.VCRedist.2013.x64 -e && winget install --id=Microsoft.VCRedist.2015+.x86 -e && winget install --id=Microsoft.VCRedist.2015+.x64 -e