This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ('https:' == self.location.protocol && /chrome/i.test(window.navigator.userAgent)) { | |
| var srcset_elements = document.querySelectorAll('[srcset]'); | |
| if (!!window.devicePixelRatio && window.devicePixelRatio != 1) { | |
| Array.prototype.forEach.call(srcset_elements, function (el) { | |
| var prop = el.getAttribute('srcset'); | |
| var src_list = prop.split(/,\s*/); | |
| var ratio = 0; | |
| var src = ''; | |
| src_list.forEach(function(item) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if (!isset($argv[1])) { | |
| echo '[!] Need image path', PHP_EOL; | |
| echo $argv[0], ' [imagepath]', PHP_EOL; | |
| exit(1); | |
| } | |
| $image = realpath($argv[1]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| log_path="/home/www/[APP_NAME]/App/Runtime/Logs" | |
| archive_path="/home/logs_archiver"; | |
| # some command | |
| list_all_pattern="ls $log_path/13_*.log -1 | xargs -n 1 -I %_ basename %_ .log" | |
| # archive files | |
| Archive_Files () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Console\%SystemRoot%_system32_WindowsPowerShell_v1.0_powershell.exe] | |
| ; black 00000000 | |
| "ColorTable00"=dword:00202020 | |
| ; darkgreen 00008000 | |
| "ColorTable01"=dword:004e4224 | |
| ; darkred 00800000 | |
| "ColorTable02"=dword:001a5d14 | |
| ; darkyellow 00808000 |
NewerOlder