create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| <?php | |
| namespace Drupal\oht_migrate\Plugin\migrate\process; | |
| use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
| use Drupal\migrate\Annotation\MigrateProcessPlugin; | |
| use Drupal\migrate\Plugin\migrate\process\MigrationLookup; | |
| use Drupal\migrate\Plugin\MigratePluginManagerInterface; | |
| use Drupal\migrate\Plugin\MigrationInterface; | |
| use Drupal\migrate\ProcessPluginBase; |
| import React, { useCallback, useState } from 'react'; | |
| import ConfirmationDialog from 'components/global/ConfirmationDialog'; | |
| export default function useConfirmationDialog({ | |
| headerText, | |
| bodyText, | |
| confirmationButtonText, | |
| onConfirmClick, | |
| }) { | |
| const [isOpen, setIsOpen] = useState(false); |
| <?php | |
| /** | |
| * Debugging using the database connection. | |
| */ | |
| /** @var \Drupal\Core\Database\Connection */ | |
| $connection = \Drupal::service('database'); | |
| $query = $connection->select('node', 'node'); | |
| $query->fields('node', ['nid']) |
| # Install PEAR (PHP Extension and Application Repository) | |
| $ sudo php /usr/lib/php/install-pear-nozlib.phar | |
| $ sudo pear upgrade-all | |
| $ sudo pear install --alldeps PHP_CodeSniffer | |
| # Add PEAR to `php.ini` Include Path | |
| $ nano /etc/php.ini | |
| ;include_path = ".:/php/includes" | |
| include_path = ".:/php/includes:/usr/lib/php/pear" |
| <?php | |
| // Add base field to entity | |
| $storage_definition = BaseFieldDefinition::create('email') | |
| ->setLabel(t('Email address')) | |
| ->setDescription(t('The email address associated with the event participant.')) | |
| ->setDisplayOptions('form', [ | |
| 'region' => 'hidden', | |
| 'weight' => 0, | |
| ]); |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| # BASH Configuration and Aliases | |
| # source: http://natelandau.com/my-mac-osx-bash_profile/ | |
| # source: https://github.com/mathiasbynens/dotfiles | |
| # Sections: | |
| # 0. Execute Only Once (if you want) | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.
Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.
The simplest way to add an alias for a specific git command is to use a standard bash alias.
# .bash_profile| var gulp = require('gulp'); | |
| var browserify = require('browserify'); | |
| var babelify = require('babelify'); | |
| var del = require('del'); | |
| var source = require('vinyl-source-stream'); | |
| var _ = require('lodash'); | |
| var extReplace = require('gulp-ext-replace'); | |
| var less = require('gulp-less'); | |
| var gulpMerge = require('merge-stream'); | |
| var ngTemplates = require('gulp-ng-templates'); |