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
// | |
// BitArray.swift | |
// xFuncs | |
// | |
import Foundation | |
public class BitArray : CollectionType { | |
public typealias Index = Int |
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
// | |
// ServiceLocator.swift | |
// | |
// Created by Stefan Böther on 12.03.16. | |
// | |
// Inspired by the following => | |
// https://github.com/DivineDominion/mac-appdev-code/blob/master/DDDViewDataExample/ServiceLocator.swift | |
// https://gist.github.com/werediver/66ff8f13c900e9871070 | |
// https://github.com/Swinject/Swinject |
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
// | |
// IdGenerator.swift | |
// Created by Stefan Böther on 21.12.15. | |
// | |
import Foundation | |
class IdSequence : SequenceType { | |
func generate() -> AnyGenerator<Int32> { | |
var value : Int32 = 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
library(googleVis) | |
# Bundesländer | |
countries <- factor(c( | |
"Schleswig-Holstein","Hamburg","Niedersachsen","Bremen", | |
"Nordrhein-Westfalen","Hessen","Rheinland-Pfalz", | |
"Baden-Württemberg","Bayern","Saarland","Berlin","Brandenburg", | |
"Mecklenburg-Vorpommern","Sachsen","Sachsen-Anhalt", | |
"Thüringen")) |
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 static ulong fib1(int n) | |
{ | |
ulong a = 0; | |
ulong b = 1; | |
for (int i = 0; i < n; i++) | |
{ | |
ulong temp = a; | |
a = b; | |
b = temp + b; | |
} |
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
[Unit] | |
Description=Docker Socket for the API | |
[Socket] | |
ListenStream=2375 | |
BindIPv6Only=both | |
Service=docker.service | |
[Install] | |
WantedBy=sockets.target |
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 class AufnehmenAufgabe : IDomainCommand { | |
public Guid Id { get; } | |
public string Titel { get; } | |
public AufnehmenAufgabe(Guid id, string titel) | |
{ | |
Id = id; | |
Titel = titel; | |
} | |
} |
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
using System.Collections.Generic; | |
using System.Linq; | |
using Nancy; | |
using Nancy.Bootstrapper; | |
using FeatureSwitcher; | |
using txs.nextgen.apigateway.todo; | |
namespace txs.nextgen.apigateway | |
{ |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1f8FlqHY9rraoXNiw56ESSl2WYM68j5sMruqLQe47Km1GOwCM3yeWUNKx+CKoDGHSyU4wxd9Dzs+JaCrhVdCF8rE5sqDxmK6d2fCIAHShlTs5vEfHqGbnKEipFptgMHvKE8+EHjR32bFzyjkOHzIiOtfs+9H69/OfvbLr3AcNvxAgtV8AM9hzXH8N7Qo5A6ZfI9UBtoFSTzUnKikh4Mw92+XDRDwraWMiEc/8TvVnfK7BX9d4NaKWfRwSh3qBCbh0wZhWBWRNdsX+YYrmmkyd6eVnkhEpnhbbNVbHw0xBScStqM/VuU4NVF6UJaZt9DRcq+UCwJz76KS2LTY75wjt [email protected] |
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
using System.Collections.Generic; | |
using Superpower.Model; | |
using Superpower.Parsers; | |
using Superpower; | |
using System; | |
namespace datavault.dsl { | |
class DataVaultTokenizer : Tokenizer<DataVaultToken> { |
OlderNewer