Skip to content

Instantly share code, notes, and snippets.

View aerialcombat's full-sized avatar
🎯
Focusing

aerialcombat

🎯
Focusing
View GitHub Profile
@aerialcombat
aerialcombat / goproxy.go
Last active May 12, 2024 19:28
http/https proxy in Go
package main
import (
"flag"
"io"
"log"
"net"
"net/http"
"strings"
)
@aerialcombat
aerialcombat / UIFont+Extensions.swift
Last active November 23, 2022 16:23
UIFont extension for scaling fonts with UIFontMetrics
//
// UIFont+Extensions.swift
//
// UIFont extension for scaling fonts with UIFontMetrics
//
import UIKit
extension UIFont {
func scaledFont(forTextStyle textStyle: UIFont.TextStyle) -> UIFont {