Skip to content

Instantly share code, notes, and snippets.

View tbrlpld's full-sized avatar

Tibor Leupold tbrlpld

View GitHub Profile
@kconner
kconner / macOS Internals.md
Last active January 8, 2026 12:12
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:

@tbrlpld
tbrlpld / base.css
Last active May 21, 2020 00:02
My basic CSS resets
* {
box-sizing: border-box;
font-family: 'Helvetica Neue', Arial, sans-serif;
}
html,
body,
h1,
h2,
@mgol
mgol / ie11-only.md
Last active March 25, 2025 00:51
How to easily not serve JS and/or CSS to IE<11

Here's how to make your site not load CSS and/or JS in IE older than 11:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=8,9,11">
        <title>Page title</title>
        <!--[if !IE]>-->