I hereby claim:
- I am ralfw on github.
- I am ralfwestphal (https://keybase.io/ralfwestphal) on keybase.
- I have a public key whose fingerprint is DB86 CB14 FBC9 3336 36CE EFC5 0B02 0605 E101 C2ED
To claim this, I am signing this object:
| /* | |
| * Ralf Westphal, Hamburg | |
| * info@ralfw.de, @ralfw, http://blog.ralfw.de | |
| */ | |
| using System; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| namespace kata | |
| { |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.IO; | |
| namespace headfirst.hexdmper | |
| { | |
| class MainClass | |
| { | |
| public static void Main (string[] args) | |
| { | |
| var filename = Get_filename_from_commandline (args); |
| using System; | |
| using System.Collections.Generic; | |
| namespace GeneratePrimes.FlowDesign | |
| { | |
| public class PrimeGenerator | |
| { | |
| const int SMALLEST_POSSIBLE_PRIME = 2; | |
| /** | |
| * Created by ralfw on 24.12.14. | |
| * Coding Dojo der CCD SchooL: http://ccd-school.de/coding-dojo/ | |
| * Kata-Beschreibung: https://app.box.com/files/0/f/885439646/1/f_15903236703 | |
| */ | |
| class Display { | |
| void ausgeben(String text) { | |
| println text | |
| } |
| package version1; | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| import java.io.BufferedReader; | |
| import java.io.FileReader; | |
| import java.util.Scanner; | |
| public class Umbreche { | |
| // flow defined inline | |
| public ExportReport Export(DateTime fromMonth, DateTime toMonth) { | |
| // create month range | |
| // get balance sheets for month range | |
| // extract transaction items | |
| // create filename | |
| // export | |
| // create export report | |
| } |
| class Pathfinder{ | |
| public int Determine_distance(Node start, Node destination) { | |
| var min_distance_found = int.MaxValue; | |
| Find_paths (start, destination, | |
| new List<Edge> (), | |
| ref min_distance_found); | |
| return min_distance_found; | |
| } |
| class Stream<T> : IEnumerable<T> { | |
| private IEnumerable<T> generator; | |
| public Stream(IEnumerable<T> generator) { this.generator = generator; } | |
| private StreamEnumerator<T> enumerator; | |
| public Stream() { this.enumerator = new StreamEnumerator<T> (); } | |
| public void Enqueue(T element) { | |
| this.enumerator.Enqueue (element); |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| public class ConsoleServiceProvider : IDisposable | |
| { | |
| private readonly string serviceFilepath; | |
| private readonly string commandlineParams; |