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/Makefile.global b/Makefile.global | |
| index b30c318..e8dd419 100644 | |
| --- a/Makefile.global | |
| +++ b/Makefile.global | |
| @@ -20,7 +20,7 @@ libphp$(PHP_MAJOR_VERSION).la: $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) | |
| -@$(LIBTOOL) --silent --mode=install cp $@ $(phptempdir)/$@ >/dev/null 2>&1 | |
| libs/libphp$(PHP_MAJOR_VERSION).bundle: $(PHP_GLOBAL_OBJS) $(PHP_SAPI_OBJS) | |
| - $(CC) $(MH_BUNDLE_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(PHP_GLOBAL_OBJS:.lo=.o) $(PHP_SAPI_OBJS:.lo=.o) $(PHP_FRAMEWORKS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $@ && cp $@ libs/libphp$(PHP_MAJOR_VERSION).so | |
| + $(CC) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(MH_BUNDLE_FLAGS) $(PHP_GLOBAL_OBJS:.lo=.o) $(PHP_SAPI_OBJS:.lo=.o) $(PHP_FRAMEWORKS) $(EXTRA_LIBS) $(ZEND_EXTRA_LIBS) -o $@ && cp $@ libs/libphp$(PHP_MAJOR_VERSION).so |
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 | |
| ####################### | |
| # Usage | |
| usage() { | |
| echo "USAGE: ${0} -b | -r [backup_number]" | |
| exit 1 | |
| } | |
| ####################### | |
| # Config Variables |
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
| on idle | |
| tell application "System Events" | |
| tell current location of network preferences | |
| set myConnection to the service "__vpn_service_name__" | |
| if myConnection is not null then | |
| if current configuration of myConnection is not connected then | |
| connect myConnection | |
| end if | |
| end if | |
| end tell |
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
| property hostname : "__domain_name__.dyndns.org" | |
| property dyndnsUsername : "__username__" | |
| property dyndnsPassword : "__userpassword__" | |
| property myLastIP : missing value | |
| property myCurrentIP : missing value | |
| property retryPeriodSeconds : 300 | |
| on idle | |
| my updateDynDNS(myLastIP) | |
| set myLastIP to result |
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/sh | |
| ################################################################################ | |
| # | |
| # Script to recursively search a directory and batch convert all files of a | |
| # given file type into another file type via HandBrake conversion. | |
| # | |
| # To run in your environment set the variables: | |
| # hbcli - Path to your HandBrakeCLI | |
| # ffmpeg - Path to the ffmpeg |
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
| /** | |
| * Recent_Posts widget w/ category include class | |
| * This allows specific Category ID to be included in the Sidebar Recent Posts list | |
| * | |
| */ | |
| class WP_Widget_Recent_Posts_Include extends WP_Widget { | |
| function __construct() { | |
| $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent posts on your site") ); | |
| parent::__construct('recent-posts', __('Recent Posts with Include'), $widget_ops); |
NewerOlder