Skip to content

Instantly share code, notes, and snippets.

View vinodkv2511's full-sized avatar

Vinod Krishna Vellampalli vinodkv2511

View GitHub Profile
@vinodkv2511
vinodkv2511 / fishinghook.md
Created September 12, 2023 08:52 — forked from vijayjangid/fishinghook.md
React Fishing Hook

Given a Pond (array of Fishes) where Below is the Fish object:

// Fish
{
name: string,
size: 'small'|'medium'|'large'
hungry: boolean
}
[uwsgi]
http-socket = :8000
chdir = app
module = ToDo.wsgi
master = 1
processes = 2
threads = 2
@vinodkv2511
vinodkv2511 / ToDo Dockerfile
Created May 17, 2019 05:29
Dockerfile for ToDo
FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y build-essential \
python3 \
python3-dev \
python3-pip
COPY . app