-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrime.html
2524 lines (2472 loc) · 137 KB
/
grime.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>unis grime thign</title>
<meta name="generator" content="Org Mode" />
<style>
#content { max-width: 60em; margin: auto; }
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #e6e6e6;
border-radius: 3px;
background-color: #f2f2f2;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: auto;
}
pre.src:before {
display: none;
position: absolute;
top: -8px;
right: 12px;
padding: 3px;
color: #555;
background-color: #f2f2f299;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-authinfo::before { content: 'Authinfo'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { }
</style>
<link rel="stylesheet" type="text/css" href="grime_style.css" />
<script src="https://orgmode.org/org-info.js">
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
// @license-end
</script>
<script>
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
org_html_manager.set("TOC_DEPTH", "6");
org_html_manager.set("LINK_HOME", "");
org_html_manager.set("LINK_UP", "");
org_html_manager.set("LOCAL_TOC", "1");
org_html_manager.set("VIEW_BUTTONS", "0");
org_html_manager.set("MOUSE_HINT", "underline");
org_html_manager.set("FIXED_TOC", "0");
org_html_manager.set("TOC", "0");
org_html_manager.set("VIEW", "info");
org_html_manager.setup(); // activate after the parameters are set
// @license-end
</script>
</head>
<body>
<div id="content" class="content">
<h1 class="title">unis grime thign</h1>
<div id="table-of-contents" role="doc-toc">
<h2>Table of Contents</h2>
<div id="text-table-of-contents" role="doc-toc">
<ul>
<li><a href="#orgabcf20f">1. Grime Tunes</a>
<ul>
<li><a href="#org2f4c14e">1.1. Tracks</a>
<ul>
<li><a href="#org4342235">1.1.1. Musical Mob - Pulse X (January 2002)</a>
<ul>
<li><a href="#orga4562c6">1.1.1.1. Dizzee Rascal - Pulse X Dubplate</a></li>
</ul>
</li>
<li><a href="#orga338480">1.1.2. Musical Mob - Pulse XYZ (~2003)</a></li>
<li><a href="#orge149351">1.1.3. Mystry - Pulse 8 (~2014)</a>
<ul>
<li><a href="#orgd2fe541">1.1.3.1. JME - Pulse 8 (2014)</a></li>
</ul>
</li>
<li><a href="#org052a732">1.1.4. DJ Wonder - What (~2002)</a>
<ul>
<li><a href="#orgfec1a34">1.1.4.1. Dizzee Rascal - Respect Me</a></li>
</ul>
</li>
<li><a href="#org17098ea">1.1.5. Wiley - The Morgue (2003)</a>
<ul>
<li><a href="#org18d2afc">1.1.5.1. Roll Deep - Morgue</a></li>
</ul>
</li>
<li><a href="#orgdf7c7d0">1.1.6. Ruff Sqwad - Pied Piper</a></li>
<li><a href="#org2ae8c60">1.1.7. Ruff Sqwad - Together</a></li>
<li><a href="#org23443ed">1.1.8. Ruff Sqwad - Functions on the Low</a></li>
<li><a href="#org3bfd1c6">1.1.9. Ruff Sqwad - Xtra (2004-2005)</a></li>
<li><a href="#orgae2c263">1.1.10. Ruff Sqwad - Tings in Boots (2002-2003)</a>
<ul>
<li><a href="#org4c15d32">1.1.10.1. Ruff Sqwad - Tings in Boots (vocal ver) (2002-2003)</a></li>
</ul>
</li>
<li><a href="#orgd5ea160">1.1.11. Ruff Sqwad - Misty Cold (~2003)</a>
<ul>
<li><a href="#org5681e1c">1.1.11.1. Ruff Sqwad - Misty Cold (XTC Remix) (~2003-2004)</a></li>
</ul>
</li>
<li><a href="#org9b502e1">1.1.12. Flirta D - Warp Speed (2004)</a></li>
<li><a href="#orgcc71aac">1.1.13. Flirta D - Shottaz Riddim</a></li>
<li><a href="#org0a7e397">1.1.14. <span class="todo TODO">TODO</span> Coki & Benga - Night</a></li>
<li><a href="#org0a376bb">1.1.15. Plastician - Shallow Grave (2004 Edit)</a></li>
<li><a href="#org18c44eb">1.1.16. Joker - Juggernaut (released 2024, made years before that idk)</a></li>
<li><a href="#org2cff400">1.1.17. Danny Weed - Creeper (~2001)</a>
<ul>
<li><a href="#org1ca5ed9">1.1.17.1. God’s Gift, Dizzee Rascal, Breeze - Creeper</a></li>
<li><a href="#org12c9846">1.1.17.2. Dizzee Rascal - Creeper Freestyle</a></li>
<li><a href="#orgdd74ae1">1.1.17.3. Wiley & Dizzee Rascal - Creeper Freestyle (2002)</a></li>
<li><a href="#org520bb77">1.1.17.4. Soloman - Bokeh Creeper (~2015)</a>
<ul>
<li><a href="#org0149abb">1.1.17.4.1. Wiley over Bokeh Creeper (2016)</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#orgeb6aabc">1.1.18. Jammer - Feedback (2003)</a></li>
<li><a href="#org631c91a">1.1.19. D Double E - Street Fighter Riddim (2010)</a></li>
<li><a href="#org6cf4660">1.1.20. D Double E - Fresh n Clean (2019)</a></li>
<li><a href="#orgc7c87cb">1.1.21. Flowdan - Big Mic Man (2002)</a></li>
<li><a href="#org7f44f15">1.1.22. Flowdan - Horror Show Style</a></li>
<li><a href="#orgdf978c4">1.1.23. Roll Deep - When I’m ’ere</a></li>
<li><a href="#org83940a2">1.1.24. Rebound X - Rhythm ’n’ Gash (~2007?)</a>
<ul>
<li><a href="#org0ce7af7">1.1.24.1. JME, Skepta - Spaceship (2007)</a></li>
<li><a href="#org6a05065">1.1.24.2. Tempa T - RBX (2007)</a></li>
<li><a href="#org5931ed6">1.1.24.3. Skepta feat. Jammer - I Spy (2007)</a></li>
<li><a href="#org901bb93">1.1.24.4. Rhythm ’n’ Gash (Sir Spyro Remix)</a>
<ul>
<li><a href="#org46f99a5">1.1.24.4.1. P Money feat. Newham Generals - Sounds of the Sir (~2015)</a></li>
</ul>
</li>
<li><a href="#org59d00d1">1.1.24.5. Tempa T + Dizzee Rascal over Rhythm ’n’ Gash</a></li>
</ul>
</li>
<li><a href="#org24dd20a">1.1.25. Sticky - Triplets II (2001)</a>
<ul>
<li><a href="#org4b67cd6">1.1.25.1. Dizzee Rascal over Triplets II (2001)</a></li>
</ul>
</li>
<li><a href="#orgff4b864">1.1.26. Wiley - Eskimo (2001-2002)</a>
<ul>
<li><a href="#org9785385">1.1.26.1. Wiley - Eskimo 2 (Devil’s Mix) (2002)</a></li>
<li><a href="#org146cb65">1.1.26.2. Wiley - It’s Wiley</a></li>
<li><a href="#orgd3a8e26">1.1.26.3. Wiley - Eskimo 3 (2002)</a></li>
</ul>
</li>
<li><a href="#orga343796">1.1.27. Wiley - Igloo (2003)</a>
<ul>
<li><a href="#orga5f8ff0">1.1.27.1. Wiley - Wot Do U Call It (2004)</a></li>
</ul>
</li>
<li><a href="#org4e8f91e">1.1.28. Wiley - Ground Zero (2001)</a></li>
<li><a href="#org61c53ed">1.1.29. Tempa T - Next Hype (2009)</a></li>
<li><a href="#org7eaa845">1.1.30. Spooky Bizzle - Spartan (~2009)</a>
<ul>
<li><a href="#org02b9fda">1.1.30.1. Soloman - Spartan Remix (2013)</a></li>
<li><a href="#orgfbf0e72">1.1.30.2. Kozzie ft Marger, Merky Ace, Rival, Ego, Scrufizzer - Spartan Remix (2011)</a></li>
</ul>
</li>
<li><a href="#org0f6643b">1.1.31. Soloman - Bokeh (2015)</a></li>
<li><a href="#orge7e39dc">1.1.32. So Solid Crew - Dilemma (2000)</a></li>
<li><a href="#org13f2f62">1.1.33. Unknown Artist - 8-bar Special II (2002)</a></li>
<li><a href="#org64b7084">1.1.34. Pay as U Go Cartel - Know We (2000)</a></li>
<li><a href="#org11bbaa1">1.1.35. Kahn - Fierce (2011)</a></li>
<li><a href="#orgae13788">1.1.36. Blay Vision - Cammy Riddim (2023)</a>
<ul>
<li><a href="#org3c4a14d">1.1.36.1. Cammy Riddim Devil Mix (2023)</a></li>
<li><a href="#orge752b6e">1.1.36.2. Cammy Riddim (P Money Freestyle) (2023)</a></li>
<li><a href="#orga9a3ac5">1.1.36.3. Cammy Riddim (Sox Freestyle) (2023)</a></li>
<li><a href="#orgfe694c3">1.1.36.4. Cammy Riddim (Flirta D Freestyle) (2023)</a></li>
<li><a href="#org768ba08">1.1.36.5. Swammy Riddim (Riko Dan Cammy Riddim Freestyle) (2023)</a></li>
<li><a href="#orgbf7fbfd">1.1.36.6. Cammy Riddim (Trim Freestyle) (2023)</a></li>
</ul>
</li>
<li><a href="#org48ba368">1.1.37. Killjoy - Let’s Go (2022)</a></li>
<li><a href="#orge5e2734">1.1.38. SLK - Pull Up Dat (2004?)</a>
<ul>
<li><a href="#orgc512df4">1.1.38.1. SLK - Pull Up Dat (Dexplicit remix)</a></li>
</ul>
</li>
<li><a href="#org8d4c561">1.1.39. Skepta - Duppy/Doing It Again (2006)</a></li>
<li><a href="#org31c9d47">1.1.40. Meridian Dan, Flowdan - London in the Rain (2019)</a></li>
<li><a href="#orgea38171">1.1.41. Enigma Dubz ft. Snowy - Lost It (2023)</a></li>
<li><a href="#org3d5a1be">1.1.42. SLK - North Weezy (2005)</a></li>
<li><a href="#org274c5d8">1.1.43. DJ Mondie feat. Flirta D - R U Dumb (2005)</a></li>
<li><a href="#org5b99fa6">1.1.44. Ruff Sqwad & Roll Deep - Sidewinder (2005)</a></li>
<li><a href="#orgf5c7388">1.1.45. Geeneus - Thunder (2002)</a></li>
<li><a href="#org23a7abc">1.1.46. DJ Mondie - Straight (2004)</a>
<ul>
<li><a href="#orgba2984f">1.1.46.1. DJ Mondie - Straight (God’s Gift dub)</a></li>
</ul>
</li>
<li><a href="#org7f91b7b">1.1.47. Lethal Bizzle - Pow (Forward!) (2004)</a>
<ul>
<li><a href="#org4d26115">1.1.47.1. Lethal Bizzle - Forward Riddim 2</a></li>
<li><a href="#org1d749b1">1.1.47.2. Lethal Bizzle - Pow 2011 (2010)</a></li>
</ul>
</li>
<li><a href="#org1071d0d">1.1.48. Dizzee Rascal - Sittin Here (2002)</a>
<ul>
<li><a href="#org5332c2b">1.1.48.1. Fekky & Dizzee Rascal - Still Sittin Here (2014)</a>
<ul>
<li><a href="#org2f0c360">1.1.48.1.1. Fekky - Still Sittin Here Remix (2014)</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#org282ca6c">1.1.49. P Money x Silencer - Stuttering (2021)</a></li>
<li><a href="#orga7c1a8d">1.1.50. Curzed & Kromestar - Signs (2011)</a>
<ul>
<li><a href="#org19b039c">1.1.50.1. Skinzmann & Devilman over Signs on Big City Radio</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#org5546511">1.2. Radio</a>
<ul>
<li><a href="#org571bdd9">1.2.1. Rinse.fm</a>
<ul>
<li><a href="#orgbe6d19f">1.2.1.1. Wiley + Flowdan set (2001)</a></li>
<li><a href="#org12591c0">1.2.1.2. Oblig with Big Zuu, Manga Saint Hilare, Flirta D, Sox, Jafro & More (2024)</a></li>
<li><a href="#org35a29b0">1.2.1.3. Danny Weed, Dizzee Rascal, God’s Gift, Wiley (sep 18 2001)</a></li>
<li><a href="#orgf4e070b">1.2.1.4. N-Type + Various - N-Type 20 Year Anniversary Show - 01 March 2024</a></li>
</ul>
</li>
<li><a href="#org5b43ebb">1.2.2. <span class="todo TODO">TODO</span> Big City Radio</a></li>
</ul>
</li>
<li><a href="#org516cc32">1.3. Misc. Sets</a>
<ul>
<li><a href="#org3126dc2">1.3.1. Neffa-T - Keep Hush Bristol: Dr. Dubplate’s Birthday Bash (2022)</a></li>
<li><a href="#org919f820">1.3.2. Slimzee, Wiley & Dizzee Rascal, Sidewinder Promo Mix (2002)</a></li>
<li><a href="#orgb533451">1.3.3. Wiley at XOYO (2016)</a></li>
<li><a href="#org8ede4b7">1.3.4. Roll Deep Rave Footage (2003)</a></li>
</ul>
</li>
<li><a href="#orgcffe73f">1.4. Artists</a>
<ul>
<li><a href="#orge9c58b8">1.4.1. Wiley</a></li>
<li><a href="#org0e0b613">1.4.2. <span class="todo TODO">TODO</span> DJ Wonder</a></li>
<li><a href="#org2c2aa0d">1.4.3. <span class="todo TODO">TODO</span> Flowdan</a></li>
<li><a href="#org103a4ba">1.4.4. <span class="todo TODO">TODO</span> Dizzee Rascal</a></li>
<li><a href="#org76839bf">1.4.5. <span class="todo TODO">TODO</span> Slimzee</a></li>
<li><a href="#org2afaa58">1.4.6. <span class="todo TODO">TODO</span> Youngstar</a></li>
<li><a href="#org47c398b">1.4.7. <span class="todo TODO">TODO</span> Mystry</a></li>
<li><a href="#orgd13738c">1.4.8. <span class="todo TODO">TODO</span> JME</a></li>
<li><a href="#orgbd8feca">1.4.9. <span class="todo TODO">TODO</span> Rapid</a></li>
<li><a href="#org77b3e25">1.4.10. <span class="todo TODO">TODO</span> Slix</a></li>
<li><a href="#orgbfe006e">1.4.11. <span class="todo TODO">TODO</span> Tinchy Stryder</a></li>
<li><a href="#org4a58cc9">1.4.12. <span class="todo TODO">TODO</span> XTC</a></li>
<li><a href="#org96fb4ab">1.4.13. <span class="todo TODO">TODO</span> Flirta D</a></li>
<li><a href="#org6f067ab">1.4.14. <span class="todo TODO">TODO</span> Jiggalo</a></li>
<li><a href="#org47bb8f9">1.4.15. <span class="todo TODO">TODO</span> Neffa-T</a></li>
<li><a href="#org550da18">1.4.16. <span class="todo TODO">TODO</span> Plastician</a></li>
<li><a href="#orgbe8cc80">1.4.17. <span class="todo TODO">TODO</span> Oblig</a></li>
<li><a href="#orgd76aed9">1.4.18. <span class="todo TODO">TODO</span> Manga Saint Hilare</a></li>
<li><a href="#orgd9818b1">1.4.19. <span class="todo TODO">TODO</span> Joker</a></li>
<li><a href="#org42dec89">1.4.20. <span class="todo TODO">TODO</span> Danny Weed</a></li>
<li><a href="#org2698074">1.4.21. <span class="todo TODO">TODO</span> Jammer</a></li>
<li><a href="#org1a7558d">1.4.22. D Double E</a></li>
<li><a href="#org0da3f52">1.4.23. <span class="todo TODO">TODO</span> DJ Swerve</a></li>
<li><a href="#orgd888ad1">1.4.24. <span class="todo TODO">TODO</span> Footsie</a></li>
<li><a href="#org85abbf0">1.4.25. <span class="todo TODO">TODO</span> Monkstar</a></li>
<li><a href="#orgeb13d2c">1.4.26. <span class="todo TODO">TODO</span> Skepta</a></li>
<li><a href="#orgbbe8873">1.4.27. <span class="todo TODO">TODO</span> Maxwell D</a></li>
<li><a href="#org48b549c">1.4.28. <span class="todo TODO">TODO</span> Frisco</a></li>
<li><a href="#orgcbf522c">1.4.29. <span class="todo TODO">TODO</span> Esco</a></li>
<li><a href="#orge8bbf5e">1.4.30. <span class="todo TODO">TODO</span> Tempa T</a></li>
<li><a href="#orge4f6d84">1.4.31. <span class="todo TODO">TODO</span> Sir Spyro</a></li>
<li><a href="#org0add5de">1.4.32. <span class="todo TODO">TODO</span> P Money</a></li>
<li><a href="#org558ad3e">1.4.33. <span class="todo TODO">TODO</span> God’s Gift</a></li>
<li><a href="#orgf8c5aa4">1.4.34. <span class="todo TODO">TODO</span> MoreNight</a></li>
<li><a href="#org913007d">1.4.35. <span class="todo TODO">TODO</span> Spooky Bizzle</a></li>
<li><a href="#org92f7849">1.4.36. <span class="todo TODO">TODO</span> Soloman</a></li>
<li><a href="#org0d1b87c">1.4.37. <span class="todo TODO">TODO</span> Kahn</a></li>
<li><a href="#orgd3ec66f">1.4.38. <span class="todo TODO">TODO</span> Neek</a></li>
<li><a href="#org51b2085">1.4.39. <span class="todo TODO">TODO</span> Sox</a></li>
<li><a href="#orgd86842d">1.4.40. <span class="todo TODO">TODO</span> Riko Dan</a></li>
<li><a href="#org3de9e7b">1.4.41. <span class="todo TODO">TODO</span> Trim</a></li>
<li><a href="#org3f25636">1.4.42. <span class="todo TODO">TODO</span> Napper</a></li>
<li><a href="#orgb99ca52">1.4.43. <span class="todo TODO">TODO</span> Karnage</a></li>
<li><a href="#org59626c1">1.4.44. <span class="todo TODO">TODO</span> Meridian Dan</a></li>
<li><a href="#org06accbd">1.4.45. <span class="todo TODO">TODO</span> Snowy</a></li>
<li><a href="#orge9a1350">1.4.46. <span class="todo TODO">TODO</span> Lethal Bizzle</a></li>
<li><a href="#org94b3efc">1.4.47. <span class="todo TODO">TODO</span> Demon</a></li>
<li><a href="#org5afbf35">1.4.48. <span class="todo TODO">TODO</span> Dexplicit</a></li>
<li><a href="#org9c0953b">1.4.49. <span class="todo TODO">TODO</span> Ghetts</a></li>
<li><a href="#org3bf9313">1.4.50. <span class="todo TODO">TODO</span> Kano</a></li>
<li><a href="#org2f8a6fc">1.4.51. <span class="todo TODO">TODO</span> Chip</a></li>
<li><a href="#org52b2f96">1.4.52. <span class="todo TODO">TODO</span> Silencer</a></li>
<li><a href="#orge0a44aa">1.4.53. <span class="todo TODO">TODO</span> Kromestar</a></li>
<li><a href="#org05b5ef0">1.4.54. <span class="todo TODO">TODO</span> Curzed</a></li>
<li><a href="#org18067c6">1.4.55. <span class="todo TODO">TODO</span> Devilman</a></li>
</ul>
</li>
<li><a href="#org8243bd9">1.5. Albums etc.</a>
<ul>
<li><a href="#orgb569d4f">1.5.1. Ruff Sqwad - White Label Classics</a></li>
<li><a href="#orga26512e">1.5.2. Dizzee Rascal - Boy in the Corner (2003)</a></li>
<li><a href="#org07b57ee">1.5.3. Flowdan - Disaster Piece (2016)</a></li>
<li><a href="#org4b9f7be">1.5.4. Plastician - Beg to Differ (2007)</a></li>
<li><a href="#org87dd66c">1.5.5. Manga Saint Hilare prod. MoreNight - Everything is under Control (2024)</a></li>
</ul>
</li>
<li><a href="#org9508543">1.6. Crews</a>
<ul>
<li><a href="#org565f3ae">1.6.1. <span class="todo TODO">TODO</span> Roll Deep</a></li>
<li><a href="#org316f7d0">1.6.2. <span class="todo TODO">TODO</span> Musical Mob</a></li>
<li><a href="#orgaf12e25">1.6.3. <span class="todo TODO">TODO</span> Ruff Sqwad</a></li>
<li><a href="#org28eee1b">1.6.4. <span class="todo TODO">TODO</span> Nasty Crew</a></li>
<li><a href="#org1878440">1.6.5. <span class="todo TODO">TODO</span> Newham Generals</a></li>
<li><a href="#orgc3dd719">1.6.6. <span class="todo TODO">TODO</span> Pay as U Go Cartel</a></li>
<li><a href="#org9ad1e6d">1.6.7. <span class="todo TODO">TODO</span> So Solid Crew</a></li>
<li><a href="#orgde68849">1.6.8. <span class="todo TODO">TODO</span> SLK</a></li>
</ul>
</li>
<li><a href="#org2cc2f05">1.7. Styles</a>
<ul>
<li><a href="#org2e80f7d">1.7.1. <span class="todo TODO">TODO</span> 8-bar</a></li>
<li><a href="#orga76919d">1.7.2. <span class="todo TODO">TODO</span> Weightless</a></li>
<li><a href="#org613eb92">1.7.3. <span class="todo TODO">TODO</span> Eskibeat</a></li>
</ul>
</li>
<li><a href="#orga1bcbc9">1.8. Other Terms</a>
<ul>
<li><a href="#org8d47242">1.8.1. Reloads</a></li>
<li><a href="#org1d2b3ef">1.8.2. Riddim</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-orgabcf20f" class="outline-2">
<h2 id="orgabcf20f"><span class="section-number-2">1.</span> Grime Tunes</h2>
<div class="outline-text-2" id="text-1">
<p>
not ordered by importance or date or literally anything but vibes and my motivation to do this.<br />
i also have no credentials at all to do this ive been into this music for a year or something but i feel like im sufficiently well informed to explain some of it to friends<br />
</p>
<p>
i try to refer to the date of production when possible, if artists arent listed in a crew or a set its probably because<br />
they havent appeared anywhere else yet and i dont know them well enough to write much.<br />
</p>
<p>
backlinks with the arrows are a little fucked due to how i automatically insert them idk<br />
</p>
</div>
<div id="outline-container-org2f4c14e" class="outline-3">
<h3 id="org2f4c14e"><span class="section-number-3">1.1.</span> Tracks</h3>
<div class="outline-text-3" id="text-1-1">
</div>
<div id="outline-container-org4342235" class="outline-4">
<h4 id="org4342235"><span class="section-number-4">1.1.1.</span> <a href="#org316f7d0">Musical Mob</a> - Pulse X (January 2002)</h4>
<div class="outline-text-4" id="text-1-1-1">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-03-02 Sat 23:59] </span></span> <- <a href="#org23a7abc">DJ Mondie - Straight (2004)</a><br />
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-27 Tue 21:27] </span></span> <- <a href="#org48ba368">Killjoy - Let’s Go (2022)</a><br />
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-23 Fri 18:15] </span></span> <- <a href="#orgeb6aabc">Jammer - Feedback (2003)</a><br />
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 13:37] </span></span> <- <a href="#orge149351">Mystry - Pulse 8 (~2014)</a><br />
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 13:32] </span></span> <- <a href="#orga338480">Musical Mob - Pulse XYZ (~2003)</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=4bMQTU2iI1E> link </a><br/><br />
Produced by <a href="#org2afaa58">Youngstar</a>, this is probably one of the most well-known and most important grime beats to ever<br />
exist and for sure the most iconic <a href="#org2e80f7d">8-bar</a> tune. Heavy bass, 5 minutes of pretty much the same 16-bars,<br />
but people rinse it and the dozens of tracks it inspired (see backlinks). The kick drum/bass sound/whatever is<br />
probably the most iconic bit of it all.<br />
</p>
</div>
<div id="outline-container-orga4562c6" class="outline-5">
<h5 id="orga4562c6"><span class="section-number-5">1.1.1.1.</span> <a href="#org103a4ba">Dizzee Rascal</a> - Pulse X Dubplate</h5>
<div class="outline-text-5" id="text-1-1-1-1">
<p>
<a href=https://www.youtube.com/watch?v=HX2pGg6606M> link </a><br/><br />
pure fire, the intro and first couple bars pop up in my head like twice a day<br />
</p>
</div>
</div>
</div>
<div id="outline-container-orga338480" class="outline-4">
<h4 id="orga338480"><span class="section-number-4">1.1.2.</span> <a href="#org316f7d0">Musical Mob </a>- Pulse XYZ (~2003)</h4>
<div class="outline-text-4" id="text-1-1-2">
<p>
<a href=https://www.youtube.com/watch?v=cYijGpdqWzY> link </a><br/><br />
<a href="#org4342235">Pulse X</a> edit with about 2 billion switch ups prod. <a href="#org2afaa58">Youngstar</a>. Not my favorite one but its alright<br />
</p>
</div>
</div>
<div id="outline-container-orge149351" class="outline-4">
<h4 id="orge149351"><span class="section-number-4">1.1.3.</span> <a href="#org47c398b">Mystry</a> - Pulse 8 (~2014)</h4>
<div class="outline-text-4" id="text-1-1-3">
<p>
<a href=https://www.youtube.com/watch?v=LVCUqd5izt8> link </a><br/><br />
One of the best somewhat more recent <a href="#org4342235">Pulse X</a>-type riddims. The kick’s there,, the “automatic” makes for a<br />
great voice sample, the tonal bweeeh type bass every couple bars makes it singable too somehow.<br />
</p>
</div>
<div id="outline-container-orgd2fe541" class="outline-5">
<h5 id="orgd2fe541"><span class="section-number-5">1.1.3.1.</span> <a href="#orgd13738c">JME</a> - Pulse 8 (2014)</h5>
<div class="outline-text-5" id="text-1-1-3-1">
<p>
<a href=https://www.youtube.com/watch?v=ecgFjnPFnZQ> link </a><br/><br />
Slight variation of the beat I think, definitely one of the most fun tracks on the album. Lots of the<br />
silliness <a href="#orgd13738c">JME</a> is known for, couple of great bars though.<br />
</p>
</div>
</div>
</div>
<div id="outline-container-org052a732" class="outline-4">
<h4 id="org052a732"><span class="section-number-4">1.1.4.</span> <a href="#org0e0b613">DJ Wonder</a> - What (~2002)</h4>
<div class="outline-text-4" id="text-1-1-4">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 00:22] </span></span> <- <a href="#org17098ea">Wiley - Morgue (~2004?)</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=bBiN5tQX7Ro> link </a><br/><br />
Absurd bass heavy weight<br />
</p>
</div>
<div id="outline-container-orgfec1a34" class="outline-5">
<h5 id="orgfec1a34"><span class="section-number-5">1.1.4.1.</span> <a href="#org103a4ba">Dizzee Rascal</a> - Respect Me</h5>
</div>
</div>
<div id="outline-container-org17098ea" class="outline-4">
<h4 id="org17098ea"><span class="section-number-4">1.1.5.</span> <a href="#orge9c58b8">Wiley</a> - The Morgue (2003)</h4>
<div class="outline-text-4" id="text-1-1-5">
<p>
<a href=https://www.youtube.com/watch?v=z0cV9p2-VOg> link </a><br/><br />
obviously very much, uh, inspired by <a href="#org052a732">DJ Wonder - What (~2002)</a>, as far as i know thats related to some relationship<br />
drama related to him and <a href="#org0e0b613">DJ Wonder</a>, at least according to <a href="https://genius.com/Wiley-morgue-lyrics">Genius</a> which also states it was banned from <a href="#org571bdd9">rinse.fm</a> due to that.<br />
</p>
</div>
<div id="outline-container-org18d2afc" class="outline-5">
<h5 id="org18d2afc"><span class="section-number-5">1.1.5.1.</span> <a href="#org565f3ae">Roll Deep</a> - Morgue</h5>
<div class="outline-text-5" id="text-1-1-5-1">
<p>
<a href=https://www.youtube.com/watch?v=kYWuhGG6QcQ> link </a><br/><br />
</p>
</div>
</div>
</div>
<div id="outline-container-orgdf7c7d0" class="outline-4">
<h4 id="orgdf7c7d0"><span class="section-number-4">1.1.6.</span> <a href="#orgaf12e25">Ruff Sqwad</a> - Pied Piper</h4>
<div class="outline-text-4" id="text-1-1-6">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 13:48] </span></span> <- <a href="#orgb569d4f">Ruff Sqwad - White Label Classics</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=SDnOwNCrEu8> link </a><br/><br />
Great tune, love the blown out square lead and the eskibeat type beeps and boops. Prod. by <a href="#orgbd8feca">Rapid</a>.<br />
also this sells for almost triple digit prices, pretty absurd<br />
</p>
</div>
</div>
<div id="outline-container-org2ae8c60" class="outline-4">
<h4 id="org2ae8c60"><span class="section-number-4">1.1.7.</span> <a href="#orgaf12e25">Ruff Sqwad</a> - Together</h4>
<div class="outline-text-4" id="text-1-1-7">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 13:51] </span></span> <- <a href="#orgb569d4f">Ruff Sqwad - White Label Classics</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=69reF45Ok_I> link </a><br/><br />
great guitar bit, choppy 2-step drums, thick square basses to complement it all<br />
</p>
</div>
</div>
<div id="outline-container-org23443ed" class="outline-4">
<h4 id="org23443ed"><span class="section-number-4">1.1.8.</span> <a href="#orgaf12e25">Ruff Sqwad</a> - Functions on the Low</h4>
<div class="outline-text-4" id="text-1-1-8">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 13:53] </span></span> <- <a href="#orgb569d4f">Ruff Sqwad - White Label Classics</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=-uy0XIlnz4U> link </a><br/><br />
very close to just being cheesy with the chords and all that<br />
</p>
<p>
part of the record <a href="#org5681e1c">Ruff Sqwad - Misty Cold (XTC Remix) (~2003-2004)</a> is on<br />
</p>
</div>
</div>
<div id="outline-container-org3bfd1c6" class="outline-4">
<h4 id="org3bfd1c6"><span class="section-number-4">1.1.9.</span> <a href="#orgaf12e25">Ruff Sqwad</a> - Xtra (2004-2005)</h4>
<div class="outline-text-4" id="text-1-1-9">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 13:58] </span></span> <- <a href="#orgb569d4f">Ruff Sqwad - White Label Classics</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=-2dRMGVJwrg> link </a><br/><br />
Heavy one especially with these eight note cymbals and the ever present bassline<br />
</p>
</div>
</div>
<div id="outline-container-orgae2c263" class="outline-4">
<h4 id="orgae2c263"><span class="section-number-4">1.1.10.</span> <a href="#orgaf12e25">Ruff Sqwad</a> - Tings in Boots (2002-2003)</h4>
<div class="outline-text-4" id="text-1-1-10">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 14:03] </span></span> <- <a href="#orgb569d4f">Ruff Sqwad - White Label Classics</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=ppR0lOC2rfU> link </a><br/><br />
first <a href="#orgaf12e25">Ruff Sqwad</a> track as far I know. very raw and kind of carceral, great bassline but not their best<br />
</p>
</div>
<div id="outline-container-org4c15d32" class="outline-5">
<h5 id="org4c15d32"><span class="section-number-5">1.1.10.1.</span> <a href="#orgaf12e25">Ruff Sqwad -</a> Tings in Boots (vocal ver) (2002-2003)</h5>
<div class="outline-text-5" id="text-1-1-10-1">
<p>
<a href=https://www.youtube.com/watch?v=pMDHjMagG0Y> link </a><br/><br />
features (according to discogs at least) <a href="#orgbd8feca">Rapid</a>, <a href="#orgbfe006e">Tinchy Stryder</a>, <a href="#org77b3e25">Slix</a>.<br />
sadly not very good tbh, its also notable how young tinchy sounds despite being at least 16 or 17<br />
</p>
</div>
</div>
</div>
<div id="outline-container-orgd5ea160" class="outline-4">
<h4 id="orgd5ea160"><span class="section-number-4">1.1.11.</span> <a href="#orgaf12e25">Ruff Sqwad </a>- Misty Cold (~2003)</h4>
<div class="outline-text-4" id="text-1-1-11">
<p>
<a href=https://www.youtube.com/watch?v=B8tMF191Fd0> link </a><br/><br />
alright one but also very well known for some reason<br />
</p>
</div>
<div id="outline-container-org5681e1c" class="outline-5">
<h5 id="org5681e1c"><span class="section-number-5">1.1.11.1.</span> <a href="#orgaf12e25">Ruff Sqwad</a> - Misty Cold (<a href="#org4a58cc9">XTC</a> Remix) (~2003-2004)</h5>
<div class="outline-text-5" id="text-1-1-11-1">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 14:11] </span></span> <- <a href="#org23443ed">Ruff Sqwad - Functions on the Low</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=3NLOA9bQbEc> link </a><br/><br />
outstandingly good, especially with that reversed and cut up sound every 2 bars. classic square bass<br />
shines too<br />
also one of the most expensive grime records, see <a href="https://www.discogs.com/release/1698948-XTC-Misty-Cold-Remix">https://www.discogs.com/release/1698948-XTC-Misty-Cold-Remix</a><br />
</p>
</div>
</div>
</div>
<div id="outline-container-org9b502e1" class="outline-4">
<h4 id="org9b502e1"><span class="section-number-4">1.1.12.</span> <a href="#org96fb4ab">Flirta D</a> - Warp Speed (2004)</h4>
<div class="outline-text-4" id="text-1-1-12">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 14:26] </span></span> <- <a href="#orgcc71aac">Flirta D - Shottaz Riddim</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=ayME3Zy0vG8> link </a><br/><br />
prod. by <a href="#org6f067ab">Jiggalo</a>.<br />
definitely the most iconic flirta tune and a fun riddim too.<br />
</p>
</div>
</div>
<div id="outline-container-orgcc71aac" class="outline-4">
<h4 id="orgcc71aac"><span class="section-number-4">1.1.13.</span> <a href="#org96fb4ab">Flirta D</a> - Shottaz Riddim</h4>
<div class="outline-text-4" id="text-1-1-13">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 14:27] </span></span> <- <a href="#org3126dc2">Neffa-T - Keep Hush Bristol: Dr. Dubplate’s Birthday Bash (2022)</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=vIcL1N5BdvE> link </a><br/><br />
prod. <a href="#org2afaa58">Youngstar</a>.<br />
This was a dubplate until like 2012 when it got released on <a href="https://pitchcontrollerrecords.bandcamp.com/album/slk-the-lost-tapes-2">https://pitchcontrollerrecords.bandcamp.com/album/slk-the-lost-tapes-2</a>.<br />
</p>
<p>
feels like an early weightless tune given the lack of real drums and all the sfx, absolute banger<br />
though. also has the characteristic youngstar bass, might be the best flirta track, bit more leftfield<br />
than <a href="#org9b502e1">Warp Speed</a> (especially due to flip. riddim. gymnastics).<br />
</p>
</div>
</div>
<div id="outline-container-org0a7e397" class="outline-4">
<h4 id="org0a7e397"><span class="section-number-4">1.1.14.</span> <span class="todo TODO">TODO</span> Coki & Benga - Night</h4>
<div class="outline-text-4" id="text-1-1-14">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 14:31] </span></span> <- <a href="#org3126dc2">Neffa-T - Keep Hush Bristol: Dr. Dubplate’s Birthday Bash (2022)</a><br />
</p>
</div>
</div>
<div id="outline-container-org0a376bb" class="outline-4">
<h4 id="org0a376bb"><span class="section-number-4">1.1.15.</span> <a href="#org550da18">Plastician</a> - Shallow Grave (2004 Edit)</h4>
<div class="outline-text-4" id="text-1-1-15">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-23 Fri 20:06] </span></span> <- <a href="#org4b9f7be">Plastician - Beg to Differ (2007)</a><br />
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 22:30] </span></span> <- <a href="#org12591c0">Oblig with Big Zuu, Manga, Flirta D, Sox, Jafro & More (2024)</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=TZ5ug15enjg> link </a><br/><br />
</p>
<p>
Deep and dark tune and definitely a classic. Somewhere on the edge between grime and dubstep like a lot of<br />
the things Plastician made back in the day. <a href="https://twitter.com/Plastician/status/1755725501908304208">Interestingly</a> it wasnt played out all that much around its release, more like a classic in hindsight.<br />
</p>
</div>
</div>
<div id="outline-container-org18c44eb" class="outline-4">
<h4 id="org18c44eb"><span class="section-number-4">1.1.16.</span> <a href="#orgd9818b1">Joker</a> - Juggernaut (released 2024, made years before that idk)</h4>
<div class="outline-text-4" id="text-1-1-16">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-21 Wed 22:46] </span></span> <- <a href="#org12591c0">Oblig with Big Zuu, Manga Saint Hilare, Flirta D, Sox, Jafro & More (2024)</a><br />
</p>
<p>
<a href="https://soundcloud.com/jokerkapsize/juggernaut">https://soundcloud.com/jokerkapsize/juggernaut</a><br />
More of a dubstep tune but its been used as a beat so it counts. great way for joker to return and amazing<br />
example of his sound.<br />
</p>
</div>
</div>
<div id="outline-container-org2cff400" class="outline-4">
<h4 id="org2cff400"><span class="section-number-4">1.1.17.</span> <a href="#org42dec89">Danny Weed</a> - Creeper (~2001)</h4>
<div class="outline-text-4" id="text-1-1-17">
<p>
<a href=https://www.youtube.com/watch?v=Ok4UHXhA9Gc> link </a><br/><br />
Relatively early eskibeat tune, danny weeds first track and an absolute banger. apparently this just kind<br />
of came to life while wiley was teaching him how to produce. great bassline and weird ass atomosphere<br />
just how i like it<br />
</p>
</div>
<div id="outline-container-org1ca5ed9" class="outline-5">
<h5 id="org1ca5ed9"><span class="section-number-5">1.1.17.1.</span> <a href="#org558ad3e">God’s Gift</a>, <a href="#org103a4ba">Dizzee Rascal</a>, Breeze - Creeper</h5>
<div class="outline-text-5" id="text-1-1-17-1">
<p>
<a href=https://www.youtube.com/watch?v=VQKKgZoodgY> link </a><br/><br />
</p>
</div>
</div>
<div id="outline-container-org12c9846" class="outline-5">
<h5 id="org12c9846"><span class="section-number-5">1.1.17.2.</span> <a href="#org103a4ba">Dizzee Rascal</a> - Creeper Freestyle</h5>
<div class="outline-text-5" id="text-1-1-17-2">
<p>
<a href=https://www.youtube.com/watch?v=ctuFC0FNVwI> link </a><br/><br />
scholar in the english scholar in the math<br />
</p>
<p>
back from when dizzee was still a part of <a href="#org565f3ae">Roll Deep</a><br />
</p>
</div>
</div>
<div id="outline-container-orgdd74ae1" class="outline-5">
<h5 id="orgdd74ae1"><span class="section-number-5">1.1.17.3.</span> <a href="#orge9c58b8">Wiley</a> & <a href="#org103a4ba">Dizzee Rascal</a> - Creeper Freestyle (2002)</h5>
<div class="outline-text-5" id="text-1-1-17-3">
<p>
<a href=https://www.youtube.com/watch?v=jiF_PQQqSrA> link </a><br/><br />
part of <a href="#org919f820">the Sidewinder Promo Mix</a><br />
kind of captures the vibe of grime very well in ways i cant properly explain<br />
</p>
</div>
</div>
<div id="outline-container-org520bb77" class="outline-5">
<h5 id="org520bb77"><span class="section-number-5">1.1.17.4.</span> <a href="#org92f7849">Soloman</a> - Bokeh Creeper (~2015)</h5>
<div class="outline-text-5" id="text-1-1-17-4">
<p>
<a href=https://www.youtube.com/watch?v=DgqaH4k6kHc> link </a><br/> (ft. <a href="#orge9c58b8">Wiley</a>, played out by <a href="#org76839bf">Slimzee</a>)<br />
crazy thick remix and plate. love what soloman has done in dubstep and this is just next level<br />
wiley goes hard on this too<br />
</p>
</div>
<div id="outline-container-org0149abb" class="outline-6">
<h6 id="org0149abb"><span class="section-number-6">1.1.17.4.1.</span> <a href="#orge9c58b8">Wiley</a> over Bokeh Creeper (2016)</h6>
<div class="outline-text-6" id="text-1-1-17-4-1">
<p>
<a href=https://www.youtube.com/watch?v=RL1pucCMVco> link </a><br/> banger, from <a href="#orgb533451">Wiley at XOYO (2016)</a><br />
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-orgeb6aabc" class="outline-4">
<h4 id="orgeb6aabc"><span class="section-number-4">1.1.18.</span> <a href="#org2698074">Jammer</a> - Feedback (2003)</h4>
<div class="outline-text-4" id="text-1-1-18">
<p>
<a href=https://www.youtube.com/watch?v=bB2GjLSWRmI> link </a><br/><br />
absurd bass heavyweight. just the most fucked up sustained squares for 4 minutes interrupted by<br />
occassional orchestral hits and <a href="#org4342235">Pulse X</a>-ass bass/kick hits.<br />
</p>
<p>
shares its vibe with <a href="#orge7e39dc">Dilemma</a><br />
</p>
</div>
</div>
<div id="outline-container-org631c91a" class="outline-4">
<h4 id="org631c91a"><span class="section-number-4">1.1.19.</span> <a href="#org1a7558d">D Double E</a> - Street Fighter Riddim (2010)</h4>
<div class="outline-text-4" id="text-1-1-19">
<p>
<a href=https://www.youtube.com/watch?v=tKljEHPUjnk> link </a><br/><br />
prod. by <a href="#org0da3f52">DJ Swerve</a>, probably the definite D Double tune. great riddim, definitely influential<br />
for the new grime wave from around the time. one of the first proper grime tracks ive heard i<br />
think? catchy one and all the silly d double madness so definitely a good one<br />
</p>
</div>
</div>
<div id="outline-container-org6cf4660" class="outline-4">
<h4 id="org6cf4660"><span class="section-number-4">1.1.20.</span> <a href="#org1a7558d">D Double E</a> - Fresh n Clean (2019)</h4>
<div class="outline-text-4" id="text-1-1-20">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-23 Fri 18:35] </span></span> <- <a href="#org1a7558d">D Double E</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=2QYv6hVEMSo> link </a><br/><br />
prod. star one. originated in an ikea ad campaign but it kinda slaps<br />
</p>
</div>
</div>
<div id="outline-container-orgc7c87cb" class="outline-4">
<h4 id="orgc7c87cb"><span class="section-number-4">1.1.21.</span> <a href="#org2c2aa0d">Flowdan</a> - Big Mic Man (2002)</h4>
<div class="outline-text-4" id="text-1-1-21">
<p>
<a href=https://www.youtube.com/watch?v=jNhuHYqK3_4> link </a><br/> prod. <a href="#orgbbe8873">Maxwell D</a><br />
</p>
<p>
he sounds younger in this than even older stuff which is kind of interesting<br />
</p>
<p>
anyways its the first flowdan solo single, still holds up fairly well imo.<br />
</p>
<p>
lots of bars in there he still uses, like “i am the big flowdan otherwise known as mr. sandman” or the whole “drive uh drive uh transit van” ordeal i think both of these are in <a href="#org7f44f15">Horror Show Style</a> too<br />
</p>
</div>
</div>
<div id="outline-container-org7f44f15" class="outline-4">
<h4 id="org7f44f15"><span class="section-number-4">1.1.22.</span> <a href="#org2c2aa0d">Flowdan</a> - Horror Show Style</h4>
<div class="outline-text-4" id="text-1-1-22">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-23 Fri 19:32] </span></span> <- <a href="#org07b57ee">Flowdan - Disaster Piece (2016)</a><br />
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-23 Fri 19:03] </span></span> <- <a href="#orgc7c87cb">Flowdan - Big Mic Man (2002)</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=RcE0xW-kGZ0> link </a><br/> prod. Splurgeboys<br />
</p>
<p>
absolutely fire<br />
</p>
</div>
</div>
<div id="outline-container-orgdf978c4" class="outline-4">
<h4 id="orgdf978c4"><span class="section-number-4">1.1.23.</span> <a href="#org565f3ae">Roll Deep</a> - When I’m ’ere</h4>
<div class="outline-text-4" id="text-1-1-23">
<p>
<a href=https://www.youtube.com/watch?v=HK1SpAy_cR4> link </a><br/> prod. <a href="#org42dec89">Danny Weed</a> feat. Roachee, <a href="#orge9c58b8">Wiley</a>, Scratchy, Trim, <a href="#orgd76aed9">Manga</a>, Breeze, <a href="#org2c2aa0d">Flowdan</a>, Jet Lee.<br />
</p>
<p>
pretty popular roll deep track and just overall fun. mixing kinda sucks but both riddim and overall<br />
vibe make up for it<br />
</p>
</div>
</div>
<div id="outline-container-org83940a2" class="outline-4">
<h4 id="org83940a2"><span class="section-number-4">1.1.24.</span> Rebound X - Rhythm ’n’ Gash (~2007?)</h4>
<div class="outline-text-4" id="text-1-1-24">
<p>
<a href=https://www.youtube.com/watch?v=tSTK8W-Cs-s> link </a><br/><br />
</p>
<p>
maybe the most well known instrumental from that time. pretty garagey imo and not as bass focused as one<br />
gets used to in grime, holds up absurdly well though.<br />
</p>
<p>
nobody really knows who rebound x or the singing woman is afaik, the former just released a couple riddims<br />
on grime forums back in the day and kinda stopped due to reasons i forgot about<br />
</p>
</div>
<div id="outline-container-org0ce7af7" class="outline-5">
<h5 id="org0ce7af7"><span class="section-number-5">1.1.24.1.</span> <a href="#orgd13738c">JME</a>, <a href="#orgeb13d2c">Skepta</a> - Spaceship (2007)</h5>
<div class="outline-text-5" id="text-1-1-24-1">
<p>
<span class="timestamp-wrapper"><span class="timestamp">[2024-02-23 Fri 20:14] </span></span> <- <a href="#org6a05065">Tempa T - RBX (2007)</a><br />
</p>
<p>
<a href=https://www.youtube.com/watch?v=P7GpEBbROyA> link </a><br/><br />
</p>
<p>
very famous freestyle from some unidentified radio set. i dont think its all that good though honestly<br />
but the vibes are definitely there<br />
</p>
</div>
</div>
<div id="outline-container-org6a05065" class="outline-5">
<h5 id="org6a05065"><span class="section-number-5">1.1.24.2.</span> <a href="#orge8bbf5e">Tempa T</a> - RBX (2007)</h5>
<div class="outline-text-5" id="text-1-1-24-2">
<p>
<a href=https://www.youtube.com/watch?v=jV-nX9wSVQo> link </a><br/><br />
</p>
<p>
wayyy better than <a href="#org0ce7af7">Spaceship</a> imo, noone can match the energy and pure rage this guy has on the mic<br />
and this tunes a great example<br />
</p>
</div>
</div>
<div id="outline-container-org5931ed6" class="outline-5">
<h5 id="org5931ed6"><span class="section-number-5">1.1.24.3.</span> <a href="#orgeb13d2c">Skepta</a> feat. <a href="#org2698074">Jammer</a> - I Spy (2007)</h5>
<div class="outline-text-5" id="text-1-1-24-3">
<p>
<a href=https://www.youtube.com/watch?v=Hy_u7OI5Euo> link </a><br/><br />
</p>
<p>
pretty great, super catchy hook and some great bars here and there<br />
</p>
</div>
</div>
<div id="outline-container-org901bb93" class="outline-5">
<h5 id="org901bb93"><span class="section-number-5">1.1.24.4.</span> Rhythm ’n’ Gash (<a href="#orge4f6d84">Sir Spyro</a> Remix)</h5>
<div class="outline-text-5" id="text-1-1-24-4">
<p>
<a href=https://www.youtube.com/watch?v=wQlu_6Rhl9I> link </a><br/><br />
great remix, catchy and captures the vibe<br />
</p>
</div>
<div id="outline-container-org46f99a5" class="outline-6">
<h6 id="org46f99a5"><span class="section-number-6">1.1.24.4.1.</span> <a href="#org0add5de">P Money </a>feat. <a href="#org1878440">Newham Generals</a> - Sounds of the Sir (~2015)</h6>
<div class="outline-text-6" id="text-1-1-24-4-1">
<p>
<a href=https://www.youtube.com/watch?v=LssboVlvvGE> link </a><br/><br />
</p>
<p>
in particular feat. <a href="#org1a7558d">D Double E</a> and <a href="#orgd888ad1">Footsie</a>.<br />
might honestly be my fav dub of this their flows just fit the track so well<br />
</p>