This file contains 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
1 Fuel Pump Relay | |
2 Idle Speed Actuator- Closing Coil | |
3 Fuel Injector Cyl 1 | |
4 Fuel Injector Cyl 3 | |
5 Fuel Injector Cyl 2 | |
7 Intake Cam Position Sensor Bank 1 | |
8 Intake Cam Position Sensor Bank 2 | |
9 Knock Sensor- Cyl 1-2 | |
10 Exhaust Cam Position Sensor Bank 1 |
This file contains 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 | |
namespace Foo\Blocks; | |
/** | |
* Generic block rendering callback function to load a block from a theme template part. | |
* | |
* Loads a block from the `blocks` subdirectory according to the name of the block, and places the | |
* block attributes and block content into namespaced query vars. If there's no corresponding block | |
* template part, the block content is returned unaltered. |
This file contains 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
# wp-cli: http://wp-cli.org/ | |
wp role list --fields=role --format=csv \ | |
| tail -n +2 \ | |
| xargs -I {} wp user create "user-{}" "{}@example.com" --role={} |
This file contains 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
# wp-cli: http://wp-cli.org/ | |
wp plugin search debug-bar --field=slug --format=csv --per-page=50 \ | |
| grep -F 'debug-bar-' \ | |
| xargs -n 1 wp plugin install |
This file contains 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
Version | Commit | Date | |
---|---|---|---|
5.6 | 7aae3c7bbf02aed99012a4925ce610fc94c70272 | 2020-07-28 | |
5.5 | 55b3866749c642f5d5b2e6dfc57605ad31bdb820 | 2020-03-04 | |
5.4 | 4b1dd6e54988776227f72507c72cd81a4b337004 | 2019-10-25 | |
5.3 | 5640763da953c28033e9f285c7c2a1da4c613aa3 | 2019-05-02 | |
5.2 | 6edf51566187f1bba6aa5d891a681b02996ccef4 | 2019-02-14 | |
5.1 | ddc67854a4828a8aa36fc049940fc2ba4bf0604e | 2018-10-05 | |
5.0 | 9f77ec13ffcf1ab14c8699fdb68e728709eb6bb5 | 2017-11-07 | |
4.9 | 3c1dfef4ba5c8fe89b46c62f81395313c9814cf9 | 2017-06-01 | |
4.8 | 26a28e6450496efc07b6b5fbc3383d3d5f17634a | 2016-11-24 |
This file contains 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
# wp-cli: http://wp-cli.org/ | |
# jq: https://stedolan.github.io/jq/ | |
curl "https://api.wordpress.org/themes/info/1.1/?action=query_themes&request%5Bbrowse%5D=popular" \ | |
| jq '.themes[] .slug' \ | |
| xargs wp theme install |
This file contains 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
wp core language list --field=language | xargs -n 1 wp core language install |
This file contains 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/bash | |
REV=$1 | |
svn up --ignore-externals . > /dev/null | |
svn merge -c$REV ../../trunk . | |
LOG=$(svn log -r$REV ../../trunk | grep -v '\-------' | tail -n +3) | |
BRANCH=$(basename $(pwd)) | |
echo -en "$LOG\n\nMerges [$REV] to the $BRANCH branch." | pbcopy | |
echo "" | |
pbpaste |
NewerOlder