Heute Nachmittag: Zoll Ich hab jetzt schon keine Lust. Erwartet weitere Jammertweets über den Tag, die heute am Frühabend ihren Peak haben

Krypto-Interessierte unter meinen Followern, die Interesse an nem Keybase-Invite haben? Bitte eine DM schicken. Habe ein Paar.

Und ich dachte so: das hört sich aber sehr nach 80er J-Pop an und siehe da, es ist von 1985. Ich bin so toll ;) t.co/Ufa5Bp7sZ…

Mist…muss vermutlich morgen Einfuhrumsatzsteuer abdrücken :/ 6,39€…

Ach ja und drei Stunden warten oder so…

Großartig. Warte auf zwei Sachen aus Japan. Eine davon liegt jetzt beim Zoll. Ohne jede Info was es ist, außer dass es aus Japan kommt :/

Hat jemand zufälligerweise nen Beta-Key für keybase.io für mich?

Fixing a clang-error when installing the Command-T-plugin in OSX 10.9.2

I tried installing the Command-T-plugin in OS X 10.9.2 with a current command line-vim installed via homebrew. When I did the make-command I got the following error:

linking shared-object ext.bundle clang: error: unknown argument: '-multiply_definedsuppress' [-Wunused-command-line-argument-hard-error-in-future] clang: note: this will be a hard error (cannot be downgraded to a warning) in the future make: *** [ext.bundle] Error 1

The solution I found was to edit the Makefile in the folder ruby/command-t of the plug-in. I just commented out the ‘-multiply_definedsuppress’ in the following line: dldflags = -undefineddynamic_lookup -multiply_definedsuppress

So it looks now like this: dldflags = -undefineddynamic_lookup #-multiply_definedsuppress

after that make ran without any problems and command-t works for me. I didn't try it with MacVim yet and there might be problems because of different ruby-versions (this is described in the manual). But I use usually the command line-version anyways.