L155
Wireless Festival has been given permission to remain in London's Finsbury Park, provided performers do not swear or wear "offensive" clothes.
Haringey Council granted festival promoter Live Nation a licence after a review called for by campaigners.
Friends of Finsbury Park had complained about noise levels, drug taking and anti-social behaviour at the festival.
The council's licensing committee decided to amend conditions rather than revoke the licence altogether.
Conditions include a "request that performers do not sing or play any vulgar, obscene or banned songs or carry out indecent acts or make any vulgar gestures, actions or remarks during the performance" and that performers do "not offend the general public, e.g., attire which expose the groin, private parts, buttock or female breast(s)".
The last day of the festival will now finish 30 minutes earlier at 21:30 BST and new sound level limits and monitoring will be put in place.
The event, which attracted crowds of more than 37,000 people this year, sparked 67 complaints over noise, anti-social behaviour, drug dealing and litter damage, according to the Local Democracy Reporting Service.
Philip Kolvin QC, the barrister representing Live Nation, told a review hearing earlier this month that the "impacts are mostly contained and limited in duration" and that Live Nation was "committed" to the "possibility of improving year-on-year".
Wireless Festival "reflected and celebrated" Haringey's "young and ethnically diverse" character as a borough, Mr Kolvin added:
"Wireless is a celebration of grime music. It is a music genre that emerged from London; it is London music," he said.
L155的更多相关文章
- 《Windows驱动开发技术详解》之派遣函数
驱动程序的主要功能是负责处理I/O请求,其中大部分I/O请求是在派遣函数中处理的.用户模式下所有对驱动程序的I/O请求,全部由操作系统转化为一个叫做IRP的数据结构,不同的IRP数据会被“派遣”到不同 ...
- Luogu5285 [十二省联考2019] 骗分过样例
题目分析: 观察前3个点,$361=19*19$,所以可以发现实际上就是快速幂,然后模数猜测是$998244353$,因为功能编号里面有这个数字,用费马小定理处理一下. $pts:12$ 观察第4个点 ...
随机推荐
- Centos下Nginx配置WEB访问日志并结合shell脚本定时切割
在一个成熟的WEB系统里,没有日志管理是不可以的,有了日志,可以帮助你得到用户地域来源.跳转来源.使用终端.某个URL访问量等相关信息:通过错误日志,你可以得到系统某个服务或server的性能瓶颈等. ...
- elasticsearch 5.5.1 head插件安装
5.5.1版本与之前版本有很大不同. 1. 下载插件 git clone git://github.com/mobz/elasticsearch-head.git 2. 编译 cd elasticse ...
- Codeforces 235C. Cyclical Quest
传送门 写的时候挺蛋疼的. 刚开始的时候思路没跑偏,无非就是建个SAM然后把串开两倍然后在SAM上跑完后统计贡献.但是卡在第二个样例上就是没考虑相同的情况. 然后开始乱搞,发现会出现相同串的只有可能是 ...
- 使用Nginx搭建图片服务器(windows)
知识点:在windows系统中,搭建图片上传服务器 参考博客:http://blog.csdn.net/u010942834/article/details/72953441 1.进入官网下载ngin ...
- 使用js合并table中的单元格
用primefaces做的报表,领导要求合并相同内容的单元格,但是primefaces没有找到可以合并单元格的组件,想来想去,只有页面加载后用js合并了. http://blog.csdn.net/d ...
- SQLite内存数据库操作类
using System; using System.Collections; using System.Collections.Generic; using System.Data; using S ...
- u-boot-2015.07 make xxx_config 分析
1.u-boot编译脚本:mk.sh #! /bin/sh export PATH=$PATH:/opt/ti-sdk-am335x-evm-08.00.00.00/linux-devkit/sysr ...
- VS2012 QT5.2.0 无法解析的外部符号
背景:在新建QT工程时,可能没有选择一些库,虽然在头文件中引用了,但是程序依然无法识别 现象:一般出现"LNK2019"错误. 解决:以网络为例,在VS2012中加入网络库,分为两 ...
- python列表解析进阶
如果要获得一个(元素为整数的)列表里面的偶数,很容易想到列表解析: [i for i in nums if i%2==0] 但是如果要使列表的长度不变,让奇数用0来填充,可能你会直接写: [i for ...
- MySQL索引失效的场景
WHERE字句的查询条件里有不等于号(WHERE column!=-),MYSQL将无法使用索引 类似地,如果WHERE字句的查询条件里使用了函数(如:WHERE DAY(column)=-),MYS ...