See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).
This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"| const { resolve } = require('path') | |
| const root = resolve(__dirname, '..') | |
| module.exports = { | |
| rootDir: root, | |
| displayName: 'eslint', | |
| runner: 'jest-runner-eslint', | |
| testMatch: ['<rootDir>/src/**/*.js', '<rootDir>/config/*.js'], | |
| } |
| from scapy.all import * | |
| import os | |
| import signal | |
| import sys | |
| import threading | |
| import time | |
| #ARP Poison parameters | |
| gateway_ip = "10.0.0.1" | |
| target_ip = "10.0.0.250" |
e.g: tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
This procedure explains how to install MySQL using Homebrew on macOS Sierra 10.12
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"At this time of writing, Homebrew has MySQL version 5.7.15 as default formulae in its main repository :
| using System; | |
| class combi | |
| { | |
| static int[] arr; | |
| public static void Main() | |
| { | |
| arr = new int[] {1,2,3,4,5}; | |
| Cal(3,0,new int[3]); | |
| } | |
| static void Cal(int len,int start,int[] result) |
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
| // set-up a connection between the client and the server | |
| var socket = io.connect(); | |
| // let's assume that the client page, once rendered, knows what room it wants to join | |
| var room = "abc123"; | |
| socket.on('connect', function() { | |
| // Connected, let's sign-up for to receive messages for this room | |
| socket.emit('room', room); | |
| }); |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define NUM_VERTEX 10 | |
| struct Vertex { | |
| char name; | |
| int mark; | |
| struct Node* list; |