Skip to content

Instantly share code, notes, and snippets.

View mdb1's full-sized avatar
🎯
Focusing

Manu Herrera mdb1

🎯
Focusing
View GitHub Profile
@mdb1
mdb1 / industry-related-reading.md
Last active November 11, 2023 08:30
Industry Related Reading
@mdb1
mdb1 / reading-q4-2021.md
Last active January 1, 2022 20:52
Industry Related Reading - Q4 2021

Books

The Missing README: Great explanations about every aspect of the software engineering world.

Hell Yeah Or No: Thoughts around what’s worth doing, fixing faulty thinking, and making things happen.

Factfulness: Ten Reasons We're Wrong About the World—and Why Things Are Better Than You Think.


@mdb1
mdb1 / reading-q3-2021.md
Last active December 1, 2021 12:30
Industry Related Reading - Q3 2021
@mdb1
mdb1 / reading-q1-2022.md
Last active March 31, 2022 22:09
Industry Related Reading - Q1 2022
@mdb1
mdb1 / reading-q3-2022.md
Last active September 30, 2022 12:01
Industry-Related reading - Q3 2022
@mdb1
mdb1 / reading-q4-2022.md
Last active October 29, 2022 18:20
Industry-Related reading - Q4 2022
@mdb1
mdb1 / Color+Extension.swift
Last active December 26, 2022 14:16
Color Extension SwiftUI
import SwiftUI
/// Namespaces.
extension Color {
/// Colors for Texts.
enum Text {}
/// Colors for Backgrounds
enum Background {}
/// Colors for Borders.
enum Border {}
@mdb1
mdb1 / SemanticColor.swift
Last active December 24, 2022 18:47
Using semantic colors
Text("Your text")
.padding()
.foregroundColor(.Text.primary)
.background(Color.Background.primary)
@mdb1
mdb1 / CGFloat+Spacing.swift
Created December 24, 2022 18:45
CGFloat Spacing Constants
import Foundation
extension CGFloat {
/// Spacing constants to use across the app.
enum Spacing {
/// Extra small spacing. (4 points).
static let xSmall: CGFloat = 4.0
/// Small spacing. (8 points).
static let small: CGFloat = 8.0
/// Medium spacing. (16 points).