(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <?php | |
| /** | |
| * Plugin Name: Multisite: Passwort Reset on Local Blog | |
| * Plugin URI: https://gist.github.com/eteubert/293e07a49f56f300ddbb | |
| * Description: By default, WordPress Multisite uses the main blog for passwort resets. This plugin enables users to stay in their blog during the whole reset process. | |
| * Version: 1.0.0 | |
| * Author: Eric Teubert | |
| * Author URI: http://ericteubert.de | |
| * License: MIT | |
| */ |
| <?php | |
| /** | |
| * Plugin Name: WooCommerce Settings Tab Demo | |
| * Plugin URI: https://gist.github.com/BFTrick/b5e3afa6f4f83ba2e54a | |
| * Description: A plugin demonstrating how to add a WooCommerce settings tab. | |
| * Author: Patrick Rauland | |
| * Author URI: http://speakinginbytes.com/ | |
| * Version: 1.0 | |
| * | |
| * This program is free software: you can redistribute it and/or modify |
| {% import 'twig/macros.twig' as macros %} | |
| {{ function( 'get_header' ) }} | |
| <div id="primary" class="content-area"> | |
| <div id="main" class="site-main" role="main"> | |
| {% block content %}{% endblock %} | |
| </div><!-- #main --> |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| var gulp = require('gulp'); | |
| // Get packages from package.json | |
| var plugins = require("gulp-load-plugins")(); | |
| // Livereload stuff | |
| lr = require('tiny-lr'), | |
| server = lr(); |
| linters: | |
| Indentation: | |
| enabled: true | |
| width: 4 | |
| EmptyRule: | |
| enabled: false | |
| PropertySortOrder: |
| var gulp = require('gulp'); | |
| // Get packages from package.json | |
| var tasks = require("gulp-load-tasks")(); | |
| // Livereload stuff | |
| lr = require('tiny-lr'), | |
| server = lr(); |
I have spent quite a bit of time figuring out automounts of NFS shares in OS X...
Somewhere along the line, Apple decided allowing mounts directly into /Volumes should not be possible:
/etc/auto_master (see last line):
#
# Automounter master map
#
+auto_master # Use directory service
| <?php | |
| /** | |
| * Add new register fields for WooCommerce registration. | |
| * | |
| * @return string Register fields HTML. | |
| */ | |
| function cs_wc_extra_register_fields() { | |
| ?> | |
| <p class="form-row form-row-first"> | |
| <label for="reg_billing_first_name"><?php _e( 'Nome', 'textdomain' ); ?> <span class="required">*</span></label> |