Skip to content

Instantly share code, notes, and snippets.

View zvonicek's full-sized avatar
:octocat:

Petr Zvoníček zvonicek

:octocat:
View GitHub Profile
@zvonicek
zvonicek / key.md
Created January 22, 2023 17:16
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

final class RunLoopSource {
private static let eventHandler: @convention(c) (UnsafeMutableRawPointer?) -> Void = { context in
unsafeBitCast(context, to: RunLoopSource.self).eventHandler()
}
private let eventHandler: () -> Void
private let mode: CFRunLoopMode
private let runLoop: CFRunLoop
private var source: CFRunLoopSource!