I hereby claim:
- I am jbellenger on github.
- I am jbellenger (https://keybase.io/jbellenger) on keybase.
- I have a public key ASCSDHwsebSWt8gROA9F_9D8lsRmLGWu47Yh0I7XTw_GLwo
To claim this, I am signing this object:
| import org.junit.runner.RunWith | |
| import org.scalatest.junit.JUnitRunner | |
| import org.scalatest.FunSuite | |
| import akka.actor._ | |
| import akka.actor.Actor.emptyBehavior | |
| import akka.testkit.{TestKit, ImplicitSender} | |
| class DummyActor extends Actor { | |
| val receive = emptyBehavior | |
| } |
| import akka.actor.{ActorSystem, Cancellable} | |
| import akka.http.Http | |
| import akka.http.model.{HttpRequest, HttpResponse, Uri} | |
| import akka.http.unmarshalling.Unmarshal | |
| import akka.stream.ActorFlowMaterializer | |
| import akka.stream.scaladsl._ | |
| import akka.util.ByteString | |
| import scala.concurrent.duration._ |
I hereby claim:
To claim this, I am signing this object:
| webpackJsonp([0],{ | |
| /***/ 11: | |
| /***/ (function(module, exports) { | |
| /***/ }) | |
| }); |
| webpackJsonp([0],{ | |
| /***/ 11: | |
| /***/ (function(module, exports) { | |
| /***/ }) | |
| }); |
| webpackJsonp([0],{ | |
| /***/ "./entry.js": | |
| /***/ (function(module, exports) { | |
| document.getElementById('message').innerHTML = 'everything ok!'; | |
| /***/ }) |
| const crypto = require('crypto'); | |
| const RawModule = require('./lib/RawModule'); | |
| const hashModule = (module) => { | |
| const hash = crypto.createHash('sha256'); | |
| module.updateHash(hash); | |
| return hash.digest('hex'); | |
| }; | |
| const hashFoo = hashModule(new RawModule('foo')); |
| // All webpack chunks have an identifier that is written to both the chunk and | |
| // the chunk manifest. | |
| // | |
| // By default, webpack uses "int" identifiers, where the identifiers are | |
| // sequentially generated after chunks are ordered by OccurenceOrderPlugin. | |
| // | |
| // The result of this is that small code changes may cause chunks to be | |
| // reordered, leading to a cascading change of chunk ids, and a large number of | |
| // chunk rehashes that could have been avoided. | |
| // |
An application for conducting code review interviews
This service ensures we are following the laws of the City of Atlantis with respect to vacation rental properties. Atlantis requires that:
| // MultipleNestedClasses.java | |
| package javassist; | |
| public class MultipleNestedClasses { | |
| static class Nested1 {} | |
| static class Nested2 {} | |
| } | |
| // $ javac MultipleNestedClasses.java |