Skip to content

Instantly share code, notes, and snippets.

View Olaw2jr's full-sized avatar
🏠
Working from home

Oscar Olotu Olaw2jr

🏠
Working from home
View GitHub Profile
@mxkaske
mxkaske / columns.ts
Created August 2, 2024 19:45
How extend shadcn data-table with tanstack table's meta object to fix cell width
"use client";
import type { ColumnDef } from "@tanstack/react-table";
export interface Schema {
region: string;
trend: string;
p50: number;
}
@tomasz-stefaniak
tomasz-stefaniak / useDynamicTextareaSize.ts
Created February 12, 2024 18:23
Custom hook for dynamically resizing a textarea to fit its content.
/**
* Custom hook for dynamically resizing a textarea to fit its content.
* @param {React.RefObject<HTMLTextAreaElement>} textareaRef - Reference to the textarea element.
* @param {string} textContent - Current text content of the textarea.
* @param {number} maxHeight - Optional: maxHeight of the textarea in pixels.
*/
import { useEffect } from "react";
export const useDynamicTextareaSize = (
@KristofferEriksson
KristofferEriksson / useLongPress.ts
Created January 24, 2024 11:05
A simple useLongPress hook for React
import { useCallback, useEffect, useRef } from "react";
export function useLongPress({
delay,
onLongPress,
onClick,
onCancel,
onFinish,
onStart,
}: {
@KristofferEriksson
KristofferEriksson / use-copy-to-clipboard.ts
Created January 22, 2024 11:32
Custom React hook for effortless text copying to clipboard! It handles copy status with a customizable timer and error management.
import { useCallback, useState } from "react";
// Custom hook to copy text to clipboard
const useCopyToClipboard = (timeoutDuration: number = 1000) => {
const [copied, setCopied] = useState(false);
const [error, setError] = useState<Error | null>(null);
const copyToClipboard = useCallback(
async (text: string) => {
try {
@mjbalcueva
mjbalcueva / password-input.tsx
Last active March 31, 2025 12:37
shadcn ui custom password input
'use client'
import * as React from 'react'
import { EyeIcon, EyeOffIcon } from 'lucide-react'
import { Button } from '@/components/ui/button'
import { Input, type InputProps } from '@/components/ui/input'
import { cn } from '@/lib/utils'
const PasswordInput = React.forwardRef<HTMLInputElement, InputProps>(({ className, ...props }, ref) => {
@mattstobbs
mattstobbs / month-picker.tsx
Created July 26, 2023 22:15
A simple month picker that matches the style of shadcn/ui
import {
add,
eachMonthOfInterval,
endOfYear,
format,
isEqual,
isFuture,
parse,
startOfMonth,
startOfToday,
@fedme
fedme / USB WSL
Last active September 13, 2024 09:38
# Install the following on Windows:
# - Install CLI https://github.com/dorssel/usbipd-win/releases
# - and GUI https://gitlab.com/alelec/wsl-usb-gui/-/releases
# - Build custom WSL kernel following the "Build Custom Kernel" instructions at https://github.com/dorssel/usbipd-win/wiki/WSL-support
# BUT also enable the following:
# Device Drivers --->
# HID Support --->
# Check /dev/hidraw raw HID device support
# Check HID Support -> User-space I/O driver support for HID subsystem
@samuelyee
samuelyee / Ionic Android Development on WSL2.md
Last active March 10, 2025 03:52 — forked from fedme/Ionic Android Development on WSL.md
Ionic Android Development on WSL2 (Windows Subsystem for Linux)

Ionic Android Development on WSL2

This setup is assuming that GUI Linux apps can run in your WSL2.

Installing the required software

Execute the following commands to install Node, npm, git, Java, Ionic CLI:

cd ~
sudo apt update
sudo apt upgrade
@consentfactory
consentfactory / ttp_asa_template.txt
Last active February 6, 2024 20:13
TTP ASA Template
## TTP ASA Template
## Published 2021.10.12
## Jimmy Taylor
##
## Template for Cisco ASA configurations that organizes objects, object-groups, and ACLs
## for JSON using TTP Project
##
## TTP Project: https://github.com/dmulyalin/ttp
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@sineto
sineto / App.js
Last active February 18, 2025 15:36
User Authentication with Context API and Hooks (useContext, useState)
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { UserProvider } from './services/UserContext';
import Routes from './Routes'
function App() {
return (
<BrowserRouter>