I hereby claim:
- I am koehn on github.
- I am koehn (https://keybase.io/koehn) on keybase.
- I have a public key ASAxVSsmthQySpAjuJlqGcI4c5bVXQHf9H5bRcwT_fEchwo
To claim this, I am signing this object:
| Homebrew build logs for protobuf on macOS 11.0 | |
| Build date: 2020-08-05 07:26:06 |
I hereby claim:
To claim this, I am signing this object:
| docker volume ls -qf dangling=true | xargs -r docker volume rm |
| Run the Docker Quickstart Terminal app | |
| Run docker-machine restart default | |
| Run eval $(docker-machine env default) |
| #!/bin/bash --login | |
| shopt -s expand_aliases | |
| export RAILS_ENV=production | |
| export DB=postgres | |
| cd /home/diaspora/diaspora | |
| ./script/server |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: diaspora | |
| # Required-Start: apache2 | |
| # Required-Stop: | |
| # Should-Start: | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: | |
| # Short-Description: Diaspora social networking pod server |
| # no semicolons at eol | |
| :%s/;[ \t]*$// | |
| # no 'public' | |
| :%s/public // | |
| # convert Java 'bar.getFoo()' to Groovy 'bar.foo' in VIM | |
| :%s/\.\(get\|is\)\(\u\)\(\w\+\)()/.\l\2\3/g | |
| # convert Java 'foo.setBar(baz)' to Groovy 'foo.bar = baz' |
| ./configure --with-pam --with-solr --with-sql --with-mysql --with-zlib --with-bzlib |
| import java.util.List; | |
| public class GenericsQuiz { | |
| List<Number> listOfNumber; | |
| List<? extends Number> listOfExtendsNumber; | |
| List<? super Number> listOfSuperNumber; | |
| List<Integer> listOfInteger; | |
| List<? extends Integer> listOfExtendsInteger; | |
| List<? super Integer> listOfSuperInteger; | |