Skip to content

Instantly share code, notes, and snippets.

View embassem's full-sized avatar
🎯
Focusing

Bassem Tourky embassem

🎯
Focusing
View GitHub Profile
@embassem
embassem / Result Extention
Created January 31, 2020 21:59
add extension for result Type to access value and error
extension Result {
var value: Success? {
guard case .success(let value) = self else { return nil }
return value
}
/// Returns the associated error value if the result is a failure, `nil` otherwise.
var error: Failure? {
guard case .failure(let error) = self else { return nil }
@embassem
embassem / wwdc2014-videos-and-pdf
Created January 6, 2020 01:25 — forked from jianpx/wwdc2014-videos-and-pdf
wwdc 2014 videos and pdf download links, including HD/SD version.
http://devstreaming.apple.com/videos/wwdc/2014/403xxksrj0qs8c0/403/403_hd_intermediate_swift.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/403xxksrj0qs8c0/403/403_sd_intermediate_swift.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/403xxksrj0qs8c0/403/403_intermediate_swift.pdf?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/419xxli6f60a6bs/419/419_hd_advanced_graphics_and_animation_performance.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/419xxli6f60a6bs/419/419_sd_advanced_graphics_and_animation_performance.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/419xxli6f60a6bs/419/419_advanced_graphics_and_animation_performance.pdf?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/101xx36lr6smzjo/101/101_hd.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/101xx36lr6smzjo/101/101_sd.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2014/236xxwk3fv82sx2/236/236_hd_building_interruptible_and_responsive_interactions.mov?dl=1
http://devstreaming.apple.com/videos/wwdc/2
@embassem
embassem / remove Pods
Created December 20, 2019 20:54
remove an pod directory in your working Directory
find . -name Pods -type d -exec rm -rf {} \;
@embassem
embassem / Moya MultiTarget with AccessTokenAuthorizable
Created December 11, 2019 12:50
use AccessTokenAuthorizable with MultiTarget
extension MultiTarget: AccessTokenAuthorizable {
public var authorizationType: AuthorizationType {
// here you will have to check whether the `target` is also conforming to `AccessTokenAuthorizable` or not...
if target is AccessTokenAuthorizable {
guard let authTarget = target as? AccessTokenAuthorizable else {
return .none
}
return authTarget.authorizationType
}
return .none
@embassem
embassem / clear gitignore cached
Created November 20, 2019 09:49
clear gitignore cached
git rm -r --cached .
git add .
git commit -m ".gitignore fix"
@embassem
embassem / SimplePersistence.swift
Last active July 29, 2019 12:19
wrapper around UserDefaults
protocol PersistenceKey {
var key:String { get }
}
enum User:String, PersistenceKey {
var key: String {
return self.rawValue
}
@embassem
embassem / swift gitignore
Created March 5, 2019 14:43
save swift git ignoer into file
$ curl -o .gitignore https://raw.githubusercontent.com/github/gitignore/master/Swift.gitignore
@embassem
embassem / AppDelegate.swift
Created February 28, 2019 15:21
Customize BackBarButton Image
// in App Delegate Call self.changeBackBarButtonImage()
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// customize Navigation back Button Image
self.changeBackBarButtonImage()
@embassem
embassem / AsynchronousOperation.swift
Created February 17, 2019 21:22 — forked from Sorix/AsynchronousOperation.swift
Subclass of NSOperation to make it asynchronous in Swift 3
//
// AsynchronousOperation.swift
//
// Created by Vasily Ulianov on 09.02.17.
// Copyright © 2017 Vasily Ulianov. All rights reserved.
//
import Foundation
/// Subclass of `Operation` that add support of asynchronous operations.
@embassem
embassem / main.swift
Created May 13, 2018 14:32 — forked from ahmedk92/main.swift
Set default app language
class MyApplication: UIApplication {
override init() {
let notFirstOpenKey = "notFirstOpen"
let notFirstOpen = UserDefaults.standard.bool(forKey: notFirstOpenKey)
if notFirstOpen == false {
UserDefaults.standard.set(["ar"], forKey: "AppleLanguages")
UserDefaults.standard.set(true, forKey: notFirstOpenKey)
}
super.init()
}