LinkedIn Assessments - JavaScript 2019
- ~15 minutes duration
- 70th percentile required to pass and get a badge
- Retry in 3 months if you don’t pass
| "use client"; | |
| import React, { useEffect, useState } from "react"; | |
| import { | |
| FontManrope, | |
| FontManrope600, | |
| FontNunito, | |
| FontRubik, | |
| } from "@/styles/fonts"; | |
| import { Button, Input, Typography } from "@material-tailwind/react"; |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| sudo apt update | |
| sudo apt upgrade | |
| # remove elementary softwares | |
| sudo apt purge scratch-text-editor epiphany-browser epiphany-browser-data | |
| sudo apt purge midori-granite | |
| sudo apt purge noise | |
| sudo apt purge software-center | |
| sudo apt purge bluez | |
| sudo apt purge modemmanager |
| import javafx.application.Application; | |
| import javafx.scene.Scene; | |
| import javafx.scene.layout.*; | |
| import javafx.scene.paint.Color; | |
| import javafx.scene.shape.*; | |
| import javafx.stage.*; | |
| import org.scenicview.ScenicView; | |
| // Java 8 code | |
| public class ClippedShadow extends Application { |
| 'use strict'; | |
| const path = require('path'); | |
| const del = require('del'); | |
| const {mix} = require('laravel-mix'); | |
| const env = require('prop-env'); | |
| const basePath = (...fp) => path.join(__dirname, ...fp || ''); | |
| const assetPath = (...fp) => basePath('resources/assets', ...fp); | |
| const publicPath = (...fp) => basePath('public', ...fp); |