I hereby claim:
- I am gekkio on github.
- I am gekkio (https://keybase.io/gekkio) on keybase.
- I have a public key whose fingerprint is 9A34 A627 EF71 5925 FE41 84AB D39C CA5C B19B 9179
To claim this, I am signing this object:
| (function() { | |
| var result = []; | |
| function visitElement(el, parentStyle) { | |
| var style = window.getComputedStyle(el); | |
| if (parentStyle.display === '-ms-flexbox' && style.display === 'inline') { | |
| result.push(el); | |
| } | |
| for (var i = 0; i < el.children.length; i++) { | |
| visitElement(el.children[i], style); | |
| } |
| #!/usr/bin/env bash | |
| # Based on: | |
| # http://en.librehat.com/blog/build-gcc-5-dot-2-on-rhel-6/ | |
| set -euo pipefail | |
| GCC_VERSION=5.3.0 | |
| GMP_VERSION=6.1.0 | |
| MPC_VERSION=1.0.3 | |
| MPFR_VERSION=3.1.4 | |
| JOBS=$(expr $(nproc) + $(nproc)) |
I hereby claim:
To claim this, I am signing this object:
| import com.esotericsoftware.Kryo | |
| import com.estoericsoftware.serialize.SimpleSerializer | |
| import java.nio.ByteBuffer | |
| object OptionSerializers { | |
| def register(kryo: Kryo) { | |
| kryo.register(classOf[None$], new NoneSerializer) | |
| kryo.register(classOf[Some[_]], new SomeSerializer(kryo)) | |
| } | |
| } |
| <html> | |
| <body> | |
| <div style="background-color: red; margin: 20px; width: 100%"> | |
| Fail (margin: 20px; width: 100%) | |
| </div> | |
| <div style="background-color: red; margin: 20px"> | |
| Success (margin: 20px) | |
| </div> | |
| <div style="background-color: red; padding: 20px; width: 100%"> | |
| <div style="background-color: green"> |