Skip to content

Instantly share code, notes, and snippets.

View DearVikki's full-sized avatar

DearVikki DearVikki

View GitHub Profile
// this is another one
@DearVikki
DearVikki / tmux-cheatsheet.markdown
Created April 23, 2022 15:02 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@DearVikki
DearVikki / index.html
Created February 20, 2020 14:28
react typescript webpack init
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
</head>
<body>
<div id="container"></div>
@DearVikki
DearVikki / Install
Created February 18, 2020 06:21
typescript webpack init
yarn add webpack webpack-dev-server typescript ts-loader
yarn add webpack-cli --dev
@DearVikki
DearVikki / nodejs tsconfig
Last active January 30, 2020 07:25
typescriptCollection
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": false,
"baseUrl": ".",