Coming soon: T-shirts!
Remember Viet Cuong Truong who designed our logo? He’s secretly been working on our first batch of t-shirts and today he sent a few pictures of the first prototype. We think they look awesome and can’t wait to show them off around Berlin. Coming up for sale soon :)
Thanks Cuong, you rock! Oh, and did you see that you can now order our stickers online, great way of supporting your favorite reading service!
I don’t like buying cloth, there’s a fix for that. Soon.
Source: readmill
Finished reading B by Sarah Kay
Love the book with the illustrated version of the poem she performed at a TED talk (http://www.ted.com/talks/lang/en/sarah_kay_if_i_should_have_a_daughter.html)
Being a person is not a pat formula, but a quest, a mystery, a leap of faith.
Finished reading Little Brother by Cory Doctorow
I usually don’t read a lot of novels, but this one really got me hooked
Moving Files from one Git Repository to Another, Preserving History
If you want to copy files from repository A to repository B.
git clone <git repository A url>
cd <git repository A directory>
git remote rm origin
git filter-branch --subdirectory-filter <directory 1> -- --all
mkdir <directory 1>
mv * <directory 1>
git add .
git commit
git clone <git repository B url>
cd <git repository B directory>
git remote add repo-A-branch <git repository A directory>
git pull repo-A-branch master
git remote rm repo-A-branch



