$ docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Andreas": "male", "Arely": "female", "Mortimer": "male", "Pauletta": "female", "Zita": "female", "Casen": "male", "Araceli": "female", "Ronald": "female", "Eura": "female", "Aracely": "female", "Destany": "female", "Cael": "male", "Kaleigh": "female", "Ayleen": "female", "Nikhil": "male", "Elex": "male", "Myah": "female", "Channie": "female", "Evalyn": "female", "Less": "male", "Jerel": "male", "Sandi": "female", "Lesa": "female", "Paul": "male", "Sandy": "female", "Kraig": "male", "Merlin": "male", "Vanesa": "female", "Matthew": "female", "Althea": "female", "Lucille": "female", "Samatha": "female", "Hamilton": "male", "Johnie": "female", "Dionne": "female", "Stephania": "female", "Stephanie": "male", "Raheem": "male", "Murl": "female", "Lafe": "male", "Ginger": "female", "Audy": "male", "Hughie": "male", "Jewell": "female", "Edra": "female", "Tatyanna": "female", "Quincy": "male", "Harvey": "male", "Agustus": "male", "Basil": "male", "Casey": "male", "Kaydence": "female", "Leilani": "female", "Dejuan": "m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ | |
| "name": "Mombasa", | |
| "code": 1, | |
| "capital": "Mombasa City" | |
| }, { | |
| "name": "Kwale", | |
| "code": 2, | |
| "capital": "Kwale" | |
| }, { | |
| "name": "Kilifi", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var path = require('path'); | |
| module.exports = { | |
| entry: path.resolve(__dirname, 'src') + '/app/index.js', | |
| output: { | |
| path: path.resolve(__dirname, 'dist') + '/app', | |
| filename: 'bundle.js', | |
| publicPath: '/app/' | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* index.css */ | |
| body{ | |
| background: #eee; | |
| margin: 20px; | |
| font-family: tahoma; | |
| } | |
| #todo-wrapper{ | |
| width: 80%; |
FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState, useEffect, useCallback } from "react"; | |
| import { Platform } from "react-native"; | |
| import * as VideoThumbnails from "expo-video-thumbnails"; | |
| import { Image } from "@showtime-xyz/universal.image"; | |
| import Spinner from "@showtime-xyz/universal.spinner"; | |
| import { View } from "@showtime-xyz/universal.view"; | |
| interface VideoThumbnailProps { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client"; | |
| import React from "react"; | |
| import { View, StyleSheet, Animated, Easing, ViewStyle } from "react-native"; | |
| const BASE_COLORS = { | |
| dark: { primary: "rgb(17, 17, 17)", secondary: "rgb(51, 51, 51)" }, | |
| light: { | |
| primary: "rgb(250, 250, 250)", | |
| secondary: "rgb(205, 205, 205)", |
The most commonly used commands for building apps with the EAS CLI
eas init- create a new project on expo.deveas build:configure- create eas.json with default configuration
eas build --profile development- development client, JS is loaded from your local machine