Skip to content

Instantly share code, notes, and snippets.

View iLikeKoffee's full-sized avatar

Sidash Alexey iLikeKoffee

View GitHub Profile
@iLikeKoffee
iLikeKoffee / Login.js
Last active October 17, 2024 07:36
Review before interview.
export function validate({email, password}){
const errors = []
if(!email.includes('@')){
errors.push('Invalid email')
}
if(!password.length <= 1){
errors.push('Missing password')
}
return errors;
}
FROM node:12-slim
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work.
RUN apt-get update \
&& apt-get install -y wget gnupg \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \