I hereby claim:
- I am evenh on github.
- I am evenh (https://keybase.io/evenh) on keybase.
- I have a public key whose fingerprint is C9A8 D396 43BF 5297 11F0 BCEB 8009 6C5F 284E C5F8
To claim this, I am signing this object:
| package net.evenh.reproduction.issue1191; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.web.bind.annotation.GetMapping; | |
| import org.springframework.web.bind.annotation.RequestMapping; | |
| import org.springframework.web.bind.annotation.RestController; |
| -Xms2560m | |
| -server | |
| -ea | |
| -XX:+UseG1GC | |
| -XX:-UseParNewGC | |
| -XX:-UseConcMarkSweepGC | |
| -XX:CompileThreshold=4250 | |
| -XX:ReservedCodeCacheSize=256m | |
| -XX:-OmitStackTraceInFastThrow | |
| -XX:+HeapDumpOnOutOfMemoryError |
I hereby claim:
To claim this, I am signing this object:
| def print_stars(stars, total) | |
| # Define return | |
| html = "<div class='stars' data-rating='#{stars}' data-total='#{total}'>" | |
| # Split floating point | |
| parts = stars.to_s.split(".") | |
| # Number of stars | |
| $num = total.to_s.to_i | |
| $i = 0; |
| #!/usr/bin/env python | |
| import urllib2 | |
| from HTMLParser import HTMLParser | |
| # A simple script to get a quote from programmingexcuses.com | |
| # by Even Holthe | |
| # | |
| # Can be invoked like this: curl -L -s http://tinyurl.com/programmingexcuses | python | |
| class PEParser(HTMLParser): |