SMFloris

Results 11 comments of SMFloris

In alacritty, you just need to add the following to map `shift+enter` to `\n`. ``` [keyboard] bindings = [ { key = "Return", mods = "Shift", chars = "\n" }...

I have the exact same problem. Would be great to have an option to always show fully qualified stack names. Has me second guessing like crazy.

@DeanHnter , for this case specifically like apt-repository being an external dependency and versions you rely on potentially dissapear: I recommend Docker should not be used as a distribution mechanism...

@lerno , I took a closer look on the issues mentioned #779 and #759 I think I see what you mean; distros either have llvm/lld statically or dynamically or in...

So here's a basic example of what I think could work on every platform (with some tweaks). The way I see it, we can either provide the static libs ourselves...

I think that for http request processing it works to think in `allocate_timeout` terms. For jobs from queues, though, I think it is more useful to think in `how many...

Already possible, add `'rename_embedded_id_field' => false` in your database.php config, like so: ```php 'mongodb' => [ .. 'host' => "HOST", 'rename_embedded_id_field' => false ] ```

Weirdly, it does work for me for root id field mappings.

I don't particularly use models, but this works: ``` $dbCon = DB::connection('mongodb'); $dbCon->table('collection_name_here') ->updateOrInsert(['id' => $item['id']], $item); ```

You are missing the point. The second id is not meant to be a primary key, it is just a field called `id`. Now, when you get the entities from...