Skip to content

Instantly share code, notes, and snippets.

View kikiwora's full-sized avatar

Roman Suvorov kikiwora

View GitHub Profile
@lukepistrol
lukepistrol / FormatStyle+AbbreviatedIntegerStyle.swift
Created September 6, 2022 19:46
Large Integer Formatter (K,M,B,…) Swift
struct AbbreviatedIntegerStyle: FormatStyle {
typealias FormatInput = Int
typealias FormatOutput = String
func format(_ value: Int) -> String {
let absolute = abs(value)
let number = Double(value)
func rnd(_ number: Double) -> String {
@vishar0
vishar0 / remove-title-notifications.user.js
Last active October 30, 2025 23:48
Tampermonkey script to remove unread notification count from tab titles
// ==UserScript==
// @name remove-title-notifications
// @namespace distractions
// @version 0.1
// @description Tampermonkey script to remove unread notification count from tab titles
// @author Viswanath Sivakumar
// @match */*
// @grant none
// ==/UserScript==
@lattner
lattner / TaskConcurrencyManifesto.md
Last active March 7, 2026 21:39
Swift Concurrency Manifesto
@alanzeino
alanzeino / lldb-debugging.md
Last active March 5, 2026 20:59
LLDB debugging with examples

LLDB Debugging Cheat Sheet

Commands

LLDB Commands

LLDB comes with a great set of commands for powerful debugging.

help

Your starting point for anything. Type help to get a list of all commands, plus any user installed ones. Type 'help for more information on a command. Type help to get help for a specific option in a command too.