• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:47
CET 00:47
KST 08:47
  • 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
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA15
StarCraft 2
General
Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge SC: Evo Complete - Ranked Ladder OPEN ALPHA RSL Season 3: RO16 results & RO8 bracket RSL Season 3 - Playoffs Preview Mech is the composition that needs teleportation t
Tourneys
RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
2v2 maps which are SC2 style with teams together? Data analysis on 70 million replays BGH Auto Balance -> http://bghmmr.eu/ soO on: FanTaSy's Potential Return to StarCraft A cwal.gg Extension - Easily keep track of anyone
Tourneys
[BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] RO16 Tie Breaker - Group A - Sat 21:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games? Clair Obscur - Expedition 33 Stormgate/Frost Giant Megathread
Dota 2
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 Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread The Games Industry And ATVI Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread Korean Music Discussion
Sports
Formula 1 Discussion 2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1977 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
Poland17450 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
Germany1947 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
Germany1947 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
Norway8196 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
Poland4733 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
Hyrule19159 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
Spain18132 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
Norway8196 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
Zurich15355 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
Germany1947 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
Germany1947 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
Poland17450 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
OSC
23:00
OSC Elite Rising Star #17
CranKy Ducklings72
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 249
StarCraft: Brood War
Calm 2842
Artosis 682
Terrorterran 1
Heroes of the Storm
Khaldor222
Other Games
Grubby5200
summit1g4350
FrodaN2006
Mlord526
Pyrionflax206
Maynarde99
Organizations
Other Games
EGCTV1765
gamesdonequick1185
BasetradeTV29
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Hupsaiya 107
• davetesta95
• HeavenSC 47
• musti20045 34
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• Airneanach30
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21281
• Ler83
League of Legends
• Doublelift4348
Other Games
• imaqtpie1547
• Scarra657
Upcoming Events
OSC
9h 13m
Wardi Open
12h 13m
Monday Night Weeklies
17h 13m
OSC
23h 13m
Wardi Open
1d 12h
Replay Cast
2 days
Wardi Open
2 days
Tenacious Turtle Tussle
3 days
The PondCast
3 days
Replay Cast
3 days
[ Show More ]
LAN Event
4 days
Replay Cast
4 days
Replay Cast
5 days
Sparkling Tuna Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-11-21
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
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 © 2025 TLnet. All Rights Reserved.