Geo Vlasov

Results 24 comments of Geo Vlasov

@phanan Sorry, I messed up explaining what I want. Basically what I suggest is an analogue to [Yii2's `ArrayHelpers::map`](https://github.com/yiisoft/yii2/blob/master/framework/helpers/BaseArrayHelper.php#L574). It doesn't do what `map` does in functional programming (i.e. taking...

@phanan Also `create_asoc` can be useful for print debugging in some cases. But most importantly it can be useful in formatting input data in an MVC view.

@lstrojny ```php array_combine( map($books, function($book) { return $book->id; }), map($books, function($book) { return $book->name; }) ); ``` vs ```php create_assoc( $books, function($book) { return $book->id; }, function($book) { return $book->name;...

@phanan It is not about LoC, it is about the amount of nested expressions ;;;))) Btw, if you rewrite my `create_assoc` example, then consider doing the same for `array_combine`: ```php...

Ok, let's wait several months till the few people who haven't already searched for a less verbose way to build associative arrays in PHP start upvoting this coming via Google,...

My guess would be that `@bahmutov/add-typescript-to-cypress` assumes you already use webpack?

I installed `webpack` and `typescript` and indeed it was the problem that they should have been installed. The documentation mentions that `typescript` package has to be installed, but it doesn't...

@georgy7 I don't think I'm going back to this project anytime soon, but it feels great to know someone is still interested in this problem. You've got a great JS...

Same with French de/d'

I couldn't release my Lombok fork to Maven Central because Project Lombok uses Ant, and I couldn't figure out how to deploy articacts built by Ant to OSSRH. This is...