- ICO Small organisations | ICO
- ICO Guide to the General Data Protection Regulation (GDPR) | ICO
- ICO General Data Protection Regulation (GDPR) FAQs for charities | ICO
- ICO Privacy notices under the GDPR
- Business West: https://www.businesswest.co.uk/general-data-protection-regulation-gdpr
- Charity Digital News/CoopSys: Guiding charities through GDPR compliance » Charity Digital News
- Together We're Better: [Power to the People! Giving Citizens their Personal Data Rights Back | twb](https://www.togetherwerebetter.org.uk/resources/giving
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 | |
| // adding support for html emails | |
| // this converts ALL wp_mail emails to HTML, which messes up the password reset email | |
| add_filter( 'wp_mail_content_type','prefix_set_content_type' ); | |
| function prefix_set_content_type() { | |
| return "text/html"; | |
| } | |
| // add this filter too | |
| // this will make the password reset email compatible with the HTML format |
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
| [ | |
| // Focus/unfocus terminal with ctrl+` and toggle it with ctrl+shift+` | |
| { | |
| "key": "ctrl+`", | |
| "command": "workbench.action.focusActiveEditorGroup", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+`", | |
| "command": "workbench.action.terminal.focus", |
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 | |
| # | |
| # This dumps all MySQL databases if you give it a root database login. You can specify the directory. | |
| # It creates a date-and-timestamped sub-directory and individual files in there for each database. | |
| # | |
| HOSTNAME='localhost' | |
| MYSQLUSER='root' | |
| MYSQLPASS='password' | |
| TIMESTAMP=`date +%F-%H%M%S` |
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 | |
| // This is the Stats class I wanted to create. It lives in app/Stats.php, but could be anywhere that the AutoLoader will recognise it | |
| namespace App; | |
| use App\Action; | |
| use Carbon\Carbon; | |
| /** |
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 | |
| /* | |
| * This needs comments and command-line arguments and stuff. It's ruff and ready. | |
| */ | |
| global $domain_re; | |
| $domain_re = '([0-9a-zA-Z\-]+\.)+[0-9a-zA-Z\-]+'; | |
| function get_nameservers( $whois_out, $domain ) { |
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: More Post - A Dynamic More Post loader | |
| * Version: 0.1-alpha | |
| * Description: A Dynamic More Post loader | |
| * Author: Ross Wintle | |
| * Author URI: http://oikos.digital | |
| * Plugin URI: PLUGIN SITE HERE | |
| * Text Domain: more-post | |
| * Domain Path: /languages |
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: Add category description to content | |
| Plugin URI: https://oikos.digital/ | |
| Description: Adds the category description to the end of the_content() | |
| Version: 1.0 | |
| Author: Ross Wintle/Oikos | |
| Author URI: https://oikos.digital/ | |
| */ |
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
| // Grid system - do not apply to full-width-wrapped pages | |
| .wrap.container .main { | |
| @include make-sm-column($main-sm-columns); | |
| .sidebar-primary & { | |
| @include make-sm-column($main-sm-columns - $sidebar-sm-columns); | |
| } | |
| } | |
| .sidebar { | |
| @include make-sm-column($sidebar-sm-columns); | |
| } |