Skip to content

Instantly share code, notes, and snippets.

@kconner
kconner / macOS Internals.md
Last active April 19, 2025 12:52
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@mkdika
mkdika / ruby_array_methods_cheatsheet.md
Last active November 28, 2024 02:54
Ruby arrays methods Cheatsheet

Ruby Arrays Methods Cheatsheet

This is collection of Ruby Array methods usage, tips & tricks.

Codes block

# All array method can use do..end block.
[1,2,3].each do |number|
 world = "World #{number}"