Skip to content

Instantly share code, notes, and snippets.

@stvhwrd
stvhwrd / LeetCodeQuestions.md
Last active July 6, 2024 17:07 — forked from krishnadey30/LeetCodeQuestions.md
Curated List of Top 75 LeetCode
@stvhwrd
stvhwrd / Makefile
Created March 25, 2019 23:39 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@stvhwrd
stvhwrd / protobuf-from-source.md
Last active November 12, 2019 17:15 — forked from diegopacheco/latest-protobuf-ubuntu-18-04.md
How to Install Latest Protobuf on Ubuntu 18.04

Building from Source

sudo apt install autoconf automake libtool curl make g++ unzip -y
git clone https://github.com/google/protobuf.git
cd protobuf
git submodule update --init --recursive
./autogen.sh
./configure
make