This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package example; | |
import java.lang.annotation.*; | |
@Target({ElementType.METHOD, ElementType.TYPE}) | |
@Retention(RetentionPolicy.RUNTIME) | |
@Inherited | |
@Documented | |
public @interface ScopeSecured { | |
String[] value(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that +jcassee is my blockchain ID. https://onename.com/jcassee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run in zsh | |
homeshick clone sorin-ionescu/prezto | |
homeshick cd prezto | |
mkdir home | |
cd home | |
for f in ../runcoms/z*; do ln -s $f .${f:t}; done | |
ln -s .. .zprezto | |
homeshick link |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am jcassee on github. | |
* I am jcassee (https://keybase.io/jcassee) on keybase. | |
* I have a public key whose fingerprint is F8AE AD70 673F BED1 E1B6 DABF 8631 BE41 EF27 ED5F | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- debug: var=x | |
- debug: var=y | |
register: z | |
- debug: msg="This task should only be run if x is true" | |
when: y or z|changed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.goabout.api.http; | |
import java.io.BufferedOutputStream; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
public class LogOutputStream extends OutputStream { | |
private OutputStream stream; |