a 3d rolling dice and return the result in the console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| EVAL "local keys = redis.call('KEYS', ARGV[1]); local result = {}; for i, key in ipairs(keys) do result[#result+1] = key; result[#result+1] = redis.call('TYPE', key).ok end; return result" 0 "*mypattern*" |
I hereby claim:
- I am jamisonbryant on github.
- I am jamisonbryant (https://keybase.io/jamisonbryant) on keybase.
- I have a public key ASAuobzDJu7BdhLsn5PiXWNu7hsjnVeKDlOJpgcKhqeUXgo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Custom\Pagination\Presenters; | |
| use Illuminate\Pagination\BootstrapThreePresenter; | |
| use Illuminate\Pagination\LengthAwarePaginator; | |
| use Illuminate\Pagination\UrlWindow; | |
| class MaterializePresenter extends BootstrapThreePresenter | |
| { |