Skip to content

Instantly share code, notes, and snippets.

View Himujjal's full-sized avatar
🏠
Working from home

Himujjal Upadhyaya Himujjal

🏠
Working from home
View GitHub Profile
@Himujjal
Himujjal / NOTE.md
Last active September 13, 2020 03:16
Notes on Startup India
@Himujjal
Himujjal / 15-sept-2020.md
Last active September 15, 2020 20:49
Twitch Stream TODO

15th September, 2020

Time: 15th Sept

GOALS: Make up for the all lost days today!

  • Solving Chapter 8 from craftinginterpreters in Rust - III (2 hours)
  • 20 minutes of Gita
  • Solving the exercises from Chapter 8 in Rust - I (2 hours)
@Himujjal
Himujjal / init.vim
Last active July 19, 2020 17:16 — forked from benawad/init.vim
My nvim setup
call plug#begin('~/AppData/Local/nvim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
"Plug 'tsony-tsonev/nerdtree-git-plugin'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
Plug 'ctrlpvim/ctrlp.vim' " fuzzy find files
Plug 'scrooloose/nerdcommenter'
@Himujjal
Himujjal / Dockerfile
Last active July 17, 2020 10:51
Azure Flask Applicaiton
# This is the base image that we will be using (python:3 that is)
FROM python:3
# set a directory for the app
WORKDIR /usr/src/app
# copy all the files to the container
COPY . .
# install dependencies
@Himujjal
Himujjal / settings.json
Last active July 7, 2020 18:43
WSL Profile settings
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"profiles": [{
// Make changes here to the powershell.exe profile
"acrylicOpacity": 0.8,
"background": "#202040",
"closeOnExit": true,
to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice
stun:
stun.l.google.com:19302,
stun1.l.google.com:19302,
stun2.l.google.com:19302,
stun3.l.google.com:19302,
stun4.l.google.com:19302,
stun.ekiga.net,
stun.ideasip.com,
@Himujjal
Himujjal / stuns
Created May 27, 2020 10:02 — forked from zziuni/stuns
STUN server list
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list
# A list of available STUN server.
stun.l.google.com:19302
stun1.l.google.com:19302
stun2.l.google.com:19302
stun3.l.google.com:19302
stun4.l.google.com:19302
stun01.sipphone.com
stun.ekiga.net
@Himujjal
Himujjal / The Technical Interview Cheat Sheet.md
Created June 19, 2019 15:44 — forked from prashant-shahi/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Big-O Complexity Chart

Data Structure Basics

Common Data Structure operations

@Himujjal
Himujjal / is-private-mode.js
Created July 24, 2018 06:23 — forked from jherax/is-private-mode.js
Detect if a browser is in Private Browsing mode
/**
* Detect if the browser is running in Private Browsing mode
*
* @export
* @returns {Promise}
*/
export default function isPrivateMode() {
return new Promise((resolve) => {
const on = () => resolve(true); // is in private mode
const off = () => resolve(false); // not private mode
@Himujjal
Himujjal / module1.html
Created April 26, 2018 03:27
Medium article on HTML-components module 1 file
<h2>
<% props.prop1 %>
</h2>