| 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
| 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
| 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
| ([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
| // | |
| // 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 |
I hereby claim:
- I am dev1an on github.
- I am dev1an (https://keybase.io/dev1an) on keybase.
- I have a public key ASAfYYEU3qZuXxduwzUsO2t3MyjczjlXueGxOxpafEd1Fwo
To claim this, I am signing this object:
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 Foundation | |
| import NIO | |
| final class Echo: ChannelInboundHandler { | |
| typealias InboundIn = AddressedEnvelope<ByteBuffer> | |
| typealias OutboundOut = AddressedEnvelope<ByteBuffer> | |
| static let response = "You sent: ".data(using: .utf8)! | |
| func channelRead(ctx: ChannelHandlerContext, data: NIOAny) { |
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
| 1111111 A1 | |
| 1111112 a2 | |
| 1111113 a3 | |
| 1111114 Aaron | |
| 1111115 ab | |
| 1111116 Aba | |
| 1111121 Ababus | |
| 1111122 abactor | |
| 1111123 abactus1 | |
| 1111124 abactus2 |
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
| public struct WhenExpression<T> { | |
| let successClosure: (()->T)? | |
| public func `else`(failClosure: @escaping ()->T) -> T { | |
| // failClosure actually never escapes the function but the compiler forces me to annotate it with @escaping | |
| return (successClosure ?? failClosure)() | |
| } | |
| } | |
| public func when<T>(_ condition: Bool, successClosure: @escaping ()->T) -> WhenExpression<T> { | |
| return WhenExpression(successClosure: condition ? successClosure : nil) |