See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| { | |
| "terminal.integrated.fontFamily": "MesloLGS NF", | |
| "editor.codeLensFontFamily": "Fira Code", | |
| "editor.fontFamily": "Cascadia Code Light, Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "maven.terminal.useJavaHome": true, | |
| "editor.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "choseToUpdateConfiguration", | |
| "files.exclude": { | |
| "**/.classpath": true, |
| { | |
| "terminal.integrated.fontFamily": "MesloLGS NF", | |
| "editor.codeLensFontFamily": "Fira Code", | |
| "editor.fontFamily": "Cascadia Code Light, Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "maven.terminal.useJavaHome": true, | |
| "editor.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "choseToUpdateConfiguration", | |
| "files.exclude": { | |
| "**/.classpath": true, |
| 'use strict'; | |
| const fs = require('fs'); | |
| process.stdin.resume(); | |
| process.stdin.setEncoding('utf-8'); | |
| let inputString = ''; | |
| let currentLine = 0; |
| 'use strict'; | |
| import { WriteStream, createWriteStream } from "fs"; | |
| process.stdin.resume(); | |
| process.stdin.setEncoding('utf-8'); | |
| let inputString: string = ''; | |
| let inputLines: string[] = []; | |
| let currentLine: number = 0; |
| public static class CacheFactory | |
| { | |
| /// <summary> | |
| /// This is a thread-safe, lazy singleton. See http://www.yoda.arachsys.com/csharp/singleton.html | |
| /// for more details about its implementation. | |
| /// </summary> | |
| public static DataCacheFactory Instance | |
| { | |
| get { return Nested.CacheFactory; } | |
| } |
| import React, { PureComponent } from 'react'; | |
| import Radar from '@bit/recharts.recharts.radar'; | |
| import RadarChart from '@bit/recharts.recharts.radar-chart'; | |
| import PolarGrid from '@bit/recharts.recharts.polar-grid'; | |
| import PolarAngleAxis from '@bit/recharts.recharts.polar-angle-axis'; | |
| import PolarRadiusAxis from '@bit/recharts.recharts.polar-radius-axis'; | |
| const data = [ | |
| { | |
| subject: 'Devops', A: 120, B: 110, fullMark: 150, |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |
| FROM adoptopenjdk/openjdk9-openj9:latest | |
| # Change "latest" for "alpine" or to a specific version. | |
| RUN mkdir /opt/shareclasses | |
| RUN mkdir /opt/app | |
| COPY app.jar /opt/app | |
| CMD ["java", "-Xmx128m", "-XX:+IdleTuningGcOnIdle", "-Xtune:virtualized", "-Xscmx128m", "-Xscmaxaot100m", "-Xshareclasses:cacheDir=/opt/shareclasses", "-jar", "/opt/app/app.jar"] |