Keybase proof
I hereby claim:
- I am alexito4 on github.
- I am alejandromp (https://keybase.io/alejandromp) on keybase.
- I have a public key ASBeRlhREhfheuUvVgFu8p0uvh_gwMzlE74WIJ7jk_wRtwo
To claim this, I am signing this object:
// swiftlint:disable line_length | |
// swiftlint:disable variable_name | |
import Foundation | |
#if os(iOS) || os(tvOS) || os(watchOS) | |
import UIKit | |
#elseif os(OSX) | |
import AppKit | |
#endif | |
import RxSwift |
I hereby claim:
To claim this, I am signing this object:
import SwiftUI | |
import Combine | |
struct Object: Identifiable { | |
var id: String { name } | |
let name: String | |
} | |
final class Data: ObservableObject { |
for (const checkbox of document.querySelectorAll('.js-reviewed-checkbox')) { | |
if (checkbox.attributes["data-ga-click"].value.includes("value:false")) { | |
checkbox.click(); | |
} | |
} |
import SwiftUI | |
import Combine | |
import AlamofireImage | |
let imageDownloader = ImageDownloader( | |
configuration: ImageDownloader.defaultURLSessionConfiguration(), | |
downloadPrioritization: .fifo, | |
maximumActiveDownloads: 4, | |
imageCache: AutoPurgingImageCache() | |
) |
#!/usr/bin/swift sh | |
import Foundation | |
guard let path = CommandLine.arguments.dropFirst().first else { exit(1) } | |
print(path) | |
let content = try! String(contentsOfFile: path) | |
let lines = content |
What's New in Swift | |
Creating Apps for a Global Audience | |
Introducing Podcast Analytics | |
What's New in Cocoa Touch | |
Using Accelerate and simd | |
Live Screen Broadcast with ReplayKit | |
I Have This Idea For An App... | |
Automatic Strong Passwords and Security Code AutoFill | |
Measuring and Optimizing HLS Performance | |
What’s New in ARKit 2 |
I hereby claim:
To claim this, I am signing this object:
protocol Stack { | |
typealias Element | |
mutating func push(value: Element) | |
mutating func pop() -> Element? | |
} | |
struct ArrayStack<T>: Stack { | |
.... |
require 'nokogiri-plist' | |
require 'uri' | |
class SRLItem | |
attr_accessor :title | |
attr_accessor :url | |
attr_accessor :source | |
def initialize(dict) |