Rafał Miłecki

Results 156 comments of Rafał Miłecki

> ``` > protected $casts = [ > 'id' => 'integer', > 'name' => 'string', > 'age' => 'integer', > ]; > > protected function setAge($value) > { > $this->attributes['age']...

My fix attempt https://github.com/codeigniter4/CodeIgniter4/pull/5944

Hey guys, since my attempt https://github.com/codeigniter4/CodeIgniter4/pull/5944 can't be accepted, can you suggest any other solution? Right now I just can't use CodeIgniter4 for the simplest task: editing database entries (rows)....

This seems to be BCM5358 specific bug / regression. I couldn't reproduce it :( # BCM5357C0 ``` [ 0.000000] bcma: bus0: Found chip with id 53572, rev 0x01 and package...

I bought Linksys E2500 v3 to debug this issue. I was able to _get_ ``` b53_common: unsupported switch detected (BCM5306/BCM6) ``` error only after manually testing **kernel** commit db791eb2970ba ("net:...

I'm not well familiar with that platform. Please explain to us: how much does it differ from Northstar? Why it's a bit bad idea to use existing `bcm53xx` target?

``` starts = list(re.finditer(settings["start"], content)) ends = list(re.finditer(settings["end"], content)) ``` I think we need some better logic. Consider invoice with something like: ``` Lines begin Lines begin LINE 1 LINE...

> Instead of try-except, you could also use an absolute import all the time? Just tried it in the https://github.com/invoice-x/invoice2data/pull/386 . It won't work.

I just got a bit more familiar with Python concepts using: - [Relative imports in Python 3](https://stackoverflow.com/questions/16981921/relative-imports-in-python-3) - [Relative imports for the billionth time](https://stackoverflow.com/questions/14132789/relative-imports-for-the-billionth-time) If I got it right, it...