Skip to content

Instantly share code, notes, and snippets.

@kconner
kconner / macOS Internals.md
Last active August 1, 2025 02:17
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 July 2, 2025 19:11
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}"