Skip to content

Instantly share code, notes, and snippets.

@thinktwice13
thinktwice13 / grokking_to_leetcode.md
Created January 13, 2024 18:21 — forked from tykurtz/grokking_to_leetcode.md
Grokking the coding interview equivalent leetcode problems

GROKKING NOTES

I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.

So below I made a list of leetcode problems that are as close to grokking problems as possible.

Pattern: Sliding Window

@thinktwice13
thinktwice13 / go-http2.go
Last active November 8, 2023 11:42
Go with http2-prior-knowledge
package main
import (
"golang.org/x/net/http2"
"net"
"net/http"
)
func main() {
// curl -v --http2-prior-knowledge http://localhost:8080
@thinktwice13
thinktwice13 / ingress-nginx
Created July 8, 2020 08:59 — forked from shahnawaz/ingress-nginx
k8s - v1.16 | ingress-nginx - v1 (Error from server (InternalError): error when creating "STDIN": Internal error occurred: failed calling webhook "validate.nginx.ingress.kubernetes.io": Post https://ingress-nginx-controller-admission.ingress-nginx.svc:443/extensions/v1beta1/ingresses?timeout=30s: x509: certificate signed by unknown authorit)
apiVersion: v1
kind: Namespace
metadata:
name: ingress-nginx
labels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/instance: ingress-nginx
---