Skip to content

Instantly share code, notes, and snippets.

@timbennett
timbennett / notebook.ipynb
Last active April 21, 2024 13:55
Realtime Sydney Buses API tutorial
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@leonardofed
leonardofed / README.md
Last active July 5, 2024 01:31
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.


@joelgrus
joelgrus / run_length_encoding.py
Created February 1, 2018 05:30
I get daily interview coding problems in the mail, this was the jerkiest way I could think of to do run length encoding
"""
Run-length encoding is a fast and simple method of encoding strings.
The basic idea is to represent repeated successive characters
as a single count and character. For example, the string
"AAAABBBCCDAA" would be encoded as "4A3B2C1D2A".
Implement run-length encoding and decoding. You can assume
the string to be encoded has no digits and consists solely of alphabetic
characters. You can assume the string to be decoded is valid.
"""