Skip to content

Instantly share code, notes, and snippets.

View tiennguyendang's full-sized avatar

Tien Nguyen Dang tiennguyendang

View GitHub Profile
@tiennguyendang
tiennguyendang / launchpad.json
Last active January 3, 2024 10:03
Launchpad example
[
{
"id": "Launchpad-Test-Page-9886ac8169604f29b7e15de5cd0ea008",
"background": {
"type": "image/png",
"url": "https://images.unsplash.com/photo-1682686581498-5e85c7228119?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
},
"logo": {
"type": "image/png",
"url": "https://images.unsplash.com/photo-1703868673582-becc3bd199d8?q=80&w=2868&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
@tiennguyendang
tiennguyendang / paginated-response-nestjs-swagger.ts
Created September 7, 2023 09:14
A example about how to create paginated DTO class with NestJS Swagger
import { Controller, Get } from "@nestjs/common";
import {
ApiOkResponse,
ApiOperation,
ApiProperty,
ApiTags,
} from "@nestjs/swagger";
class PaginationMeta {
/**
@tiennguyendang
tiennguyendang / http.ts
Last active April 10, 2023 07:13
Create an http client with axios and Typescript
import axios, { AxiosInstance, AxiosRequestConfig } from 'axios'
const headers: Readonly<Record<string, string | boolean>> = {
Accept: 'application/json',
'Content-Type': 'application/json; charset=utf-8',
'X-Requested-With': 'XMLHttpRequest'
}
class Http {
private instance: AxiosInstance | null = null
sudo apt-get update
sudo apt-get install -y \
ca-certificates \
curl \
gnupg \
lsb-release
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \