- copy the file
commit-msg
to.git/hooks/commit-msg
- make sure your delete the sample file
.git/hooks/commit-msg.sample
- Make commit msg executable.
chmod +x .git/hooks/commit-msg
- Edit
commit-msg
to better fit your development branch, commit regex and error message
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
acl country_cn src -f /etc/haproxy/subnets/CN.subnets | |
acl country_ng src -f /etc/haproxy/subnets/NG.subnets | |
acl country_ua src -f /etc/haproxy/subnets/UA.subnets | |
acl country_ru src -f /etc/haproxy/subnets/RU.subnets | |
acl network_ovh src -f /etc/haproxy/subnets/OVH.subnets |
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
#!/bash | |
# Author: Ramon Fincken, https://www.mijnpress.nl | |
BASEDIR=web/app/mu-plugins | |
muplugindirs=`ls $BASEDIR` | |
for i in $muplugindirs | |
do | |
if [[ -d ${BASEDIR}/${i} ]] | |
then |
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
"extra": { | |
"wordpress-install-dir": "web/wp", | |
"installer-paths": { | |
"web/app/plugins/{$name}": [ | |
"type:wordpress-plugin" | |
], | |
"web/app/mu-plugins/{$name}": [ | |
"type:wordpress-muplugin" | |
], | |
"web/app/themes/{$name}": [ |
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
"scripts": { | |
"test": [ | |
"web/vendor/bin/phpcs" | |
], | |
"post-update-cmd": "bash muplugins.sh", | |
"post-install-cmd": "bash muplugins.sh" | |
} |
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 | |
// NOTE, see updates function managedwphosting_woocommerce_order_query_args | |
/** | |
* Inspired by https://stackoverflow.com/questions/53140009/add-search-by-customer-ip-address-to-woocommerce-order-search | |
* Code idea borrowed from https://www.skyverge.com/blog/filtering-woocommerce-orders/ && https://gist.github.com/bekarice/41bce677437cb8f312ed77e9f226a812 | |
*/ | |
add_filter( 'request', 'filter_orders_by_payment_method_query' ); | |
function filter_orders_by_payment_method_query( $vars ) { |
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
DROP TABLE `wf_fBadLeechers`, `wp_wfBlockedIPLog`, `wp_wfBlocks`, `wp_wfBlocksAdv`, `wp_wfConfig`, `wp_wfCrawlers`, `wp_wfFileMods`, `wp_wfHits`, `wp_wfHoover`, `wp_wfIssues`, `wp_wfLeechers`, `wp_wfLockedOut`, `wp_wfLocs`, `wp_wfLogins`, `wp_wfReverseCache`, `wp_wfScanners`, `wp_wfStatus`, `wp_wfThrottleLog`; |
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
X are currently looking at this product. | |
jQuery(function() { | |
setInterval(function() { | |
var myDiv = jQuery("#viewing_now"); | |
var myRand = Math.floor(Math.random() * 16) + 8; | |
myDiv.text(myRand); | |
}, 5000); | |
}); |
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
add_action( 'admin_head', [ $this, 'gutenberg_sidebar_more_width' ] ); | |
public static function gutenberg_sidebar_more_width() { | |
?> | |
<style> | |
@media (min-width: 782px) { | |
.interface-interface-skeleton__sidebar { width: 450px !important; } | |
.interface-complementary-area { width: 450px !important; } | |
} |
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 | |
require __DIR__ . '/vendor/autoload.php'; | |
use Transip\Api\Library\TransipAPI; | |
use Transip\Api\Library\Entity\Domain\DnsEntry as DnsEntry; | |
use Badcow\DNS\Zone; | |
use Badcow\DNS\Rdata\Factory; | |
use Badcow\DNS\ResourceRecord; | |
use Badcow\DNS\AlignedBuilder; |
OlderNewer