Shortcut | Description |
---|---|
Ctrl+Shift+P | command prompt |
Ctrl+Alt+P | switch project |
Ctrl+P | go to file |
Ctrl+G | go to line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asdasdasdasddas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const csvFilePath = 'customer-data.csv'; | |
const uuidv1 = require('uuid/v1'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const csv = require('csvtojson'); | |
csv().fromFile(csvFilePath).then((jsonObj)=>{ | |
let buff = '' | |
let folderName = uuidv1(); | |
fs.mkdirSync(folderName); | |
buff = JSON.stringify(jsonObj); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.suvam; | |
import java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
class Shape{ | |
public Double length; | |
public Double breadth; |