Skip to content

Instantly share code, notes, and snippets.

View arouel's full-sized avatar

André Rouél arouel

View GitHub Profile

Keybase proof

I hereby claim:

  • I am arouel on github.
  • I am before (https://keybase.io/before) on keybase.
  • I have a public key ASDS5EnZ-yrdG5v3lLfyTNO5TChY9EgO2oXgy-BBavD8lQo

To claim this, I am signing this object:

@arouel
arouel / TaskCompositionDemo.sc
Last active August 29, 2015 14:02
Scalaz's Tasks can be composed easily
package com.github.before.examples
import scalaz.concurrent._
/**
* Example how to compose Scalaz Tasks with a For-Comprehension
*/
object TaskCompositionDemo {
// first task
@arouel
arouel / ListTest.java
Created October 18, 2011 21:01
Examples for an initialized list to replace element on a particular position.
package de.rouel;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import junit.framework.Assert;
import org.junit.Test;