• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 13:16
CET 18:16
KST 02:16
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (March 9-15): herO, Clem, ByuN win02026 KungFu Cup Announcement5BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains17Weekly Cups (March 2-8): ByuN overcomes PvT block4
StarCraft 2
General
Potential Updates Coming to the SC2 CN Server Blizzard Classic Cup - Tastosis announced as captains Weekly Cups (March 9-15): herO, Clem, ByuN win GSL CK - New online series BGE Stara Zagora 2026 cancelled
Tourneys
2026 KungFu Cup Announcement [GSL CK] #2: Team Classic vs. Team Solar [GSL CK] #1: Team Maru vs. Team herO RSL Season 4 announced for March-April PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Gypsy to Korea BSL 22 Map Contest — Submissions OPEN to March 10 Are you ready for ASL 21? Hype VIDEO
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Path of Exile Nintendo Switch Thread PC Games Sales Thread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Mexico's Drug War Russo-Ukrainian War Thread NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Tokyo Olympics 2021 Thread Formula 1 Discussion General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1164 users

The Big Programming Thread - Page 986

Forum Index > General Forum
Post a Reply
Prev 1 984 985 986 987 988 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2019-01-09 14:45:35
January 09 2019 14:27 GMT
#19701
it looks like they do have a rest API, with a guide, so I've got my work for today!

I am checking out selenium right now. I had heard of it but never used it before. This sounds really, really cool.


edit: I am reading a lot of chatter that I may want to use Requests instead of Selenium, if it's possible, due to speed. So I might try to get the job done with requests. Selenium still looks awesome though.
Manit0u
Profile Blog Joined August 2004
Poland17694 Posts
January 09 2019 15:22 GMT
#19702
If they have a REST API and all you want to do is check specific thing and place the bet (or not) the easiest way to go about it would be a simple CLI script using this API.
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2019-01-09 16:45:43
January 09 2019 15:49 GMT
#19703
I was wrong.. they don't have one. Their parent company does but it's for people outside the U.S. and the U.S. website is completely different.

Looks like I have to do this the hard way


edit: the good news is this all came to a head in a giant clusterf*ck, and is forcing me to clean up and organize my PC

I've been using ubuntu in windows, but I also had a previous installation of python in windows, as well as an installation through anaconda, and an installation through ubuntu... and i never leaned up any of it and slowly over time I have been having more and more issues and conflicts. my laziness has finally caught up with me so I am being forced to take care of all of this
Broetchenholer
Profile Joined March 2011
Germany1954 Posts
January 09 2019 16:16 GMT
#19704
Hey guys, i am currently stuck with my little project, maybe you can help me quickly. I am doing a small web application using jscript.

I do have a variable number of elements on my page, for simplicity, let's say i have x buttons on the page. I have a function that on DOMContentLoaded reads an array and for each entry creates a button. The buttons are saved in the global array and the all have ids button1, button2.

Now i want to have an event that recognizes that this specific button has been pressed. This looks like this for me:


document.getElementById('split'+i).addEventListener('click', function(){ausbezahlen(i)},true);

The line is in the main function called at the start when i am in the for loop going over the input just after creating the button called split, i is the looping variable. When i click the element though, the function ausbezahlen receives the last used value of i which is not used no more as the loop is then completed.

Essentially, i need a way to talk to my elements and i currently hit a road block in understanding jscript or basic logic. Anybody got some insight?
njt7
Profile Joined August 2012
Sweden769 Posts
January 09 2019 17:06 GMT
#19705
Fat arrow function to bind scope.
document.getElementById('split'+i).addEventListener('click', ()=>{ausbezahlen(i)},true);


"All the casters who flamed me ever for anything."
Broetchenholer
Profile Joined March 2011
Germany1954 Posts
January 09 2019 17:15 GMT
#19706
Hm, there is no change, ausbezahlen still gets 3. I am pretty sure i am doing something fundamentally wrong
shz
Profile Blog Joined October 2010
Germany2687 Posts
January 09 2019 17:35 GMT
#19707
A bit more code would help I think.

But maybe


document.getElementById('split'+i)
.addEventListener('click', (e) => { ausbezahlen(e.currentTarget.id) },true);


?
Liquipedia
Excludos
Profile Blog Joined April 2010
Norway8242 Posts
Last Edited: 2019-01-09 19:32:50
January 09 2019 19:32 GMT
#19708
Just a protip btw: In computer science there's an above average chance you're going to be working with people who doesn't know German (or whoever takes over your project once you've done your part of it). Always code in English, even for small projects, so you'll get used to it
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2019-01-09 19:45:50
January 09 2019 19:44 GMT
#19709
Sometimes its required to code in certain language. I was told that in one of big polish companies owned by our government had (or has) a styleguide saying function/class/variables names should be in polish. It was hilarious supposedly.

I think it was PKP if anyone from Poland is intrested by i am not totally sure.
Pathetic Greta hater.
tofucake
Profile Blog Joined October 2009
Hyrule19196 Posts
January 09 2019 19:54 GMT
#19710
On January 10 2019 01:16 Broetchenholer wrote:
Hey guys, i am currently stuck with my little project, maybe you can help me quickly. I am doing a small web application using jscript.

I do have a variable number of elements on my page, for simplicity, let's say i have x buttons on the page. I have a function that on DOMContentLoaded reads an array and for each entry creates a button. The buttons are saved in the global array and the all have ids button1, button2.

Now i want to have an event that recognizes that this specific button has been pressed. This looks like this for me:


document.getElementById('split'+i).addEventListener('click', function(){ausbezahlen(i)},true);

The line is in the main function called at the start when i am in the for loop going over the input just after creating the button called split, i is the looping variable. When i click the element though, the function ausbezahlen receives the last used value of i which is not used no more as the loop is then completed.

Essentially, i need a way to talk to my elements and i currently hit a road block in understanding jscript or basic logic. Anybody got some insight?

It would be cleaner to bind to a class and use data attributes to get more information. It would also save a loop and a bunch of scope mess
Liquipediaasante sana squash banana
Acrofales
Profile Joined August 2010
Spain18234 Posts
January 09 2019 20:06 GMT
#19711
On January 10 2019 01:16 Broetchenholer wrote:
Hey guys, i am currently stuck with my little project, maybe you can help me quickly. I am doing a small web application using jscript.

I do have a variable number of elements on my page, for simplicity, let's say i have x buttons on the page. I have a function that on DOMContentLoaded reads an array and for each entry creates a button. The buttons are saved in the global array and the all have ids button1, button2.

Now i want to have an event that recognizes that this specific button has been pressed. This looks like this for me:


document.getElementById('split'+i).addEventListener('click', function(){ausbezahlen(i)},true);

The line is in the main function called at the start when i am in the for loop going over the input just after creating the button called split, i is the looping variable. When i click the element though, the function ausbezahlen receives the last used value of i which is not used no more as the loop is then completed.

Essentially, i need a way to talk to my elements and i currently hit a road block in understanding jscript or basic logic. Anybody got some insight?

When you generate the elements do you assign them the correct IDs? In general, open it up in chrome, hit cntr-shift-i, go to console and debug this with breakpoints and console scripting.
Excludos
Profile Blog Joined April 2010
Norway8242 Posts
January 09 2019 20:12 GMT
#19712
On January 10 2019 04:44 Silvanel wrote:
Sometimes its required to code in certain language. I was told that in one of big polish companies owned by our government had (or has) a styleguide saying function/class/variables names should be in polish. It was hilarious supposedly.

I think it was PKP if anyone from Poland is intrested by i am not totally sure.


Can't wait until they have a problem that one of their close by consultant companies can take care of, except the consultant in questions only speaks English (Well, maybe Poland doesn't have that many software developer immigrants?). It would also be hilarious trying to get any kind of help over the internet with classes, functions and variables all named in what for us might as well be gibberish

In the last 3 years I've worked with a German guy, a Japanese guy, a Chinese, and a French who all spoke/speak rather broken Norwegian. Enough basics to be understood, but definitively not enough to do any work with.
zatic
Profile Blog Joined September 2007
Zurich15363 Posts
January 09 2019 20:37 GMT
#19713
On January 10 2019 00:49 travis wrote:
I was wrong.. they don't have one. Their parent company does but it's for people outside the U.S. and the U.S. website is completely different.

Looks like I have to do this the hard way


edit: the good news is this all came to a head in a giant clusterf*ck, and is forcing me to clean up and organize my PC

I've been using ubuntu in windows, but I also had a previous installation of python in windows, as well as an installation through anaconda, and an installation through ubuntu... and i never leaned up any of it and slowly over time I have been having more and more issues and conflicts. my laziness has finally caught up with me so I am being forced to take care of all of this

Having about 35 Python installations and environments in various stages of disintegration is basically a right of passage to any serious work with Python
https://xkcd.com/1987/
ModeratorI know Teamliquid is known as a massive building
LightTemplar
Profile Blog Joined August 2011
Ireland481 Posts
January 09 2019 21:01 GMT
#19714
Was gonna link that earlier but figured linking xkcd in a programming thread might be superfluous :D

But yeh, I think I gain a new python install about once a year and pretty much only lose them when hard drives die...
"Thoughts are always there, the mind can't stop" - Grubby
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
January 09 2019 21:34 GMT
#19715
That xkcd actually just gave me PTSD
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 09 2019 22:05 GMT
#19716
Isn't that why we use pyenv and docker containers?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2019-01-10 01:20:18
January 10 2019 00:54 GMT
#19717
edit: fml companies are dicks oh well selenium is cool
Broetchenholer
Profile Joined March 2011
Germany1954 Posts
Last Edited: 2019-01-10 01:11:40
January 10 2019 00:56 GMT
#19718
On January 10 2019 05:06 Acrofales wrote:
Show nested quote +
On January 10 2019 01:16 Broetchenholer wrote:
Hey guys, i am currently stuck with my little project, maybe you can help me quickly. I am doing a small web application using jscript.

I do have a variable number of elements on my page, for simplicity, let's say i have x buttons on the page. I have a function that on DOMContentLoaded reads an array and for each entry creates a button. The buttons are saved in the global array and the all have ids button1, button2.

Now i want to have an event that recognizes that this specific button has been pressed. This looks like this for me:


document.getElementById('split'+i).addEventListener('click', function(){ausbezahlen(i)},true);

The line is in the main function called at the start when i am in the for loop going over the input just after creating the button called split, i is the looping variable. When i click the element though, the function ausbezahlen receives the last used value of i which is not used no more as the loop is then completed.

Essentially, i need a way to talk to my elements and i currently hit a road block in understanding jscript or basic logic. Anybody got some insight?

When you generate the elements do you assign them the correct IDs? In general, open it up in chrome, hit cntr-shift-i, go to console and debug this with breakpoints and console scripting.


Allright, so this is what i am doing, condensed to only the element in question. Around that there is a lot of stuff and my main problem seems to be scope.

/*
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
</head>
<body>
<header>
</header>
<script>
'use strict';
var companies = document.querySelector('header');

var comArray = [
{
Name: "Bayern",
Kontostand: 0
},
{
Name: "Baden",
Kontostand: 0
},
{
Name: "Oldenburg",
Kontostand: 0
}
];

function getInformation(){


//Gesellschaftsinformationen einholen
//global definiert


var zieleArray = ['Bank','Vorpreussen 1','Vorpreussen 2','Vorpreussen 3','Vorpreussen 4','Vorpreussen 5','Vorpreussen 6','Bayern','Sachsen','Baden','Hessen','Württemberg','Mecklenburg','Oldenburg'];

for (var i = 0;i<comArray.length; i++) {
var myh3 = document.createElement('h3');
myh3.textContent = comArray[i]['Name'];
companies.appendChild(myh3);


//GewinneRadio comArray[i][6] + [7]
var input = document.createElement('input');
input.type = 'radio';
input.checked = true;
comArray[i][6] = input;
comArray[i][6].id = 'split'+i;
comArray[i][6].name = 'group-a'+ i;
companies.appendChild(comArray[i][6]);

input = document.createElement('input');
input.type = 'radio';
comArray[i][7] = input;
comArray[i][7].id = 'retain'+i;
comArray[i][7].name = 'group-a'+ i;
companies.appendChild(comArray[i][7]);

//GewinneButton comArray[i][8]
var button = document.createElement('button');
button.textContent = 'Ausbezahlen';
comArray[i][8] = button;
comArray[i][8].id = 'gains'+i;
companies.appendChild(comArray[i][8]);


function ausbezahlen (test) {
console.log(test);
if (document.getElementById('split'+test).checked == true){
document.getElementById('gains'+test).textContent = 'Ausbezahlen';
}
}
function einbehalten (test) {
console.log(test);
if (document.getElementById('retain'+test).checked == true){
document.getElementById('gains'+test).textContent = 'Einbehalten';
}
}
console.log(i);
document.getElementById('split'+i).addEventListener('click', ()=>{ausbezahlen(i)},true);
document.getElementById('retain'+i).addEventListener('click', ()=>{einbehalten(i)},true);


}
}

document.addEventListener('DOMContentLoaded',getInformation(),true);

</script>
</body>
</html>*/

First, it's super messy, i had to learn jscript and html from selfhtml in 3 days, simply jumping over everything copying in parts that sounded like they would work and then starting to fiddle until stuff clicked together somewhat. And yes, mixing german with english is completely stupid as well, thanks for the note. So, what i do is execute getInformation() on DOMContentLoaded, which should then populate the variable part of my page. Most of that is deleted for simplification. Next step was to actually get events onto the forms to transmit content to the server mostly, i started with the simple task of changing the text on my button depending on the selected radio button. First, i thought i would need an array to identify my elements, so i put everything into comArray. Trying to access that did not work though, so i started to give everything ids and call them by that. This worked as long as i would hardcode an event listener for a specific element. Then i tried this, Upon creating the element in the for-loop, i am adding a listener and calling a function in that listener. That function hands over the variable part of the id and then amends that once it is clicked. The variable is passed on when the function is called though and not when the event listener is created, which results in 3 being passed and therefore nothing works.

How do i achieve this?
Broetchenholer
Profile Joined March 2011
Germany1954 Posts
January 10 2019 01:06 GMT
#19719
On January 10 2019 02:35 shz wrote:
A bit more code would help I think.

But maybe


document.getElementById('split'+i)
.addEventListener('click', (e) => { ausbezahlen(e.currentTarget.id) },true);


?


Yay, this does work, thanks a lot. I feel like this is a workaround for my very messy implementation, though, is there a better way to handle that?
Manit0u
Profile Blog Joined August 2004
Poland17694 Posts
Last Edited: 2019-01-10 03:32:04
January 10 2019 03:24 GMT
#19720
On January 10 2019 10:06 Broetchenholer wrote:
I feel like this is a workaround for my very messy implementation, though, is there a better way to handle that?


First of all, I would avoid stuff like arr[i][6]... Where does this 6 come from? What does it mean? How can you be sure that element i of this array is itself an array?

Magic numbers and too many assumptions are a bad thing. Also, I don't think that defining functions inside the for loop is a great idea (but it's JS, so it might be there).

When beginning any programming I strongly suggest using a linter. Those can teach you some good practices and make your code cleaner.

Here's an example for JS: https://www.jslint.com/

On January 10 2019 04:44 Silvanel wrote:
Sometimes its required to code in certain language. I was told that in one of big polish companies owned by our government had (or has) a styleguide saying function/class/variables names should be in polish. It was hilarious supposedly.

I think it was PKP if anyone from Poland is intrested by i am not totally sure.


There's plenty of companies in Poland that have at least some part of their code base in Polish. A lot of people who don't know enough English.

The worst of all are companies which mix and match stuff. I've seen function names like "get_rand_kwadrat" (en: "get_rand_square"). It's truly exasperating.
Time is precious. Waste it wisely.
Prev 1 984 985 986 987 988 1032 Next
Please log in or register to reply.
Live Events Refresh
Monday Night Weeklies
17:00
#44
TKL 106
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RushiSC 139
UpATreeSC 129
TKL 106
JuggernautJason84
mouzHeroMarine 59
StarCraft: Brood War
Sea 3192
EffOrt 449
Soma 378
PianO 127
Rush 110
hero 74
sorry 41
NotJumperer 39
Rock 29
soO 15
[ Show more ]
ivOry 9
Dota 2
qojqva3703
canceldota81
League of Legends
JimRising 469
Counter-Strike
fl0m1889
byalli507
adren_tv89
Heroes of the Storm
MindelVK12
Other Games
singsing2080
B2W.Neo922
hiko777
ceh9521
Beastyqt444
Hui .138
Liquid`VortiX135
ArmadaUGS132
crisheroes123
Mew2King84
QueenE82
Trikslyr54
oskar46
Organizations
Dota 2
PGL Dota 2 - Main Stream644
Other Games
WardiTV239
BasetradeTV111
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Adnapsc2 5
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift3074
• Jankos1631
• Shiphtur127
Other Games
• imaqtpie366
Upcoming Events
WardiTV Team League
18h 44m
PiGosaur Cup
1d 6h
Kung Fu Cup
1d 17h
OSC
2 days
The PondCast
2 days
KCM Race Survival
2 days
WardiTV Team League
2 days
Replay Cast
3 days
KCM Race Survival
3 days
WardiTV Team League
3 days
[ Show More ]
Korean StarCraft League
4 days
RSL Revival
4 days
Maru vs Zoun
Cure vs ByuN
uThermal 2v2 Circuit
4 days
BSL
5 days
RSL Revival
5 days
herO vs MaxPax
Rogue vs TriGGeR
BSL
6 days
Replay Cast
6 days
Replay Cast
6 days
Afreeca Starleague
6 days
Sharp vs Scan
Rain vs Mong
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

Proleague 2026-03-15
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.