Jelle De Loecker

Results 106 comments of Jelle De Loecker

Good to know. I might try to code it in my fork. Also, fyi: nearly half of the newsletters I receive don't have a `List-Id` header, only a `List-Unsubscribe` one...

Thanks, I can use that as a workaround for now :) But that makes me create quite a lot of forwarders per name & domain, and I'd like to know...

Ah interesting, when I manually send a packet in my `onSteppedOn` method it does work: ```java if (entity instanceof ServerPlayerEntity) { ((ServerPlayerEntity)entity).networkHandler.sendPacket(new EntityVelocityUpdateS2CPacket(entity)); } ```

I made a little attempt at implementing this myself, it wasn't that hard thanks to the way you can filter on states. (I used the FARMLAND filter as an example)

Alright... So if I'm understanding it right, when nyc merges 2 reports it kind of assumes they have the same branch layout? *Edit: Yes, that's exactly it. I switched over...

@cellog With "this project" you mean puppeteer-to-istanbul? No idea, but my solution to instrument the code using istanbul is working perfectly, much better than anything the internal v8 coverage results...

I'm having a similar issue with `DeepStoragePlus` plugin

True, that would break parsing. But if you stringify that object using Dry.stringify instead of regular JSON.stringify it would be escaped. Though using an object instead of a string could...

@nevcos, @jcubic: Well, it could improve speed a bit (as we could do away with the code that ensures strings don't start with a `~` tilde in it) Currently the...