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
|
import { VirtualTextFile } from "$/apps/source";
import { Hr } from "../hr";
import { Link } from "../link";
export default {
name: "Robot Yuri.txt",
type: "text",
content: (
<>
<Link type="image" link="https://sunnexo.moe/music/internet-exploder/cooltext485447490947919.gif" />
<h2>Robot Yuri (feat. Kasane Teto)</h2>
<Hr/>
<p>During the Europe heat wave of summer 2026 many of us suffered terrible temperatures of 37°C (= 98°F) without access to AC. I wasn’t able to use my PC for the usual work so I was stuck on my laptop with barely anything installed.</p>
<p>On the verge of heat stroke I ended up writing a silly cheerful song about a robot singing karaoke, yearning for love. I initially didn’t think about writing lyrics at all, but m1nt_ listened to the instrumental and thought it would be awesome if it did have vocals.</p>
<p>Huge thanks to m1nt_ for helping me with the lyrics for this, it was a fun project!</p>
<blockquote>
<p>When writing the lyrics for Robot Yuri, I really wanted to play into the heatwave thing. Getting hugged in the sweltering summer heat is sure to make a gay girl melt, especially if she’s a robot! I wanted to convey that she can’t think straight, not only because of the heat, but because she’s completely infatuated and maybe just a little obsessed with the girl she fell in love with.</p>
<p>The lyrics for the first and second halves of the song were written several weeks apart from each other. Initially, I actually wanted the second half to be bittersweet (even though I actually don’t like doomed yuri - I prefer silly, fluffy, happy yuri!!), but ultimately decided against it, because I felt that it didn’t fit the spirit of the song, and because I couldn’t have added that line about <Link link="https://en.wikipedia.org/wiki/Protection_ring" type="link">rings</Link>! Though, when I mentioned that to Sunnexo, they came up with the idea of the song being sung by the robot at karaoke, still yearning for love inside, which is an angle that I hadn’t considered before, but really like.</p>
<p>I’d like to thank Sunnexo for giving me the opportunity to write the lyrics for this. I’m really proud of this one and I think I did the sick instrumental justice!</p>
</blockquote>
<p class="credit">Written by m1nt_</p>
<Hr/>
<p>Lyrics written by Sunnexo and m1nt_, performed by <Link link="https://kasaneteto.jp/" type="link">Kasane Teto SV</Link></p>
<p>Temperature so high I think I'll overheat</p>
<p>I feel my circuits failing as you're holding me</p>
<p>Sights of you are filling up my memory</p>
<p>My scanners can't detect a being happier than me</p>
<br/>
<p>I didn't know my silicon could feel</p>
<p>My only wish is that you feel the same towards me</p>
<p>By your side is where I always want to be</p>
<p>And so I really hope that you'll keep counting on me</p>
<br/>
<p>Temperature so high I think I'll overheat</p>
<p>I feel my circuits failing as you're holding me</p>
<p>Sights of you completely filled my memory</p>
<p>The only rings I need are those you're gonna share with me</p>
<br/>
<p>I didn't know how silly I could be</p>
<p>And when my disk is full of junk you clear it for me</p>
<p>By your side is where I always want to be</p>
<p>No integer can hold the value you have to me</p>
</>
),
height: "70vh",
width: "70vw",
} as VirtualTextFile;
|