Skip to content

Instantly share code, notes, and snippets.

View bmaxtar's full-sized avatar
👽
Try To Be Better

Moctar Mamadou B. bmaxtar

👽
Try To Be Better
View GitHub Profile
@catalinmiron
catalinmiron / index.js
Created December 15, 2021 08:37
Starter Code - ScrollToIndex tutorial
import { Entypo, Feather } from '@expo/vector-icons';
import faker from 'faker';
import * as React from 'react';
import { Dimensions, FlatList, Text, TouchableOpacity, View } from 'react-native';
const { width, height } = Dimensions.get('screen');
faker.seed(10);
const data = [...Array(20).keys()].map(() => ({
@hbaker
hbaker / scrollable-divi-mobile-menu.css
Created January 25, 2018 00:50
Divi Theme - Make Divi's Mobile Menu Scrollable
.et_mobile_menu {
overflow-y:scroll!important;
max-height:80vh!important;
-overflow-scrolling:touch!important;
-webkit-overflow-scrolling:touch!important;
}
@vasanthk
vasanthk / System Design.md
Last active September 22, 2024 21:07
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?