This file contains 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
export TERM=xterm-256color | |
source /Users/jloucim/workspaces/olivierverdier/zsh-git-prompt/zshrc.sh | |
#PROMPT='%B%m%~%b$(git_super_status) %# ' | |
PROMPT='%~%b$(git_super_status) %# ' | |
#export PS1="\[\e[1;30m\]\W\[\e[m\] \\$ " | |
alias ll='ls -lG' | |
export LSCOLORS=gxfxcxdxbxegedabagacad # Dark lscolor scheme |
This file contains 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
import UIKit | |
var str = "Hello, playground" | |
class Action { | |
var id: String = "" | |
var eventData: Dictionary<String,Any> = [:] | |
var link: String = "" | |
} |
This file contains 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
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Presenter/MLCQLListingPresenter.m | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Presenter/MLCQLListingPresenter.h | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol/MLCQLListingPresenterProtocol.h | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol/MLCQLListingViewProtocol.h | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol/MLCQLReusableCell.swift | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/View | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/View/MLCQLListingViewController.xib | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing |
This file contains 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
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Presenter/MLCQLListingPresenter.m | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Presenter/MLCQLListingPresenter.h | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol/MLCQLListingPresenterProtocol.h | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol/MLCQLListingViewProtocol.h | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/Protocol/MLCQLReusableCell.swift | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/View | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing/LibraryComponents/Classes/Implementation/Listing/View/MLCQLListingViewController.xib | |
.//mobile-ios/Pods/MLClassifiedsQuoteListing |
This file contains 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
// | |
// UIView+GlowBackground.swift | |
// GlowBackgroundView | |
// | |
// Created by Javier Loucim on 9/8/17. | |
// Copyright © 2017 Qeeptouch. All rights reserved. | |
// | |
import Foundation | |
import UIKit |
This file contains 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
extension TicketShort: Diffable { | |
var diffIdentifier: String { | |
return id | |
} | |
static func ==(lhs: TicketShort, rhs: TicketShort) -> Bool { | |
return lhs.id == rhs.id | |
} |
This file contains 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
extension MessagesViewController: ListAdapterDataSource { | |
func objects(for listAdapter: ListAdapter) -> [ListDiffable] { | |
var objects:Array<ListDiffable> = Array<ListDiffable>() | |
for item in data { | |
switch item { | |
case is String: | |
objects.append(item as! ListDiffable) | |
case is TicketShort: | |
objects.append((item as! TicketShort).diffable()) |
This file contains 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
// | |
// TicketSectionController.swift | |
// | |
// Created by Javier Loucim on 8/5/17. | |
// Copyright © 2017 Javier Loucim. All rights reserved. | |
// | |
import Foundation | |
import UIKit | |
import IGListKit |
This file contains 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
// | |
// Diffable.swift | |
// | |
// Created by danielgalasko on 8/5/17. | |
// | |
import Foundation | |
import IGListKit |
This file contains 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
import Foundation | |
import UIKit | |
extension String { | |
//MARK: - Localized | |
var localized: String { | |
return NSLocalizedString(self, tableName: "Main", bundle: Bundle.main, value: "", comment: "") |
NewerOlder