Jump to content

Featured Replies

  • Replies 232
  • Views 20.7k
  • Created
  • Last Reply

Top Posters In This Topic

Oops I need to stop writing off uhsting's winner alerts if 'Mama Mia' is really doing that well xx
  • Author

Utopia

 

 

Here are the votes from Utopia! Thanks to everyone who has voted for 'Protection From Evil' ^_^

 

Since Utopia returned to the contest in 2018 we've now voted for them on 22/23 potential occasions, but VLURE are the first act to get the full 18 for Fljótavík, an easy choice of 18 this month. The medal positions are completed by Persephonia and Summericia this month with Skall just missing out receiving 12 for the second contest running.

 

The total points awarded tally to Sovarasma doubles this month with an 11, and Kathaldazia continues an excellent run of entries receiving points for a 12th contest in a row, they're followed closely by POPHub , Eastovka and Kluminican Republic, the former two both receive their first ever points from Utopia. The rest of the points go largely to countries who receive points regularly from us in Séyetana, Cumulonimbia, Rolloland, FARC and Terra Avium, though Scherzland get a rare couple of points for the second time this year. Commiserations go to Trifoski, Lotunia and FSR Rontvia

 

18 Fljótavík - VLURE

15 Persephonia - ill peach

13 Summericia - Namasenda

12 Skall - UNIIQU3

11 Sovarasma - Floating Points

10 Kathaldazia - Shonen Bat & JKS

09 POPHub - Gretta Ray

08 Eastovka - Kohta Imafuku

07 Kluminican Republic - Boy Harsher

06 Séyetana - Mili

05 Cumulonimbia - Ivy Hollivana

04 Rolloland - Atoma

03 FARC - Rose Gray

02 Scherzland - Milk & Bone

01 Terra Avium - Dead Pony

 

 

East Rukahavian

 

 

18- Kathaldazia: Shonen Bat & JKS- Garonor (93 Club Mix)

15- Persephonia: ill peach- COMATOSE

13- FSR Rontvia: Naked Flames- 247 365

12- Jupiterdonia: Stevie Nicks- I Can't Wait

11- Harmonica: Bob Moses- Love Brand New

10- Fljotavik: VLURE- Shattered Faith

9- Hushkanukia: Emma Muscat- Colours In The Dark

8- Kluminican Republic: Boy Harsher- Machina (Feat. Mariana Saldana

7- Cor Lupus: IRAIDA- Supernova

6- Altyr Muunilinst: SKAAR- Get Him Away From Me

5- Seyetana: Mili- world.execute(me)

4- Danæviia: Spiritbox - Secret Garden

3- Hendinia: emlyn- the AUDACITY

2- Aeroche: Kryder- Piece Of Art

1- Lotunia: TOMORROW X TOGETHER- Nap Of A Star

 

Back to back silvers we love to see it!! Thanks RFC & Mack <3 (not had an 18 yet but now up to 5 15s argh)

 

Yasss @ TXT off 0 x

Synchronicity was one of my potentials :cry:

 

I need someone else to make my decisions for me

  • Author

Séyetana

 

 

To celebrate our coding wonder making it to the final, I've decided to go with a code presentation of votes that you can view in your browser. It's Javascript not Java but WHAT'S THE DIFFERENCE ANYWAY (a lot). At least I know this works on desktop Firefox, Edge and Chrome - if you're on mobile it's a bit more of a hassle but you can still "read" my votes by deciphering the below.

 

Step 1: Press Ctrl + Shift + I (or go to the browser menu and select 'More tools -> (Web) Developer Tools')

Step 2: Press the 'Console' tab you see on the window that appears, it should be the second one in the top row

Step 3: Copy-paste the code below the > line into the console and hit Enter

Step 4: One of the printed lines is hidden, entitled 'Array' or similar, click the arrow on it to reveal the votes.

 

(this does nothing to your browser, all it does temporarily puts some text in there, anybody who knows code will confirm)

 

>>>

 

console.log("Switch on the power line")

console.log("Remember to put on protection")

 

function seyetanaVoting() {

console.log("Lay down your pieces")

console.log("And let's begin object creation")

let seyetanaVotes = []// this wasn't working before

console.log("Fill in my data parameters")

console.log("Initialization")

let seyetanaQual = true;

const yoruFromSpyXFamilyIsMyGirlfriend = true;

let postRock = false;

let asianBias = false;

let nepotism = false;

const lotuniaHostingGood = true;

console.log("Set up our new world")

console.log("And let's begin the simulation")

 

const votes = ['Séyetana: Mili - World.execute(me);', 'FSR Rontvia: Naked Flames - 247 365', 'Persephonia: ill peach - COMATOSE', 'Jupiterdonia: Stevie Nicks - I Can\'t Wait', 'Kathaldazia: Shonen Bat & JKS - Garonor (93 Club Mix)', 'Cumulonimbia: Ivy Hollivana - GENESIS', 'Lookylion: Lights - Okay Okay', 'Terra Avium: Dead Pony - 23, Never Me', 'Fljótavík: VLURE - Shattered Faith', 'Danæviia: Spiritbox - Secret Garden', 'N DNTN: S3RL - Notice Me (feat. Dorian Electra & Nikolett)', 'Greenfroze: BPM15Q - Kyo You Mu', 'Utopia: Ibibio Sound Machine - Protection From Evil', 'Aelandor: Holding Absence - Gravity', 'Quintessa: Simon Goff - Vale', 'Eastovka: Kohta Imafuku - Orihime', 'East Rukahavian: Hexing - Welcome To Salem', 'Land Of DW: Feuerschwanz - Untot im Drachenboot', 'Rolloland: AtomA - Then Came The Wave']

 

for (let i = 1; i < 19; i++) {

if (i == 14 || i == 16 || i == 17) {

continue;

}

else {

let newVote = {name: votes, vote: i}

if (newVote.name.includes('AtomA')) {

postRock = true;

}

if ((newVote.name.includes('Orihime') || newVote.name.includes('Kyo You Mu')) && newVote.vote > 10) {

asianBias = true;

}

if (newVote.name.startsWith('Aelandor')) {

nepotism = true;

}

seyetanaVotes.unshift(newVote)

}

}

seyetanaVotes.push({name: 'Commisserations: Kluminican Republic, Harmonica, Singerpurear, TARO Bellamia, Summericia, Trifoski', vote: 0})

 

if (seyetanaQual === true) {

izHappy()

console.log(seyetanaVotes)

}

 

 

else {

izSad()

console.log(seyetanaVotes)

}

 

function izHappy(){

console.log("Welcome to the Séyetana-presented votes for BJSC 145");

console.log("Arigato, minna-san daisuki, BJSC sugoi, Iz kakkoi to kawaii");

console.log("If you can see this then we have some votes for you")

let seyetanaFinalStreak = 0;

seyetanaFinalStreak += 1;

if (postRock) {

console.log("My 18 is a great life-giving track:")

console.log("if I'm the only God then you're the proof of my existence")

}

if (asianBias) {

console.log("My 15 has a genre affiliation to the below:")

console.log("Switch my role to S, to M, so we can enter the trance, the trance")

}

if (nepotism) {

console.log("My 13 is an upstart:")

console.log("Challenging your God, you have made some illegal arguments")

}

console.log("Further to this, all my votes are epic thank you, click below to reveal")

}

 

function izSad(){

console.log("We all hate the BJSC");

let seyetanaDNQStreak = 3;

seyetanaDNQStreak += 1;

}

console.log("Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution, Execution")

console.log("eins, dos, trios, ne, fem, liu")

console.log("best of luck to you all let's have a séyetana win bye")

 

}

 

seyetanaVoting();

  • Author

2rq8sgS.jpg

198p | FARC: Rose Gray - Synchronicity

196p | Jupiterdonia: Stevie Nicks - I Can't Wait (50th Anniversary Entry)

195p | Utopia: Ibibio Sound Machine - Protection From Evil

190p | Cor Lupus: IRAIDA - Supernova

185p | Lookylion: Lights - Okay Okay

184p | Zanmatony: Mayra Verónica - Mama Mia

184p | Eastovka: Kohta Imafuku - Orihime

173p | Kathaldazia: Shonen Bat & JKS - Garonor (93 Club Mix)

169p | Hendinia: emlyn - the AUDACITY

168p | Persephonia: ill peach - COMATOSE

160p | Cumulonimbia: Ivy Hollivana - GENESIS

157p | Greenfroze: BPM15Q - Kyo You Mu

156p | Aeroche: Kryder - Piece Of Art

149p | Summericia: Namasenda - No Regrets

141p | The Actual Republic of Bellamia: Tila Tsoli - Bimbo Doll (feat. BJ Lips)

141p | Altyr Muunilinst: SKAAR - Get Him Away From Me

139p | Fljótavík: VLURE - Shattered Faith

131p | République d'Áskorza: Jessica Mauboy - Automatic

126p | New Lexico: Number One Popstar - Dance Away The Pain

126p | D'yermak'er: Spencer Ramsay - Love With You (Nathan Dawe & MORGAN Vocal Edit)

124p | Kluminican Republic: Boy Harsher - Machina (feat. Mariana Saldaña)

116p | Scherzland: Milk & Bone - Bigger Love

114p | N DNTN: S3RL - Notice Me (feat. Dorian Electra & Nikolett)

112p | Hushkanukia: Emma Muscat - Colours In The Dark

111p | Aelandor: Holding Absence - Gravity

111p | Kyriatine: Bakermat - Temptation (feat. Elise LeGrow)

110p | Aquafina: Eats Everything & Shermanology - Tell You What It Is

109p | Rolloland: AtomA - Then Came The Wave

108p | Terra Avium: Dead Pony - 23, Never Me

104p | St. Burbia: Rachel Chinouriri - All I Ever Asked

103p | Sovarasma: Floating Points - Vocoder

100p | FSR Rontvia: Naked Flames - 247 365

097p | Singerpurear: BirdSMITH - Kiss It Better

094p | Harmonica: Bob Moses - Love Brand New

091p | Yehesi: Froukje - Ik Wil Dansen

089p | Séyetana: Mili - world.execute(me);

086p | Trifoski: Ethel Cain - American Teenager

079p | Skall: UNIIQU3 - Unavailable (feat. R3LL)

077p | Oslol: Said The Sky, ILLENIUM & Chelsea Cutler - Walk Me Home

066p | POPHub: Gretta Ray - Love Me Right (Jack Garratt Saviour Mix)

062p | Danæviia: Spiritbox - Secret Garden

001p | Lotunia: TOMORROW X TOGETHER - Nap Of A Star

Synchronicity was one of my potentials :cry:

 

I need someone else to make my decisions for me

 

Same but I thought it wasn’t as good as Save Your Tears, so didn’t bother

  • Author
Qq78scN.jpg

Take a close look at the last scoreboard. We are nearing the end. The scoreboard will now be closed until every single nation has given their points. I will be taking a small break (5 min+/-) before I continue. The following nations have yet to give out their points:
Aquafina
D'yermak'er
Greenfroze
Jadakissnia
Lotunia
Persephonia
POPHub
Quintessa
Rolloland
Singerpurear
Suedeonia
Terra Avium
Vülkyria
Wholune

I might be copy and pasting from the wrong starting point or something but I'm getting a syntax error oops

 

I see my song title there though so thank you Iz x (and yay back in the top 10 for the frozen scoreboard *.* although my own votes still yet to be revealed so that's not the best sign)

  • Author
Séyetana translation please :mathswoman:

Here ^_^

 

Séyetana

18 Rolloland: AtomA - Then Came The Wave

15 Eastovka: Kohta Imafuku - Orihime

13 Aelandor: Holding Absence - Gravity

12 Utopia: Ibibio Sound Machine - Protection From Evil

11 Greenfroze: BPM15Q - Kyo You Mu

10 N DNTN: S3RL - Notice Me (feat. Dorian Electra & Nikolett)

09 Danæviia: Spiritbox - Secret Garden

08 Fljótavík: VLURE - Shattered Faith

07 Terra Avium: Dead Pony - 23, Never Me

06 Lookylion: Lights - Okay Okay

05 Cumulonimbia: Ivy Hollivana - GENESIS

04 Kathaldazia: Shonen Bat & JKS - Garonor (93 Club Mix)

03 Jupiterdonia: Stevie Nicks - I Can't Wait

02 Persephonia: ill peach - COMATOSE

01 FSR Rontvia: Naked Flames - 247 365

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.