Etki

Results 24 comments of Etki

Please please please consider @lhazlewood comment above

@yosifkit this is fine workaround for local (and, probably, swarm - haven't worked with it) containers, but as soon as nomad / kubernetes / other orchestration hero is hit, things...

@tianon it won't. The data will be stored in other place, but untracked directory will still be created on the host, consuming an inode. This is not as bad, but...

@slandelle is there up-to-date doc anywhere i can see it? I'm getting netty's io.netty.handler.ssl.NotSslRecordException while trying to connect to Github API, but i'm quite not sure if it should work...

@slandelle i'm pretty sure https://api.github.com/ is served over https. I can't double-check my code now (not committed yet), but if i'll find i'm totally certain using AHC against https tomorrow,...

@slandelle yeap, you were right, i've specified both https and 80 in my own code resulting in URI https://api.github.com:80/organizations, which hit standard HTTP endpoint. Sorry for the fuzz.

One more vote here to tell the UI team this is actually something counterproductive to the user experience

@afonic > Which PHP version are you using? 7.0.x and 7.1.9, and the benchmark was run on top of it (with xdebug disabled). GD performance itself is [still under question](https://stackoverflow.com/questions/46447082/interpreting-xdebug-profile),...

It is quite funny that deserializing array of nulls has opposite effect (nulls are never preserved): ```php $serializer = \JMS\Serializer\SerializerBuilder::create()->build(); var_dump($serializer->fromArray(['item' => null], 'array')); ``` ``` array(1) { 'item' =>...

Here it goes ``` php use VirtualFileSystem\FileSystem as VFS; class CleanerTest extends AbstractTest { // ... protected function setUp() { $this->vfs = new VFS; } protected function tearDown() { unset($this->vfs);...