Skip to content

Instantly share code, notes, and snippets.

function flattenObject(oldObject) {
const newObject = {};
flattenHelper(oldObject, newObject, '');
return newObject;
function flattenHelper(currentObject, newObject, previousKeyName) {
for (let key in currentObject) {
let value = currentObject[key];

Weekly(?) Company Engineering Chalk talk limited series

Format

  • 30 minutes of presentation/screenshare
    • How it used to work
    • How it works now
    • What you aspire to improve going forward
  • 15-30 mins of Q&A

Instagram API notes

Initial implementation (social widget on SoulConnected)

This initial implementation is done via instagram's "Basic display API", and allows you to query your own instagram account for media, comments, user ID, and other basic fields. We will use it for ST-225 to display the official account's 4 most recent posts on the SoulConnected Page.

Non-technical prerequisites

  • Official SoulCycle Facebook account (to create the app)
  • Official SoulCycle instagram account (to pull images from)