Skip to content

Instantly share code, notes, and snippets.

View khcrysalis's full-sized avatar

sammy khcrysalis

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 23, 2025 21:01
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@drumnkyle
drumnkyle / CropImageToCircle.swift
Last active November 29, 2023 10:42
Code to mask a square image to a circle
// UIImage+Utils.swift
// This is just one way to do this.
public func croppedToCircle() -> UIImage {
// Begin a new image that will be the new image with the rounded corners
UIGraphicsBeginImageContextWithOptions(size, false, scale)
let circleWidth = size.width
let radius = circleWidth / 2