Usage
phone`
your css styles go here
`
componentWillReceiveProps// A basic Dumb component which only renders using props. If you want to embed | |
// this kind of component into a backbone view, look into DumbComponent view | |
// that extends the backbone view | |
import React from 'react'; | |
export const DumbComponent = ({ value }) => { | |
return <h1>{value}</h1> | |
} |
Usage
phone`
your css styles go here
`
Hi, I’m CJ, I’m architect on the product engineering team, and I am technical lead of Eaze’s platform and infra teams. We’re responsible for the backend services that power Eaze, as well as the infrastructure that keeps them observable and maintainable. I’m planning on asking 5-6 questions, time permitting. I’m reading from a script here, just so you know, and I ask all candidates the same questions as best I can.
I think it’s important to acknowledge that interviewing is stressful, so I’ll do my best to not make it worse. I’m here to figure out what you’re interested in and what you’re great at. I’m looking for ways you’d make our team better. I won’t ask questions to trip you up. I also don’t ask coding questions.
I also want to acknowledge that this interview goes both ways: you’re trying to decide if I’d make a good colleague and if this would be a good place to work. I’ll leave five to ten minutes at the end to turn this around so you can ask me questions.
Q1: I have your resume
const theme = { | |
"global": { | |
"colors": { | |
"icon": { | |
"0": "#", | |
"1": "6", | |
"2": "6", | |
"3": "6", | |
"4": "6", | |
"5": "6", |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
The below code is the configuration for the Microsoft Visual Code tasks which will enable you to compile and run C program
Cmd + Shift + P
Configure task
( A task.json file will be created for that project )Simple press Cmd + Shift + B
to compile and run.
Note: Make sure you select the tab having C program as below tasks run on active tab in VS Code.
# Ruby CircleCI 2.0 configuration file | |
# | |
# Check https://circleci.com/docs/2.0/language-ruby/ for more details | |
# | |
version: 2 | |
jobs: | |
build: | |
docker: | |
# specify the version you desire here | |
- image: circleci/ruby:2.5.1-browsers |