- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Fragment, Suspense, type ReactNode } from 'react'; | |
| import { ErrorBoundary } from 'react-error-boundary'; | |
| type AwaitProps<T> = | |
| | { | |
| promise: Promise<T>; | |
| children: (data: T) => ReactNode; | |
| fallback?: ReactNode; | |
| errorComponent?: ReactNode | null; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client"; | |
| import React, { useEffect, useId, useState } from "react"; | |
| import { motion, AnimatePresence, MotionConfig } from "framer-motion"; | |
| import { PlusIcon, XIcon } from "lucide-react"; | |
| import { createPortal } from "react-dom"; | |
| import { cn } from "@/lib/utils"; | |
| import { buttonVariants } from "../button"; | |
| const transition = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ----------- simple-select.js ----------- */ | |
| import * as React from 'react'; | |
| import Select from 'react-select'; | |
| import type { Props } from 'react-select'; | |
| import { defaultClassNames, defaultStyles } from './helper'; | |
| import { | |
| ClearIndicator, | |
| DropdownIndicator, | |
| MultiValueRemove, | |
| Option |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import z from "zod"; | |
| export async function safeFetch<T>( | |
| schema: z.Schema<T>, | |
| input: RequestInfo, | |
| init?: RequestInit | |
| ): Promise<T> { | |
| const response = await fetch(input, init); | |
| if (!response.ok) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from 'react'; | |
| import { DateTime } from 'luxon'; | |
| import { Calendar as CalendarIcon } from 'lucide-react'; | |
| import { Button } from '@/components/ui/Button'; | |
| import { Calendar } from '@/components/ui/Calendar'; | |
| import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/Popover'; | |
| import { cn } from '@/lib/utils'; | |
| import { SelectSingleEventHandler } from 'react-day-picker'; | |
| import { Label } from '@/components/ui/Label'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("canvas fingerprint: " + canvas_fingerprint()); | |
| function check_canvas(){ | |
| var elem = document.createElement('canvas'); | |
| return elem; | |
| } | |
| function canvas_fingerprint(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! function e(t, r, n) { | |
| function i(o, s) { | |
| if (!r[o]) { | |
| if (!t[o]) { | |
| var c = "function" == typeof require && require; | |
| if (!s && c) return c(o, !0); | |
| if (a) return a(o, !0); | |
| var d = new Error("Cannot find module '" + o + "'"); | |
| throw d.code = "MODULE_NOT_FOUND", d |
NewerOlder
