I hereby claim:
- I am mastern2k3 on github.
- I am mastern2k3 (https://keybase.io/mastern2k3) on keybase.
- I have a public key ASC3KgSRgR5hx8Twbbj_8MhTniWKYdAVNost1OMYxPxn3wo
To claim this, I am signing this object:
| package main | |
| import "fmt" | |
| type Lol struct { | |
| a,b,c int | |
| d string | |
| } | |
| func main() { |
| import java.util.stream.Stream; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.context.ApplicationContext; | |
| import org.springframework.web.bind.annotation.GetMapping; | |
| import org.springframework.web.bind.annotation.RequestMapping; | |
| import org.springframework.web.bind.annotation.RestController; | |
| import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; |
I hereby claim:
To claim this, I am signing this object:
| package com.ragnaros.reactor.utils; | |
| import com.badlogic.gdx.Gdx; | |
| import java.util.ArrayList; | |
| import java.util.Collection; | |
| import java.util.List; | |
| import java.util.concurrent.Callable; | |
| import java.util.concurrent.CountDownLatch; | |
| import java.util.concurrent.ExecutionException; |
| g=git | |
| ga='git add' | |
| gaa='git add --all' | |
| gap='git apply' | |
| gapa='git add --patch' | |
| gau='git add --update' | |
| gav='git add --verbose' | |
| gb='git branch' | |
| gbD='git branch -D' | |
| gba='git branch -a' |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; | |
| String emojiString = "π Get Emoji β All Emojis to β Copy and π Paste π"; | |
| String emoniRegex = "([\\u20a0-\\u32ff\\ud83c\\udc00-\\ud83d\\udeff\\udbb9\\udce5-\\udbb9\\udcee])"; | |
| String extractedEmojis = ""; | |
| Matcher matcher = Pattern.compile(emoniRegex).matcher(emojiString); |
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| ) | |
| type arbitraryData struct { | |
| data []byte | |
| } |
| def make_io(res): | |
| def new_io(): | |
| print("calculated {}".format(res)) | |
| return res | |
| print("created {}".format(res)) | |
| return new_io | |
| testers = [make_io(n) for n in range(10)] |
| class Option(object): | |
| pass | |
| class Some(Option): | |
| def __init__(self, value): | |
| if value is None: | |
| raise "Lol cant have some None" | |
| self.value = value | |
| def map(self, mapper): |
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| "github.com/satori/go.uuid" | |
| ) |