This is guide about how to configure multiple SSH keys for some Git host websites such as Github, Gitlab, among others.
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
##### Pull repo from Docker hub | |
`docker pull <image>` | |
##### List Docker images | |
`docker images` | |
## Docker build | |
docker build -f Dockerfile -t hobnob/crm-v1 . | |
##### List Docker running containers |
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
- View all tables | |
`\l` | |
- Switch to particular db | |
`\c jpa;` |
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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
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 React from 'react' | |
import { Editor } from '@tiptap/react' | |
import { | |
BoldSVG, | |
BulletsSVG, | |
ImageSVG, | |
ItalicSVG, | |
LinkSVG, |
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
/* eslint-disable @typescript-eslint/no-explicit-any */ | |
import { type TRPCQueryOptions } from '@trpc/tanstack-react-query'; | |
import { unstable_noStore } from 'next/cache'; | |
import { Fragment, Suspense, type ReactNode } from 'react'; | |
import { ErrorBoundary } from 'react-error-boundary'; | |
import { HydrateClient, prefetch as prefetchTRPC } from '@/trpc/server'; | |
type AwaitProps<T> = | |
| { | |
promise: Promise<T>; |
OlderNewer