Skip to content

Instantly share code, notes, and snippets.

View RealDyllon's full-sized avatar
🎯
Focusing

Dyllon Gunawardhana RealDyllon

🎯
Focusing
View GitHub Profile
@RealDyllon
RealDyllon / index.js
Last active May 3, 2021 14:43
AWS Lambda ES6 Async Handler Template
export async function handler(event, context) {
// await stuff here
}
@RealDyllon
RealDyllon / store.js
Created May 27, 2021 09:58
React Native Redux store with reactrotron debugging in DEV
import { applyMiddleware, compose, createStore } from 'redux'
import thunk from 'redux-thunk'
import reducers from 'reducers'
const middleware = [thunk]
let enhancers
// eslint-disable-next-line
if (__DEV__) {
@RealDyllon
RealDyllon / populate_mssqldb.py
Created April 1, 2022 06:26
populate mssqldb
from datetime import datetime
from faker import Faker
from faker.providers import date_time, address
from random import randint
fake = Faker()
fake.add_provider(date_time)
productsInShops = [