Sam

Results 127 issues of Sam

### What steps will reproduce the problem? 1. Have an dependency with a broken asset bundle that is fixed via config 2. Create an error in the debug toolbar (for...

type:enhancement
status:ready for adoption

The FKB API exposes the camera, my config to load it looks like this: ``` camera: - platform: generic verify_ssl: false still_image_url: http://192.168.2.12:2323/?cmd=getCamshot&password=xxx ``` It would be nice if this...

enhancement

Tools like `npm` have a special command for use in CI environments. It would be great if gitman had something like this as well. It should install dependencies and remove...

feature

There are several transaction types that can be identified for all accounts regardless of bank. It would be good to add that type to make handling of the transaction easier....

Consider we have: 1. One Rest\UrlRule with 1 controller. 2. One Rest\ActiveController. Suppose 2 scenarios: 1. List only resource, implemented by overriding actions and removing all but index. 2. Write...

status:ready for adoption

Currently both master and slave connections use the same class. This violates the SRP. We should have a class that only implements the slave connection part and one class that...

type:enhancement
status:ready for adoption

# Clarification There is more at play here than the "order of elements" argument: 1. Associative arrays are conceptually like dictionaries. While they have an order in PHP, it is...

In `QueryInterface` it seems some functions are missing: ```` public function each() public function batch() ```` In `Query`, these functions return `BatchQueryResult`. Since from an API perspective `BatchQueryResult` is equal...

Tested analytics package with ~23.000 records. Survey contains ~32 questions Interacting takes >5 seconds, sometimes memory usage spikes to 4.5GB. Will look into narrowing this down by disabling certain question...

enhancement

The current implementation of `GeneratorCollection` supports functions like `filter` and `map`. Doing something like I've proposed here: https://github.com/nikic/iter/issues/45 Would allow for a fluent interface allowing code like ```` $collection->filter(...)->map(....)->... ````

type:enhancement