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
// pages/Upload.tsx | |
import { getPresignedUrl } from "~/utils/files"; | |
export default function Upload() { | |
const uploadPhoto = async (e: React.ChangeEvent<HTMLInputElement>) => { | |
const file = e.target.files?.[0]; | |
const name = encodeURIComponent(file?.name as string); | |
const type = encodeURIComponent(file?.type as string); | |
const res = await getPresignedUrl({ name, type, size: "" + file!.size }); |
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
// pages/Upload.tsx | |
import { getPresignedUrl } from "~/utils/files"; | |
export default function Upload() { | |
const uploadPhoto = async (e: React.ChangeEvent<HTMLInputElement>) => { | |
const file = e.target.files?.[0]; | |
const name = encodeURIComponent(file?.name as string); | |
const type = encodeURIComponent(file?.type as string); | |
const res = await getPresignedUrl({ name, type, size: "" + file!.size }); |
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 { | |
Chapter, | |
Options, | |
} from "epubgen/util/mod.ts"; | |
const date = new Date(); | |
date.setFullYear(2000); | |
export const optionsAlice: Options = { |
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 { Column, DataTable } from '@saas-ui/react'; | |
interface ExampleData { | |
id: string | |
name: string | |
email: string | |
} | |
const columns: Column<ExampleData>[] = [ |
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 { Bot, Context, session, SessionFlavor } from 'grammy' | |
import { CustomSessionAdapter } from './session' | |
// This bot will collect some basic statistics about each chat. They can be | |
// retrieved with the `/stats` command. | |
// This is the data that will be saved per chat. | |
interface SessionData { | |
messages: number | |
edits: number |
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
/** @see https://discord.com/channels/612400042900193311/612406252164612129/869681421567000608 **/ | |
export async function queryPaginate<T>( | |
model: ModelType<T>, | |
pageNum = 1, | |
filter: MongooseFilterQuery<DocumentType<T>>, | |
populate?: string[], | |
): Promise<IPaginatedData<T[]>> { | |
const [docs, total] = await Promise.all([ | |
model | |
.find(filter) |
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 { extendTheme } from "@chakra-ui/react"; | |
import { mode } from "@chakra-ui/theme-tools"; | |
// Currently a bug with theme.config typings for initialColorMode. Workaround. | |
interface ThemeConfig { | |
useSystemColorMode?: boolean; | |
initialColorMode: "light" | "dark"; | |
} |
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 { Node, nodeInputRule } from "@tiptap/core"; | |
import { mergeAttributes } from "@tiptap/react"; | |
import { uploadImagePlugin, UploadFn } from "./upload_image"; | |
/** | |
* Tiptap Extension to upload images | |
* @see https://gist.github.com/slava-vishnyakov/16076dff1a77ddaca93c4bccd4ec4521#gistcomment-3744392 | |
* @since 7th July 2021 | |
* |
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
HOW TO UNBLOCK ANIMEPAHE (JUST IN CASE) AND OTHER BLOCKED SITES | |
## Introduction | |
Whenever you open a website, your device will send DNS request, most internet connection uses ISP's DNS servers by default, so basically your ISP and possibly government could know what sites you access. | |
This is basically how site blocking works. | |
Many ISPs have a blocklist on their DNS servers, if your device sends DNS request of a domain that is in their blocklist, they will block it. | |
Fortunately there are many ways to bypass it, one of them is by changing DNS on our devices, but if you are using a traditional way like by using 8.8.8.8 and 8.8.4.4, ISP could still sniff and intercept the DNS request because it's un-encrypted. |
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
// current code | |
const arrs = [ | |
{ | |
comments: 'asd', | |
movement: 'Back Squat', | |
userID: 'wDHZv3OL55SIymHkhMUejNleNkx1', | |
weight: '330', | |
}, | |
{ |