Forked from stunaz's Pen Basic Usage.
Forked from stunaz's Pen Basic Usage.
A Pen by Hitesh Sahu on CodePen.
'use strict'; | |
process.stdin.resume(); | |
process.stdin.setEncoding('utf-8'); | |
let inputString = ''; | |
let currentLine = 0; | |
process.stdin.on('data', function(inputStdin) { | |
inputString += inputStdin; |
{ | |
"GirlImages": [{ | |
"description": "Lady with a Teddy", | |
"image-url": "https://images.pexels.com/photos/3348748/pexels-photo-3348748.jpeg" | |
}, | |
{ | |
"description": "Girl with camera", | |
"image-url": "https://images.pexels.com/photos/3812944/pexels-photo-3812944.jpeg" | |
}, | |
{ |
import express from "express" | |
const bodyParser = require('body-parser'); | |
/** | |
* Example of using ES6 syntectic sugar to create Express JS server | |
*/ | |
class ExpressServer { | |
constructor(hostname =process.env.LOCAL_HOST, port= process.env.DEFAULT_PORT) { | |
this.serverName = 'Express Server'; | |
this.hostname = hostname; |
Forked from stunaz's Pen Basic Usage.
Forked from stunaz's Pen Basic Usage.
A Pen by Hitesh Sahu on CodePen.
<html> | |
<head> | |
<base href="http://demos.telerik.com/kendo-ui/radar-charts/radar-area"> | |
<style>html { font-size: 14px; font-family: Arial, Helvetica, sans-serif; }</style> | |
<title></title> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.223/styles/kendo.common-material.min.css" /> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.223/styles/kendo.material.min.css" /> | |
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.1.223/styles/kendo.material.mobile.min.css" /> | |
<script src="https://kendo.cdn.telerik.com/2017.1.223/js/jquery.min.js"></script> |
Forked from Ollie's Pen Scrolling controls for HTML5 video.
A Pen by Hitesh Kumar Sahu on CodePen.
## How to Prepare | |
You need to follow a very organized and disciplined approach If you are preparing for the Software Engineering Job at Facebook/ Google/ Amazon/Microsoft etc. | |
(Example: You may use following approach, for a two months plan - around 250 hours) | |
Actually all these companies e.g. MS, Google, Amazon, Facebook, Apple follow an approach on which that measure the thought process of a candidate. |