create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <title>OpenLayers Bergfex Topo Layer</title> | |
| <link rel="stylesheet" href="qgis.css" type="text/css"> | |
| <script src="OpenLayers.js"></script> | |
| <script src="OlOverviewMarker.js"></script> | |
| <script type="text/javascript"> | |
| var map; | |
| var loadEnd; | |
| var oloMarker; // OpenLayer Overview Marker |
| <?php | |
| // Requires PHP 5.3+ | |
| // Found here: http://stackoverflow.com/a/1320156 | |
| function flatten_array(array $array) { | |
| $flattened_array = array(); | |
| array_walk_recursive($array, function($a) use (&$flattened_array) { $flattened_array[] = $a; }); | |
| return $flattened_array; | |
| } |
| name: 'Ajax Example' | |
| description: 'Just an Ajax Example' | |
| core: 8.x | |
| type: module |
| # You could turn on dotglob: | |
| shopt -s dotglob # This would cause mv below to match hidden files | |
| mv /path/subfolder/* /path/ | |
| # In order to turn off dotglob, you'd need to say: | |
| shopt -u dotglob |
| var gulp = require('gulp'), | |
| sass = require('gulp-sass'), | |
| rename = require('gulp-rename'), | |
| cssmin = require('gulp-cssnano'), | |
| prefix = require('gulp-autoprefixer'), | |
| plumber = require('gulp-plumber'), | |
| notify = require('gulp-notify'), | |
| sassLint = require('gulp-sass-lint'), | |
| sourcemaps = require('gulp-sourcemaps'); | |
| // Temporary solution until gulp 4 |
| <?php | |
| /** | |
| * Form controller for the bb_report entity edit forms. | |
| * | |
| * @ingroup report | |
| */ | |
| class FeeForm extends ContentEntityForm { | |
| /** | |
| * {@inheritdoc} |
| <?php | |
| class MyCustomBlock extends BlockBase { | |
| public function build() { | |
| return array( | |
| '#markup' => $this->t('My custom block content'), | |
| '#cache' => array( | |
| 'contexts' => ['url.path'], // https://www.drupal.org/developing/api/8/cache/contexts | |
| 'tags' => ['node:1', 'node:2'] // https://www.drupal.org/developing/api/8/cache/tags | |
| ), |
| <?php | |
| namespace Drupal\sitemanager\Plugin; | |
| use Drupal\Component\Plugin\PluginBase; | |
| use Drupal\Core\Config\ConfigFactory; | |
| use Symfony\Component\DependencyInjection\ContainerInterface; | |
| use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
| use Drupal\Core\StringTranslation\StringTranslationTrait; | |
| use Drupal\Core\StringTranslation\TranslationInterface; |