I hereby claim:
- I am mbialon on github.
- I am mbialon (https://keybase.io/mbialon) on keybase.
- I have a public key ASAdNZ11LlmT8xsensmdPmm1wvrQzT9cvjIXIKczsp8Lqwo
To claim this, I am signing this object:
lorem ipsum |
I hereby claim:
To claim this, I am signing this object:
*.suo | |
*.user | |
obj | |
bin |
#!/bin/bash | |
first_rev=`git rev-list HEAD|tail -1` | |
git rev-list HEAD|grep -v $first_rev|xargs git show --pretty="format:" --name-only|sort|uniq |
"Co się martwisz? Co się smucisz? | |
Ze wsi jesteś, na wieś wrócisz." |
kill `ps aux|grep tomcat|grep -v grep|awk '{ print $2 }'` |
class DelegateInvocationHandler implements InvocationHandler { | |
private Object delegate; | |
public void setDelegate(Object delegate) { | |
this.delegate = delegate; | |
} | |
public Object invoke(Object target, Method method, Object[] args) | |
throws Throwable { | |
return method.invoke(delegate, args); |
class Client { | |
public static void main(String[] args) { | |
ServiceLoader<ReportGenerator> providers = ServiceLoader.load(ReportGenerator.class); | |
List<String> availableFormats = new ArrayList<String>(); | |
for (ReportGenerator generator : providers) { | |
availableFormats.add(generator.format()); | |
} | |
// user can select format from available options |
<jsp:doBody var="theBody" /> | |
<% String bc = (String) pageContext.getAttribute("theBody"); %> | |
<%= bc.toUpperCase() %> |
class Language { | |
private String languageCode; | |
} |