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
// | |
// 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
// | |
// 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
// | |
// BitArray.swift | |
// xFuncs | |
// | |
import Foundation | |
public class BitArray : CollectionType { | |
public typealias Index = Int |
NewerOlder