Skip to content

Instantly share code, notes, and snippets.

View tqvuong's full-sized avatar

Vuong Tran tqvuong

View GitHub Profile
@tqvuong
tqvuong / History|-10b7f12|entries.json
Last active October 9, 2022 00:50
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///Users/tqvuong/works/personal/air-ticket-frontend/src/views/Login/index.tsx","entries":[{"id":"gWs8.tsx","timestamp":1652621214530},{"id":"R6GC.tsx","timestamp":1652621458370},{"id":"FthC.tsx","timestamp":1652622396701},{"id":"zf8S.tsx","timestamp":1652622570381},{"id":"v3Q1.tsx","timestamp":1652622617782},{"id":"cbNa.tsx","timestamp":1652622647420},{"id":"zS5u.tsx","timestamp":1652622701548},{"id":"WQLt.tsx","timestamp":1652622896580},{"id":"Udfj.tsx","timestamp":1652622913832},{"id":"W4cb.tsx","timestamp":1652623137706},{"id":"dX3U.tsx","timestamp":1652751047590}]}
@tqvuong
tqvuong / installing-postman.md
Created September 24, 2020 04:42 — forked from ba11b0y/installing-postman.md
Installing Postman on Ubuntu/Gnome

Since Chrome apps are now being deprecated. Download postman from https://dl.pstmn.io/download/latest/linux

Although I highly recommend using a snap

sudo snap install postman

Installing Postman

tar -xzf Postman-linux-x64-5.3.2.tar.gz
@tqvuong
tqvuong / appEntryPoint.js
Created October 21, 2019 08:13 — forked from markerikson/appEntryPoint.js
Webpack React/Redux Hot Module Reloading (HMR) example
import React from "react";
import ReactDOM from "react-dom";
import configureStore from "./store/configureStore";
const store = configureStore();
const rootEl = document.getElementById("root");
@tqvuong
tqvuong / webstoemp-gulpfile.js
Created April 29, 2019 02:41 — forked from jeromecoupe/webstoemp-gulpfile.js
Gulp 4 sample gulpfile.js. For a full explanation, have a look at https://www.webstoemp.com/blog/switching-to-gulp4/
"use strict";
// Load plugins
const autoprefixer = require("autoprefixer");
const browsersync = require("browser-sync").create();
const cp = require("child_process");
const cssnano = require("cssnano");
const del = require("del");
const eslint = require("gulp-eslint");
const gulp = require("gulp");