| Evangelizo | Youversion | Dutch description |
|---|---|---|
| 1_Ch | 1CH | Uit het 1e boek der Kronieken |
| 2_Ch | 2CH | Uit het 2e boek der Kronieken |
| 1_Co | 1CO | Uit de 1e brief van de heilige apostel Paulus aan de christenen van Korinte |
| 2_Co | 2CO | Uit de 2e brief van de heilige apostel Paulus aan de christenen van Korinte |
| 1_Jn | 1JN | Uit de 1e brief van de apostel Johannes |
| 2_Jn | 2JN | Uit de 2e brief van de heilige apostel Johannes |
| 3_Jn | 3JN | Uit de 3e brief van de heilige apostel Johannes |
| 1_M | 1MA | Uit het 1e boek der Makkabeeën |
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
| // | |
| // SmartValueTransformer.swift | |
| // Panasonic IP setup | |
| // | |
| // Created by Damiaan on 12/04/18. | |
| // Copyright © 2018 Devian. All rights reserved. | |
| // | |
| import Foundation |
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
| // | |
| // SmartValueTransformer.swift | |
| // Panasonic IP setup | |
| // | |
| // Created by Damiaan on 12/04/18. | |
| // Copyright © 2018 Devian. All rights reserved. | |
| // | |
| import Foundation |
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
| ([CNIODarwin_mmsghdr]) $R2 = 9 values { | |
| [0] = { | |
| msg_hdr = { | |
| msg_name = (_rawValue = 0x00000001036bf000) | |
| msg_namelen = 16 | |
| msg_iov = 0x000000010183f000 | |
| msg_iovlen = 1 | |
| msg_control = nil | |
| msg_controllen = 0 | |
| msg_flags = 0 |
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
| const spannerClassName = "non-nested-spanner" | |
| const spannerQuerySelector = `.${spannerClassName}` | |
| /** | |
| * | |
| * @param {Range} range | |
| * @returns {?HTMLSpanElement} | |
| */ | |
| export function getContainingSpanner(range) { | |
| let cursor = range.commonAncestorContainer |
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
| import SwiftSyntax | |
| import Foundation | |
| /// creates `struct Magic { let hat: Int }` | |
| let magicStruct = SyntaxFactory.makeStructDecl( | |
| attributes: nil, | |
| modifiers: nil, | |
| structKeyword: SyntaxFactory.makeStructKeyword(), | |
| identifier: SyntaxFactory.makeIdentifier("Magic"), | |
| genericParameterClause: nil, |
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
| // | |
| // Stepper.swift | |
| // Stepperindicator | |
| // | |
| // Created by Damiaan on 13/01/2019. | |
| // Copyright © 2019 Devian. All rights reserved. | |
| // | |
| import UIKit |
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
| // Created by Damiaan on 17/01/2019. | |
| // Copyright © 2019 Devian. All rights reserved. | |
| import AppKit | |
| class TableDataSource<C: RandomAccessCollection>: NSObject, NSTableViewDataSource { | |
| public struct ColumnSpecifier { | |
| let keyPath: PartialKeyPath<C.Element> | |
| fileprivate let transformer: Any? | |
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
| // Created by Damiaan on 23/01/2019. | |
| // Copyright © 2019 Devian. All rights reserved. | |
| class SmartCollection<Element> { | |
| class Reference { | |
| private (set) var pointee: Element | |
| init(to element: Element) { | |
| pointee = element | |
| } |