- 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
Resource | Notes |
---|
-
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
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 |
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 = '/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
<?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 | |
/* general constants for the account and end point */ | |
$UUID = "ABCDEF123456"; | |
$SECRET_KEY = "ABCDEFGHIJKLMNO1234567890123456"; | |
$SERVER = 'https://api-stage.500friends.com'; | |
$ENDPOINT = '/batch_api'; | |
/* create hash for post data */ | |
$post_data = array( |
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
<script src="https://d3aa0ztdn3oibi.cloudfront.net/javascripts/ff.loyalty.widget.js" type="text/javascript"></script> | |
<iframe id="ff_member_iframe" style="width:769px;height:1045px;border:0" frameBorder="0"></iframe> | |
<script type="text/javascript"> | |
_ffLoyalty.initialize( "YOUR_ACCOUNT_ID" ); | |
_ffLoyalty.loadIframe({ email: "CUSTOMER_EMAIL", auth_token: "AUTH_TOKEN"}); | |
</script> |