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 curl -L -o /usr/local/bin/aws-vault https://github.com/99designs/aws-vault/releases/download/v4.2.0/aws-vault-linux-amd64 | |
| sudo chmod 755 /usr/local/bin/aws-vault |
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
| RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
| RN >= 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
| RN >= 0.63 - watchman watch-del-all && rm -rf node_modules && npm install && rm -rf /tmp/metro-* && npm run start --reset-cache | |
| npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache | |
| Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache |
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 | |
| /** | |
| * Magento 1.9.1 has a problem Sorting Configurable Product Attribute Options and Dropdowns | |
| * [solved] File Patched by Jonathon Byrd | |
| * http://magentosupport.help/knowledgebase/solved-sort-configurable-product-attribute-options-and-dropdowns/ | |
| * | |
| * Magento | |
| * | |
| * NOTICE OF LICENSE | |
| * |
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 | |
| /* | |
| Author: Tegan Snyder <[email protected]> | |
| Example of running a Dataflow profile via command line | |
| you can change the profile_id to the one you want to | |
| run and issue: | |
| time php manual-dataflow-profile.php | |
| note you may need to increase the memory_limit in php cli's php_cli.ini | |
| RHEL linux copy /etc/php.ini to /etc/php_cli.ini and make changes there then restart Apache. |
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 | |
| /** | |
| * Plugin Name: Settings Import / Export Example Plugin | |
| * Plugin URI: http://pippinsplugins.com/building-a-settings-import-and-export-feature | |
| * Description: An example plugin that shows how to create a settings import and export feature | |
| * Author: Pippin Williamson | |
| * Author URI: http://pippinsplugins.com | |
| * Version: 1.0 | |
| */ |
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
| /** | |
| * Responsive WordPress Core Theme Styles | |
| * http://jeffsebring.com/responsive-wordpress-images/ | |
| --------------------------------------------------- */ | |
| .sticky, | |
| .bypostauthor, | |
| .gallery-caption { | |
| display: normal; | |
| } |
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
| # Credit http://stackoverflow.com/a/2514279 | |
| for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |