Nick

Results 36 comments of Nick

~~~ func styleDidSelected(style: DynamicButton.Style) { dynamicButton.setStyle(style, animated: true) animating = true _ = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(self.animationOver),userInfo: nil, repeats: false) _ = Timer.scheduledTimer(timeInterval: 0.01, target: self, selector: #selector(self.layoutView),userInfo:...

The goxlr can specify an IP to connect to. I wrote a module that duplicates the streamdeck functionality - I've submitted a request for it to be added.

They don't have a public api to work with.

``` for ($i = 0; $i < 5000; $i++) { Telescope::recordJob(new IncomingEntry(['hi' => str_repeat('a', 100000)], Str::uuid())); } ``` Given this fails, I think this is more a problem with the...

I have solved it myself via : ``` Telescope::$afterRecordingHook = function () { if (count(Telescope::$entriesQueue) > 1000) { Telescope::store(app(EntriesRepository::class)); } }; ``` It does seem like a bit of a...

Another, more real-world, scenario where php can crash due to running out of memory is the query watcher. If you run many queries in the same request/job, it'll never flush...

I've made a discussion about how this could potentially get implemented #1887

Yes and no. I have strict enabled project wide in dev, as is somewhat common. I would prefer strict stays enabled so the model behaves the same as everything else...