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
| sudo yum install \ | |
| php71 \ | |
| php71-php \ | |
| php71-php-bcmath \ | |
| php71-php-brotli \ | |
| php71-php-cli \ | |
| php71-php-common \ | |
| php71-php-componere \ | |
| php71-php-dba \ | |
| php71-php-dbg \ |
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
| adb shell ps | grep "u0_" |
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
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Flutter", | |
| "request": "launch", | |
| "type": "dart", |
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
| grep -iRl "your-text-to-find" ./ |
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
| // ... | |
| /** | |
| * Servers configuration | |
| */ | |
| $i = 0; | |
| // I | |
| $i++; | |
| /* Authentication type */ |
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
| find / -iname '*bat*' | |
| find / -name '*bat*' |
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
| php72-php-bcmath \ | |
| php72-php-brotli \ | |
| php72-php-channel-horde \ | |
| php72-php-cli \ | |
| php72-php-common \ | |
| php72-php-componere \ | |
| php72-php-dba \ | |
| php72-php-dbg \ | |
| php72-php-devel \ | |
| php72-php-embedded \ |
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
| { | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/*/**": true, | |
| "**/public/assets/**": true, | |
| "**/storage/debugbar/**": true, | |
| "**/storage/framework/**": true, | |
| "**/vendor/**": true | |
| } |
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
| $('#start_date_').val( | |
| moment(ev.date).format('YYYY-MM-DD HH:mm:ss') | |
| ); |
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 | |
| // To strip all non-ASCII characters from the input string | |
| $result = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string); | |
| // That code removes any characters in the hex ranges 0-31 and 128-255, leaving only the hex characters 32-127 in the resulting string, which I call $result in this example. | |
| // Thanks to https://stackoverflow.com/users/6589057/junaid-masood | |
| // Link: https://stackoverflow.com/questions/1176904/php-how-to-remove-all-non-printable-characters-in-a-string/54072059#54072059 |