git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| public class ResumeRepository | |
| { | |
| private final Map<Integer, List<Resume>> resumes; | |
| public ResumeRepository() | |
| { | |
| this.resumes = new HashMap<>(); | |
| } | |
| public Resume saveResume(int jobseekerId, Resume resume) |
| $grid: ( | |
| "x ", | |
| " x ", | |
| " x ", | |
| " x ", | |
| " x ", | |
| " x ", | |
| " x ", | |
| " x ", |
| const path = require('path') | |
| const webpack = require('webpack') | |
| const HtmlWebpackPlugin = require('html-webpack-plugin') | |
| const ExtractTextPlugin = require('extract-text-webpack-plugin') | |
| const VENDOR_LIBS = [ | |
| 'react', 'react-dom', 'react-router', 'react-redux', 'redux', 'redux-thunk', 'lodash' | |
| ] | |
| module.exports = { |
| module.exports = { | |
| entry: { | |
| testname: './index.jsx', | |
| }, | |
| output: { | |
| path: 'path goes here', | |
| filename: '[name].js', | |
| }, | |
| module: { |
| { | |
| "presets": ["latest"], | |
| "plugins": ["transform-object-rest-spread", "babel-plugin-transform-react-jsx"] | |
| } |
| # Run this from the parent directory | |
| FROM golang:1.9-alpine as build_container | |
| ENV APP_NAME my-app | |
| ENV TARGET_DIR /go/src/github.com/MediaMath/${APP_NAME} | |
| COPY . ${TARGET_DIR} | |
| WORKDIR ${TARGET_DIR} |
| <key>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSExceptionDomains</key> | |
| <dict> | |
| <key>openweathermap.org</key> | |
| <dict> | |
| <key>NSIncludesSubdomains</key> | |
| <true/> | |
| <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> | |
| <true/> |
| Key/Command | Description |
|---|---|
| Tab | Auto-complete files and folder names |
| Ctrl + A | Go to the beginning of the line you are currently typing on |
| Ctrl + E | Go to the end of the line you are currently typing on |
| Ctrl + U | Clear the line before the cursor |
| Ctrl + K | Clear the line after the cursor |
| Ctrl + W | Delete the word before the cursor |
| Ctrl + T | Swap the last two characters before the cursor |