Skip to content

Instantly share code, notes, and snippets.

View eliwoods's full-sized avatar
🦐

3Li eliwoods

🦐
  • Recentive Analytics
  • San Francisco, CA
View GitHub Profile
WITH supplier_items AS (
SELECT
COALESCE(g.brand_id, gi.group_id) as supplier_id,
TRIM(trailing ' #IMS_SUPPLIER' from g.name) as supplier_name,
gi.item_id as catalog_id
FROM eaze_catalog.groups g
JOIN eaze_catalog.group_items gi
ON gi.group_id = g.id
JOIN eaze_catalog.items i
ON gi.item_id = i.id

Eaze Growth Engineer Homework

Our Front End code challenge for growth engineering applicants.

Project

We would like you to build a web app that displays the trending GIFs on Giphy. Users visiting the website should be able to search for GIFs and see a list of results. The user should be able to expand a GIF and see its details (username, rating, anything you think could be relevant).

Users should have a good user experience on desktop, tablet and mobile devices.