Made by Lindsey to demonstrate my understanding of Reactjs. :) I've created a card-like theme that presents the user with a list of cities and a description of the city. Theres also an Attractions slide that shows user's a list of attractions for each city.
A site that uses JWT (javascript web tokens) allowing users to login and view milkshakes recipes.
Credits: Illustration by @dev_lindseyk
This guide has been cross-posted on Free Code Camp.
Grab is Southeast Asia (SEA)'s leading transportation platform and our mission is to drive SEA forward, leveraging on the latest technology and the talented people we have in the company. As of May 2017, we handle 2.3 million rides daily and we are growing and hiring at a rapid scale.
The git command-line utility has plenty of inconsistencies http://steveko.wordpress.com/2012/02/24/10-things-i-hate-about-git/
A GUI like http://sourcetreeapp.com is often helpful, but staying on the command line usually quicker. This is a list of the commands I use most frequently, listed by functional category:
git status
list which (unstaged) files have changed
DROP TYPE IF EXISTS grocery; | |
CREATE TYPE grocery AS ENUM ( | |
'Main', | |
'Snack', | |
'Lunch', | |
'Breakfast' | |
); | |
CREATE TABLE IF NOT EXISTS shopping_list ( | |
id SERIAL PRIMARY KEY, |
API hack project |
The majority of today’s users – and most certainly hiring managers – have a set of expectations for the look and feel of an app. These expectations come from daily use of software designed and built by professionals, who follow a set of standards that we can mimic. To make sure the quality of your dev work doesn’t get overlooked at first glance, it’s crucial for us to avoid design choices that deviate too much from common industry standards. Before submitting your project, quickly go through this design checklist with your mentor to avoid common mistakes and to implement simple best practices in UI/UX design.
- Leaving the fonts and styles completely untouched from default (text, forms, links).
- Placing UI elements or content up against other elements or the edge of the window.
- Overusing neon or overly bright, glaring colors for blocks of text or large backgrounds.
- Using font sizes or color c
Image for user flow. |
1. As a new user, I want to link all of my bank accounts to one place. | |
Priority: High | |
2. As a new user, I want to be able to see all transactions. | |
Priority: High | |
3. As a new user, I want to be able to categorize my income and spending. | |
Priority: High | |
4. As a new user, I want to be able to see everything they have concerning security and preventing any leaks. | |
Priority: High | |
5. As a new user, I want to be given links to find out more information about finances and savings tips. | |
Priority: Low |
1.) Visit the YouTube API documentation discussed above and find the subscription list endpoint documentation. List 1 required parameter and 2 optional parameters for this endpoint. For each parameter listed, state the data type and give an example of the allowed values. -required parameter: part, datatype: string, value example: snippet | |
optional | |
--parameter: maxResults, datatype: unsigned integer, values: 0-50, default:5 | |
--paramter: order, datatype: string, value: subscription_order_relevance | |
2.) Visit the Google Maps Geocoding API documentation found here: https://developers.google.com/maps/documentation/geocoding/intro. Construct the full URL for requesting the geographic coordinates of The Statue of Liberty in JSON format. | |
New York, NY 10004 | |
****** --https://maps.googleapis.com/maps/api/geocode/json?address=NewYork,+NY+10004&key=YOUR_API_KEY | |
Do the same for your own address. |