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
| [xDebug] | |
| zend_extension = php_xdebug-2.4.0-7.0-vc14-x86_64.dll | |
| xdebug.remote_enable=on | |
| xdebug.remote_handler=dbgp | |
| xdebug.remote_host=localhost | |
| xdebug.remote_port=9000 | |
| xdebug.collect_params=4 | |
| xdebug.collect_assignments=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
| var Q = function(querry){ | |
| return document.querySelector(querry); | |
| }; | |
| var Qs = function(querry){ | |
| querry=document.querySelectorAll(querry); | |
| querry.forEach||(querry=Array.from(querry)); | |
| return querry; | |
| }; | |
| var SE = function(item){ | |
| return item.parentNode.removeChild(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
| <# | |
| .Synopsis | |
| Formate une sortie console ANSI | |
| .DESCRIPTION | |
| Cette commande interprête les commande ansi | |
| ESC[PL;PcH | |
| ESC[PL;Pcf | |
| ESC[PnA | |
| ESC[PnB | |
| ESC[PnC |
NewerOlder