On Discover Music Shows page
- Ambient
- Bass
- Beats
- Business
- Chillout
- Classical
- Comedy
- Deep House
| 60s | |
| 70s | |
| 80s | |
| 90s | |
| acoustic | |
| ambient | |
| blues | |
| classical | |
| country | |
| electronic |
| Alternative Rock | |
| Ambient | |
| Audiobooks | |
| Business | |
| Classical | |
| Comedy | |
| Country | |
| Dance & EDM | |
| Dancehall | |
| Deep House |
| Start: Thu Jul 2 11:25:00 2015 | |
| HOST: Sombrero-3.local Loss% Snt Last Avg Best Wrst StDev | |
| 1.|-- 10.100.84.1 0.0% 30 1.2 3.3 1.1 23.9 5.1 | |
| 2.|-- 84.207.252.3.not-updated. 0.0% 30 1.1 1.1 0.9 2.6 0.3 | |
| 3.|-- 217.112.154.169.not-updat 0.0% 30 7.2 9.4 7.0 47.8 7.5 | |
| 4.|-- ??? 100.0 30 0.0 0.0 0.0 0.0 0.0 | |
| 5.|-- rbx-g2-a9.fr.eu 0.0% 30 16.7 17.1 16.2 18.3 0.3 | |
| 6.|-- rbx-s5-6k.fr.eu 0.0% 30 51.9 19.3 15.7 55.5 9.5 | |
| 7.|-- 5.135.99.110 0.0% 30 16.1 17.4 16.0 29.4 3.2 | |
| Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000] [1130] Host 'REDACTED' is not allowed to connect to this MySQL server' in /Users/Thinkscape/Documents/Projects/REDACTED/vendor/zendframework/zendframework/library/Zend/ServiceManager/ServiceManager.php on line 909 | |
| PDOException: SQLSTATE[HY000] [1130] Host 'REDACTED' is not allowed to connect to this MySQL server in /Users/Thinkscape/Documents/Projects/REDACTED/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php on line 43 | |
| Call Stack: | |
| 0.0002 227872 1. {main}() /Users/Thinkscape/Documents/Projects/REDACTED/shell:0 | |
| 0.0004 231880 2. include('/Users/Thinkscape/Documents/Projects/REDACTED/public/index.php') /Users/Thinkscape/Documents/Projects/REDACTED/shell:4 | |
| 0.0037 525376 3. Zend\Mvc\Application::init() /Users/Thinkscape/Documents/Projects/REDACTED/public/index.php:10 | |
| 0.0605 4600776 4. Zend\Mvc\Application->bootstrap() /Users/Thinkscape/Documents/Projects/REDACTED/vendor/zendframework/ |
| <?php | |
| function flattenExceptionBacktrace(\Exception $exception) { | |
| $traceProperty = (new \ReflectionClass('Exception'))->getProperty('trace'); | |
| $traceProperty->setAccessible(true); | |
| $flatten = function(&$value, $key) { | |
| if ($value instanceof \Closure) { | |
| $closureReflection = new \ReflectionFunction($value); | |
| $value = sprintf( | |
| '(Closure at %s:%s)', |
| /** | |
| * Add support for configurable filter "property" | |
| */ | |
| Ext.define('Ext.bugfix.GridFilterBase', { | |
| override: 'Ext.grid.filters.filter.Base', | |
| config: { | |
| /** | |
| * @cfg {String} property | |
| * The property name to use when creating a filter |
| /** | |
| * Work around trees/grids that will not render correctly in case they are hidden from the view (i.e. in a Tab) but | |
| * data has changed. | |
| */ | |
| Ext.define('Ext.bugfix.BufferedRenderer', { | |
| override: 'Ext.grid.plugin.BufferedRenderer', | |
| getLastVisibleRowIndex: function() { | |
| var result = this.callParent(arguments); |
| /** | |
| * Fix reading of entities containing "length" property | |
| * | |
| * @link http://www.sencha.com/forum/showthread.php?292395-data.Reader-throwing-exception-when-model-contains-quot-length-quot-field.&p=1067807 | |
| * @link https://fiddle.sencha.com/#fiddle/at6 | |
| */ | |
| Ext.define('Ext.bugfix.Reader', { | |
| override: 'Ext.data.reader.Reader', | |
| extractData: function(root, readOptions) { |
| /** | |
| * Allow configurable date format when creating a store filter. | |
| * | |
| * To set a global default app-wise, include this fix and use something like: | |
| * | |
| * Ext.grid.filters.filter.Date.prototype.dateWriteFormat = 'c'; | |
| * | |
| */ | |
| Ext.define('Ext.bugfix.GridFilterDate', { | |
| override: 'Ext.grid.filters.filter.Date', |