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
#!/bin/bash | |
# SVN ci partial support | |
# | |
# See https://gist.github.com/dd32/8b38750e1c1b80b3a00663be00f62058 | |
# | |
# This script can be enabled with a `svn()` wrapper defined in your profile. | |
# | |
# Props need to go to authors who have attempted this in the past, particularly to | |
# Karljohan Lundin Palmerius for his work with using kompare: |
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
#!/bin/bash | |
# SVN ci partial support | |
# | |
# This script can be enabled with a `svn()` wrapper defined in your profile. | |
# | |
# Props need to go to authors who have attempted this in the past, particularly to | |
# Karljohan Lundin Palmerius for his work with using kompare: | |
# https://www.itn.liu.se/~karlu20/div/blog/2013-05-31_SVNPartialCommit.php | |
# |
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
#!/bin/bash | |
# Quick script to sync all my forks on GitHub up-to-date with the parent repo | |
# Assumes I never commit to the main branch, which I try to avoid. | |
# Runs on cron, so only outputs with errors. | |
USER=$(gh api '/user' | jq -r .login) | |
REPOS=$(gh api "users/$USER/repos?type=owner&per_page=100" | jq -r '.[] | select( ( .fork == true ) and ( .disabled == false ) and ( .archived == false ) ) | .full_name + " " +.default_branch' ) | |
while IFS= read -r line; do |
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: Redirect WordPress.org downloads through a local caching proxy. | |
*/ | |
/** | |
* PLEASE NOTE: | |
* - Please only cache downloads for a short period of time, ZIPs may change even though the URL doesn't. | |
* - This will cause download counts to not be counted on WordPress.org. | |
* - downloads.wordpress.org serves: Plugins, Themes, Translations, and Core Update packages, amongst other things. |
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
diff --git a/src/Php80/Php80.php b/src/Php80/Php80.php | |
index ba74359..bc2533c 100644 | |
--- a/src/Php80/Php80.php | |
+++ b/src/Php80/Php80.php | |
@@ -20,12 +20,12 @@ namespace Symfony\Polyfill\Php80; | |
*/ | |
final class Php80 | |
{ | |
- public static function fdiv(float $dividend, float $divisor): float | |
+ public static function fdiv(float $dividend, float $divisor) //: float |
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
Subject: Let's get those WordCamp sessions on WordPress.tv | |
Hi , | |
Hope you had a great WordCamp and everything went well with your video efforts. |
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
<h4>WordPress Chat Plugin</h4> | |
<p>LiveChat – WP live chat plugin for WordPress is a WordPress chat plugin you can use to quickly and easily <strong>add live chat support to your WordPress website</strong>. It allows for instant communication with on-site visitors and customers and enables prompt resolution to their questions or concerns.</p> | |
<p>With a fully functional WordPress chat plugin, not only <strong>you can increase your sales</strong> - as it’s the quickest way to remove buyer objections – but it also allows you to <strong>build stronger customer relationships</strong>.</p> | |
<p>https://www.youtube.com/watch?v=dKUdE-JKhZI</p> | |
<h4>Feature-Rich WordPress Live Chat Plugin</h4> |
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 | |
// UPDATE: This can be replaced by `define( 'WP_DISABLE_FATAL_ERROR_HANDLER', true );` in `wp-config.php`. | |
// See https://core.trac.wordpress.org/changeset/44674 | |
/** | |
* Shutdown handler to disable WordPress 5.1's plugin/theme pausing features. | |
*/ | |
class dd32_Fatal_Error_Handler extends WP_Fatal_Error_Handler { | |
// Do not store errors, this disables the ability for plugins/themes to be marked 'paused'. |
NewerOlder