blob: d9431802bfce51ddb2617f52f9ceeed8ef1a6708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import { VirtualTextFile } from "$/apps/source";
import { Hr } from "../hr";
import { Link } from "../link";
export default {
name: "Netpunk (shred version).txt",
type: "text",
content: (
<>
<h2>Netpunk (shred version feat. death do us apart)</h2>
<Hr/>
<p>For art university I worked together with an artist called <Link type="link" link="https://deathdousapart.rip">death do us apart</Link>! We did a guitar centric live performance using Netpunk. It was a ton of fun and we thought the guitar solo alone warranted a spot on the album.</p>
<blockquote>
<p>When I was asked to play guitar on Netpunk I wasn't quite sure how to approach it. I started by just playing the lead melody interspersed with the power chords already present in the song. When the second chorus came I thought about writing a solo for it and practiced some improvisation, but was never able to make a pre written one. This performance was also my first time playing live so my improvisation ended up being an adrenaline fuelled solo, which turned out unexpectedly good.</p>
<p>Not being able to reproduce it for the recording, I had to transcribe the solo by hand in order to figure out what I was actually doing. In the end I just played the solo exactly how it was live, but slower and sped it back up for the final track.</p>
</blockquote>
<p class="credit">Written by death do us apart</p>
<p>There’s a clip of the performance below, she’s cracked</p>
<Link type="video" link="https://sunnexo.moe/music/netpunk/netpunk-shred-live.mp4"/>
</>
),
height: "70vh",
width: "70vw",
} as VirtualTextFile;
|