This file contains 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
2gua.rainbow-brackets | |
adampalhazi.vscode-debug-arrow-function | |
alexcvzz.vscode-sqlite | |
alfnielsen.vsc-organize-imports | |
aliariff.auto-add-brackets | |
andys8.jest-snippets | |
antfu.iconify | |
antfu.vite | |
apollographql.vscode-apollo | |
arcticicestudio.nord-visual-studio-code |
This file contains 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
# Salvar num arquivo ~/encode.sh, conceder direito de execução e | |
# executar desta forma (adaptar nomes de diretórios e arquivos para seu caso): | |
# $ ~/encode.sh ~/Video/bigFile.mp4 ~/Video/smallFile.mp4 | |
ffmpeg -i "$1" -vcodec h264 -acodec aac "$2" |
This file contains 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
// @ts-nocheck | |
import { PrismaClient } from '@prisma/client'; | |
let db: PrismaClient; | |
declare global { | |
let __db: PrismaClient | undefined; | |
} | |
// this is needed because in development we don't want to restart |
This file contains 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
{ | |
"git.enableSmartCommit": true, | |
"workbench.editor.decorations.colors": true, | |
"editor.minimap.enabled": false, | |
"editor.accessibilitySupport": "off", | |
"zenMode.hideLineNumbers": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"tailwindCSS.includeLanguages": { | |
"typescriptreact": "html", | |
"plaintext": "html", |
This file contains 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
1. Crie uma conta no Digital Ocean; | |
2. Crie um droplet Ubuntu (estas instruções são baseadas em Ubuntu) | |
3. Escolha o pacote LEMP para ser instalado com seu Ubuntu | |
4. Escolha ou associa sua chave publica para acesso ao servidor | |
5. Acesse seu server usando SSH (ssh root@<ip informado pelo DO>) |
This file contains 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
AxiosError: Request failed with status code 400 | |
at settle (/Users/vedovelli/Shamrock/app-new/node_modules/axios/lib/core/settle.js:19:12) | |
at IncomingMessage.handleStreamEnd (/Users/vedovelli/Shamrock/app-new/node_modules/axios/lib/adapters/http.js:505:11) | |
at IncomingMessage.emit (node:events:539:35) | |
at endReadableNT (node:internal/streams/readable:1345:12) | |
at processTicksAndRejections (node:internal/process/task_queues:83:21) { | |
code: 'ERR_BAD_REQUEST', | |
config: { | |
transitional: { | |
silentJSONParsing: true, |
This file contains 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
server { | |
listen 80; | |
server_name CHANGEME.app; | |
root /var/www/vhosts/CHANGEME.app/public; | |
index index.html index.htm index.php; | |
charset utf-8; | |
location / { |
This file contains 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 type { LoaderFunction, ActionFunction } from "remix"; | |
import { useLoaderData, useFetcher } from "remix"; | |
import invariant from "tiny-invariant"; | |
import cuid from "cuid"; | |
import React from "react"; | |
import type { Task, User } from "@prisma/client"; | |
import { requireAuthSession } from "~/util/magic-auth"; | |
import { ensureUserAccount } from "~/util/account"; | |
import { placeCaretAtEnd } from "~/components/range"; | |
import { getBacklog } from "~/models/backlog"; |
This file contains 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 { http } from "../../service/api"; | |
import { Card } from "./Card"; | |
import { Header, Spinner } from "../../components"; | |
import { useQuery } from "react-query"; | |
export default function Products() { | |
const { isLoading, isError, data } = useQuery( | |
"todos", | |
() => http.get("/products").then(({ data }) => data.products) // http contains baseURL with `/api` | |
); |
This file contains 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 { http } from "../../service/api"; | |
import { Card } from "./Card"; | |
import { Header, Spinner } from "../../components"; | |
import { useQuery } from "react-query"; | |
export default function Products() { | |
const { isLoading, isError, data } = useQuery( | |
"todos", | |
() => http.get("/products").then(({ data }) => data.products) // http container baseURL with `/api` | |
); |
NewerOlder