Author: Chris Lattner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
LLDB comes with a great set of commands for powerful debugging.
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.