test
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
<?php | |
$secret_key = YOUR_SECRET_KEY_HERE; | |
$uuid = YOUR_UUID_HERE; | |
$endpoint = '/api/enroll.json'; | |
$email = "[email protected]"; | |
echo $email . "<br><br>"; | |
$url_data = array( | |
"uuid" => $uuid, |
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
<?php | |
$secret_key = YOUR_SECRET_KEY_HERE; | |
$uuid = YOUR_UUID_HERE; | |
$endpoint = '/data/customer/update_attributes.json'; | |
$email = "[email protected]"; | |
$url_data = array( | |
"uuid" => $uuid, | |
"email" => $email |
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
just a placeholder file for now |
-
This is intended to give you an idea of the type of tasks you will be asked to do for the live coding interview.
-
You may choose either Pug or EJS as a template engine (here and in the live coding interview).
-
The live coding interview will have all the same sections as this practice exam, but the exact tasks will vary. For example, you might be asked to:
-
write a different kind of SQL query
Resource | Notes |
---|
- Mabel Chan, Co-founder, Albert's List
- Artur Meyster, Founder, Breaking into Startups
- Erin Wilson, Co-founder, Talent Engineer, Hirepool.io
- Abbie Isidro, Creative and Marketing Recruiter - Beauty, Aquent
- Noah Wisna, Head of Talent and Operations, 10 x 10
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 { Switch, Route, Link } from "react-router-dom"; | |
import Home from "./Home"; | |
import Menus from "./Menus"; | |
import Locations from "./Locations"; | |
import About from "./About";export default function App() { | |
return ( | |
<div> | |
<nav> | |
<Link to="/">Our Restaurant</Link> | |
<Link to="/menus">Menus</Link> |
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 { useParams, Link } from "react-router-dom"; | |
export default function Locations() { | |
// We can use the `useParams` hook here to access | |
// the dynamic pieces of the URL. | |
const { id } = useParams();// in a real app, this info would come from the server | |
const locationData = { | |
"san-francisco": { | |
name: "San Francisco", |