Skip to content

Instantly share code, notes, and snippets.

View lenblazy's full-sized avatar
🎯
Focusing

Lennox Mwabonje lenblazy

🎯
Focusing
View GitHub Profile
@lenblazy
lenblazy / TaskConcurrencyManifesto.md
Created September 25, 2025 14:28 — forked from lattner/TaskConcurrencyManifesto.md
Swift Concurrency Manifesto
@lenblazy
lenblazy / Storing-Images-On-Github.md
Created September 24, 2025 13:14 — forked from hughesd22/Storing-Images-On-Github.md
Storing Images and Demos in your Repo

Storing Images and Demos in your Repo

In this quick walkthough you'll learn how to create a separate branch in your repo to house your screenshots and demo gifs for use in your master's readme.

How to

1. Clone a fresh copy of your repo

In order to prevent any loss of work it is best to clone the repo in a separate location to complete this task.

2. Create a new branch

Create a new branch in your repo by using git checkout --orphan assets

@lenblazy
lenblazy / operatorCharacters.swift
Created August 3, 2023 08:07 — forked from natecook1000/operatorCharacters.swift
Allowed characters for Swift operators
import Foundation
extension UnicodeScalar : ForwardIndexType {
public func successor() -> UnicodeScalar {
return UnicodeScalar(value + 1)
}
}
var operatorHeads: [UnicodeScalar] = Array("=-+!*%<>&|^~?".unicodeScalars)
operatorHeads += Array("\u{00A1}" ... "\u{00A7}")