Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
{ | |
"type": "email", | |
"customer": { | |
"email": "{{customer.email}}", | |
"firstName":"{{customer.firstName}}", | |
"lastName":"{{customer.lastName}}" | |
}, | |
"subject": "Low NPS rating from customer {{customer.firstName}} {{customer.lastName}}", | |
"mailbox": { | |
"id": MAILBOX-ID |
`class Custom_Pages_Widgets extends WP_Widget{ | |
public function __construct(){ | |
$widget_ops = array( | |
'description' => __( "A list of your site’s Pages." ) | |
); | |
parent::__construct( 'custom_widget_pages', __( 'Widget Pages' ), $widget_ops ); | |
} | |
public function widget( $args, $instance ){ | |
extract($args); | |
$select = empty( $instance['select'] ) ? '' : $instance['select']; |
<?php | |
/** | |
* @file | |
* Install, update and uninstall functions for the d8module module. | |
*/ | |
function d8module_schema_otherdb() { | |
$schema['mytable'] = array( | |
'description' => 'My table description', |
1. Download the "Install OS X Yosemite.app" form App Store and keep it in Applications Folder | |
2. Open the Terminal and just hit the command | |
sudo /Applications/Install\ OS\ X\ Yosemite.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Yosemite.app --nointeraction | |
Then It will show the Following message | |
"Erasing Disk: 0%... 10%... 20%... 30%...100%... | |
Copying installer files to disk... |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
<html> | |
<head> | |
<title>Google Maps Multiple Markers</title> | |
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> | |
</head> | |
<body> | |
<div id="map" style="height: 400px; width: 500px;"> | |
</div> | |
<script type="text/javascript"> |
<? | |
/** | |
* Repeatable Custom Fields in a Metabox | |
* Author: Helen Hou-Sandi | |
* | |
* From a bespoke system, so currently not modular - will fix soon | |
* Note that this particular metadata is saved as one multidimensional array (serialized) | |
*/ | |
function hhs_get_sample_options() { |
var data = "do shash'owania"; | |
var crypto = require('crypto'); | |
crypto.createHash('md5').update(data).digest("hex"); |