• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 05:34
CEST 11:34
KST 18:34
  • 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, and the Limitations of Standard Play1Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7Code S Season 2 (2026) - RO8 Preview8
Community News
[TLMC] Summer 2026 Ladder Map Rotation05.0.16 patch for SC2 goes live (8 worker start)65ZeroSpace at Steam NextFest - Last free demo31Weekly Cups (June 8-14): Clem and Solar double, PTR tested0RSL: S6 Finals played at BlizzCon 202611
StarCraft 2
General
Mizenhauer's Douyu Cup Preview Is the larve respawn broken? 5.0.16 patch for SC2 goes live (8 worker start) ByuL, and the Limitations of Standard Play Possible bug in the new patch?
Tourneys
RSL Revival: Season 6 - Qualifiers and Main Event Douyu Cup 2026: $20,000 Legends Event (June 26-28) INu's Battles#17 <BO.9> Sparkling Tuna Cup - Weekly Open Tournament GSL CK #4 20-21th June
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 531 Experimental Artillery Mutation # 530 One For All Mutation # 529 Opportunities Unleashed
Brood War
General
vespene.gg — BW replays in browser Quality of life changes in BW that you will like ? ASL 22 Proposed Map Pool BW General Discussion [BSL22] Non-Korean Championship from 13 to 28 June
Tourneys
[ASL21] Grand Finals [Megathread] Daily Proleagues The Casual Games of the Week Thread [BSL22] GosuLeague Casts - Tue & Thu 22:00 CEST
Strategy
Creating a full chart of Zerg builds Relatively freeroll strategies Why doesn't anyone use restoration? Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Beyond All Reason Nintendo Switch Thread ZeroSpace at Steam NextFest - Last free demo
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread [H]Internet/Gaming Cafe Tips and Tricks
Fan Clubs
The HerO Fan Club! The herO Fan Club!
Media & Entertainment
Movie Discussion! Series you have seen recently... [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
Listen To The Coaches!
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7084 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
Poland17774 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
Germany1962 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
Germany1962 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
Norway8263 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
Poland4767 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
Hyrule19224 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
Spain18330 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
Norway8263 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
Zurich15366 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
Germany1962 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
Germany1962 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
Poland17774 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
Douyu Cup 2020
05:00
2026 - Day 2
Neeb vs Impact
MacSed vs Cyan
Scarlett vs Kelazhur
INnoVation vs Dear
WardiTV748
CranKy Ducklings136
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 733
StateSC2 89
StarCraft: Brood War
Sharp 155
Soma 150
PianO 128
Hyuk 97
Dewaltoss 80
Killer 78
ggaemo 78
ToSsGirL 62
Mind 43
ZergMaN 37
[ Show more ]
hero 36
Aegong 34
Rush 27
Hm[arnc] 21
yabsab 14
NotJumperer 12
zelot 9
Liquid`Ret 7
Dota 2
BananaSlamJamma284
League of Legends
JimRising 495
Other Games
ceh9591
Mew2King107
Organizations
Dota 2
PGL Dota 2 - Main Stream5592
Other Games
gamesdonequick725
StarCraft: Brood War
UltimateBattle 57
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• 3DClanTV 106
• CranKy Ducklings SOOP22
• LUISG 8
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 2
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1432
Upcoming Events
Big Brain Bouts
6h 26m
Jumy vs eGGz
Harstem vs sebesdes
TriGGeR vs HeRoMaRinE
Douyu Cup 2020
19h 26m
Maestros of the Game
1d 2h
herO vs Classic
Maru vs Serral
BSL22 NKC (BSL vs China)
1d 4h
Douyu Cup 2020
1d 19h
BSL22 NKC (BSL vs China)
2 days
Online Event
2 days
RSL Revival
2 days
WardiTV Weekly
3 days
RSL Revival
4 days
[ Show More ]
RSL Revival
4 days
Bombastic Starleague
4 days
Kung Fu Cup
5 days
OSC
5 days
CrankTV Team League
6 days
Bombastic Starleague
6 days
Replay Cast
6 days
Liquipedia Results

Completed

CSCL: Masked Kings S4
WardiTV Spring 2026
Heroes Pulsing #2

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
BSL 22 Non-Korean Championship
CSL Season 21: Qualifier 1
CSL Season 21: Qualifier 2
SCTL 2026 Spring
Douyu Cup 2026
Maestros of the Game 2
Murky Cup 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026

Upcoming

CSL 2026 Summer (S21)
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
BCC 2026
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E1
Heroes Pulsing #3
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 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.