Skip to content

Instantly share code, notes, and snippets.

Collecting Unused: 25 steps
Error:
* In program cave purge:
* When purging everything:
* When loading ID keys from '/var/db/paludis/repositories/installed/data/x11-libs---libXau/1.0.8-r1:0:C.25730.1519762025.964123.C':
* Name '' is not a valid slot name (paludis::SlotNameError)
### Keybase proof
I hereby claim:
* I am Korbik on github.
* I am korbik (https://keybase.io/korbik) on keybase.
* I have a public key whose fingerprint is B6B0 928C FB64 735B 4877 F009 2413 1A29 7AEC 7E19
To claim this, I am signing this object:
@Korbik
Korbik / 1427142997-install-dev-lang_perl-5.20.2:5.20::arbor.out
Created March 24, 2015 23:16
1427142997-install-dev-lang_perl-5.20.2:5.20::arbor.out
=== Running ebuild phase killold as root:root...
=== Starting builtin_killold
=== Done builtin_killold
=== Completed ebuild phase killold
=== Running ebuild phases init saveenv as paludisbuild:paludisbuild...
=== Starting builtin_init
=== Done builtin_init
=== Starting builtin_saveenv
=== Done builtin_saveenv
=== Completed ebuild phases init saveenv
@Korbik
Korbik / Either
Last active October 13, 2015 06:28
Implementation of Either for Google Guava
import com.google.common.base.Function;
import com.google.common.base.Optional;
import java.util.NoSuchElementException;
public abstract class Either<T, U, W> {
public abstract boolean isLeft();
public abstract boolean isRight();
<?php
abstract class Mother implements Interface {}
class Daughter extends Mother {}