- Create a service file like
dash_sniffer.service - Put it in
/lib/systemd/system/ - Reload
systemdusing command:systemctl daemon-reload - Enable auto start using command:
systemctl enable dash_sniffer.service
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 | |
| function custom_admin_color_scheme() { | |
| wp_admin_css_color( | |
| 'scheme_name', | |
| __('Scheme Name', 'domain'), | |
| admin_url("/css/colors/scheme_name/colors.css"), | |
| array('#07273E', '#14568A', '#07273E', '#07273E'), | |
| array('base' => '#e5f8ff', 'focus' => '#fff', 'current' => '#fff') | |
| ); | |
Resolution 480x320 Ili9488 TFT 3.95" From mcufriend, about $8
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: Disable REST API for anonymous users | |
| */ | |
| /** | |
| * Remove all endpoints except SAML / oEmbed for unauthenticated users | |
| */ | |
| add_filter( 'rest_authentication_errors', function($result) { | |
| if ( ! empty( $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
| <?php | |
| /* | |
| Plugin Name: GF file upload to ACF image field | |
| Plugin URI: https://gist.github.com/certainlyakey/8c19791b3133beb62d323bf060bf4270 | |
| Description: Map Gravity forms file upload field to ACF image/file field so GF would upload the file and save id to DB instead of URL. | |
| Version: 1.0.0 | |
| Author: Kellen Mace | |
| */ | |
OlderNewer