Juje
Juje

Jurjen

@Juje

A web developer living in Belgium

7 Posts 60 Views

  • No matching results...
  • Searching...

/ 255

In response to @pradeepkumarvupala

Pinkary started out as a link sharing platform like linktr.ee. But then questions got added and then a news feed was added to show all the questions. And then the news feed was made the homepage and now we are here.

To answer the other question, yes Pinkary has become another social network. But looking at what is happening at X (Twitter) I don't think that is a bad idea. And also the community (which exists mostly of Laravel Devs) here is incredible friendly.

1K

Whenever you want to add a docker exec command to the crontab don't forget to remove the `-i` from your arguments. Finding that issue took me longer than I like to admit. So in other words use:

docker exec -t DOCKER_INSTANCE COMMAND
instead of
docker exec -it DOCKER_INSTANCE COMMAND

144

If you ever want to remove the value that you used in a groupBy() on a collection. This could be useful (or at least it was for me).

$collection->map(fn ($items) => (
collect($items)->map(fn ($item) => (
collect($item)->forget($KEY_TO_REMOVE))
)
))

156