Skip to content

Instantly share code, notes, and snippets.

View limpido's full-sized avatar

Vio limpido

View GitHub Profile
@limpido
limpido / grokking_to_leetcode.md
Created August 12, 2022 05:35 — 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

"""
f(1) = -1
f(-1) = 1
"""
def f1(x):
return -x
def f2(x):
@limpido
limpido / README.md
Created November 29, 2023 15:32 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@limpido
limpido / douban-ebook-finder.js
Last active October 20, 2024 06:48
Douban Ebook Finder
// ==UserScript==
// @name Douban eBooks Finder
// @version 1.0
// @description search the book on your preferred ebook platforms with just one click
// @author limpido
// @license MIT License
// @match https://book.douban.com/subject/*
// @downloadURL https://update.greasyfork.org/scripts/496938/Douban%20eBooks%20Finder.user.js
// @updateURL https://update.greasyfork.org/scripts/496938/Douban%20eBooks%20Finder.user.js
// ==/UserScript==
@limpido
limpido / elf_format_cheatsheet.md
Created February 26, 2025 05:41 — forked from x0nu11byt3/elf_format_cheatsheet.md
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation