Skip to content

Instantly share code, notes, and snippets.

View ogheneovo12's full-sized avatar

xorbious ogheneovo12

View GitHub Profile
@ogheneovo12
ogheneovo12 / templates.md
Last active October 2, 2025 09:12
VILLAM HUB TEAM LEAD PROGRESS UPDATE TEMPLATES

Templates:

πŸ“… Weekly Target Update Template

Team: Week: (Sept 30 – Oct 6)

🎯 Weekly Objectives

Objective 1
Objective 2 \

@ogheneovo12
ogheneovo12 / CommonHelpersAndUtilities.md
Last active September 19, 2023 15:30
Common Helper Functions

This is a gist that contains utility methods and helpers that i have commonly used across multiple projects

@ogheneovo12
ogheneovo12 / PlaceAutoCompleteInput.tsx
Last active August 6, 2023 19:49
Custom Placeautocomplete hook
import React from "react";
import usePlaceAutoComplete from "./usePlaceAutoComplete";
import * as Popover from "@radix-ui/react-popover";
import "./styles.css";
export function PlaceAutoComplete({
onSelect = () => {},
initialValue = "",
}: {
initialValue?: string;