Tools | Name | Version |
---|---|---|
Platform | Android | OS 4.4 KitKat Level 19 or higher |
Programming Language | Kotlin | JDK 8.x |
Architecture | Model View ViewModel | |
Rest Response | JSON | |
Local Database | SQLite | |
View Injection | ViewBinding |
- secure copy | https://www.youtube.com/watch?v=fmMg6cyww14&t=201s
$: scp -r dump/ [email protected]:/tmp
- mongorestore with port | https://docs.mongodb.com/manual/reference/program/mongorestore/
$: mongorestore --db domsdb /tmp/dump --uri="see-docs"
Modern javascript from the beginning
- console.table(data) = visualized data with ta
- typeof data = get to know type data of the variable
- Number(string) = convert number any type to type of number
- String(number) = convert number any type to type of string
- toFixed(decimal) = to add custom decimal number
- parseInt(string or number) = just parse to the integer
- parseFloat(string or number) = parse to the float type
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
import React, { Component } from 'react'; | |
// import ReactDOM from 'react-dom'; | |
import PropTypes from 'prop-types'; | |
import Linkify from 'react-linkify'; | |
import { | |
renderToString, | |
} from 'react-dom/server'; | |
import Parser from 'html-react-parser'; | |
const style = |
import classNameProp from 'class-name-prop'; | |
import { useRouter } from 'next/router'; | |
import React from 'react'; | |
import styles from './RouteIndicator.module.css'; | |
const DONE_DURATION = 250; | |
export default function RouteIndicator() { | |
const router = useRouter(); |
There are 2 questions in the assessment, which you can answer in any language. For each test, please commit your code to a private repository on GitHub, with a README.md on how to run it. When you’re done, simply add seahyc and yjwong as collaborators to your private repository.
There's no time limit, but do time yourself for every question beginning from the time you start reading it till your final local commit, and let me know how long you took for each question in the README. We recommend that you set aside 1.5 hours for each task in the test.
You can take in the input either via command-line arguments, or simply assume that it's assigned at the top of your script. Either way, let us know how to inject an input. We'll adapt our test cases accordingly. Very importantly, we trust you to write your solutions independent of any external help.
import { Pipe, PipeTransform } from '@angular/core'; | |
/** | |
* Strips any html characters | |
* from the `target`, abbreviates the resulting string | |
* to the max length, and appends an ellipsis character | |
* to the result. | |
* | |
* @example | |
* {{ title | ellipsis:200 }} | |
*/ |
Africa/Abidjan | |
Africa/Accra | |
Africa/Addis_Ababa | |
Africa/Algiers | |
Africa/Asmara | |
Africa/Asmera | |
Africa/Bamako | |
Africa/Bangui | |
Africa/Banjul | |
Africa/Bissau |
Encode your private RSA key
$ cat my_private_key | base64 -w0
# -w0 to avoid newlines
Add the base64 string to your project variables. Use it in your .gitlab-ci.yml