Skip to content

Instantly share code, notes, and snippets.

📝 Pre-Interview Task (Optional)

Before the interview, we’d like to offer a quick hands-on task that can help make our discussion more productive and focused. This task is completely optional but encouraged if you have the time. It gives us a chance to dive deeper into your problem-solving, code understanding, and ability to work with modern tools.


📌 What This Task Is About

The goal is to create a simple Next.js application that:

# 🌟 Markdown Demo: All-In-One Cheat Sheet
Welcome to your **Markdown playground**. Below is a full showcase of what's possible with standard Markdown.
---
## 📌 Headers
# H1 - Main Title
## H2 - Section Title
@rafialikhan
rafialikhan / onename.txt
Created July 12, 2017 20:10
Verifying that "rafialikhan.id" is my Blockstack ID. https://onename.com/rafialikhan
Verifying that "rafialikhan.id" is my Blockstack ID. https://onename.com/rafialikhan
@rafialikhan
rafialikhan / firebase-json-to-csv.php
Last active August 11, 2018 17:47 — forked from Kostanos/json-to-csv.php
Convert Firebase JSON array file to CSV.Use the array keys as the first row. Command line using: PHP firebase-json-to-csv.php filename.json > filename.csv
#!/usr/bin/php
<?php
/*
* Convert JSON file to CSV and output it.
*
* JSON should be an array of objects, dictionaries with simple data structure
* and the same keys in each object.
* The order of keys it took from the first element.
*
* Since firebase has an object of objects (serialized) - we need to convert it to an array