The Algorithm

The Algorithm тексты песен

Исполнитель   ·  108 978 слушателей в месяц

Альбомы исполнителя

Похожие исполнители

SikTh

Исполнитель


Биография

export default class TheAlgorithm extend Music { ‏‏‎‏‏‎‏‏‎‏‏‎ ‏‏‎ ‎‏‏‎ ‎producer = "Rémi Gallego"; createdIn = 2009; origin = "France"; genre = "Instrumental synths-driven progressive metal"; socials = [ { name: "Instagram", handle: "thealgorithm_" }, { name: "Twitter", handle: "The_Algorithm" } ]; albums = [ { year: 2018, title: "Compiler Optimization Techniques", label: "FiXT" }, { year: 2016, title: "Brute Force", label: "FiXT" }, { year: 2014, title: "Octopus4", label: "Basick Records" }, { year: 2012, title: "Polymorphic Code", label: "Basick Records" } ]; oui = true; constructor() { super(); } getLiveBand() { const instruments = ["drums", "guitar", "synth", "bass"]; const musicians = [this.producer, "Jean Ferry"]; const location = "Worldwide"; return { instruments, musicians, location }; } getWebsite() { return "https://www.the-algorithm.net"; } getMerchStore() { return user.location === "Europe" ? "https://thealgorithm.8merch.com/" : "https://fixtstore.com/collections/the-algorithm"; } isFrench() { return this.oui; } }