This setup is assuming that GUI Linux apps can run in your WSL2.
Execute the following commands to install Node, npm, git, Java, Ionic CLI:
cd ~
sudo apt update
sudo apt upgrade
"use client"; | |
import type { ColumnDef } from "@tanstack/react-table"; | |
export interface Schema { | |
region: string; | |
trend: string; | |
p50: number; | |
} |
/** | |
* 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 = ( |
import { useCallback, useEffect, useRef } from "react"; | |
export function useLongPress({ | |
delay, | |
onLongPress, | |
onClick, | |
onCancel, | |
onFinish, | |
onStart, | |
}: { |
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 { |
'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) => { |
import { | |
add, | |
eachMonthOfInterval, | |
endOfYear, | |
format, | |
isEqual, | |
isFuture, | |
parse, | |
startOfMonth, | |
startOfToday, |
# 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 |
This setup is assuming that GUI Linux apps can run in your WSL2.
Execute the following commands to install Node, npm, git, Java, Ionic CLI:
cd ~
sudo apt update
sudo apt upgrade
## 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 |
import React from 'react'; | |
import { BrowserRouter } from 'react-router-dom'; | |
import { UserProvider } from './services/UserContext'; | |
import Routes from './Routes' | |
function App() { | |
return ( | |
<BrowserRouter> |