• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:39
CEST 20:39
KST 03:39
  • 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
[ASL22] Ro8 Preview: In A Tizzy9[ASL22] Ro16 Preview: Holy Diver5[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9
Community News
Weekly Cups (Sep 13-20): herO scores triple2BSL Season 238Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down1StarCraft open world shooter announced at BlizzCon101Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10
StarCraft 2
General
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Balance hotfix patch 5.0.16b (July 16) Weekly Cups (Sep 13-20): herO scores triple How do you feel about the StarCraft shooter announcement at BlizzCon 2026? The Death of Cheese: From a Professional Cheeser
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2) Stellar Fest TWO the Moon (Dec 16-20) 2026 GSTL Announcement RSL Revival: Season 6 - Qualifiers and Main Event
Strategy
[H] ZvP Mid-Late Game: Stalkers Collossi HT
Custom Maps
[M] (2) Frigid Storage
External Content
Mutation # 544 Double Trouble The PondCast: SC2 News & Results Mutation # 543 Enhanced Defenses Mutation # 542 The Ascended
Brood War
General
Bot on ladder SC4ALL II: Brood War Player Announcement 4/4 BSL Season 23 screpdb: new Starcraft reporting tool PLAYzone Challenge - open offline tour in Prague
Tourneys
[IPSL] IPSL is Back With Winter 26-27! [ASL22] Ro8 Day 2 PLAYzone Challenge - open offline tour in Prague [ASL22] Ro16 Group D
Strategy
Cliff Jump Revisited (1 in a 1000 strategy) Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation
Other Games
General Games
Nintendo Switch Thread Warcraft III: The Frozen Throne Diablo IV Stormgate/Frost Giant Megathread EVE Corporation
Dota 2
Dota 2 Champions League Season 3 Begins April 25! Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Artificial Intelligence Thread All you football fans (soccer)!
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! [Manga] One Piece Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Recent Gifted Posts
Blogs
Violent-Cooperative Play and…
TrAiDoS
38 yo Retired SWE loo…
PurE)Rabbit-SF
Can Bots Beat Pros?? Starcr…
namkraft
[meme] I finally understa…
LUCKY_NOOB
Regacy Esports:Our Goa…
regacyesports
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7932 users

The Big Programming Thread - Page 987

Forum Index > General Forum
Post a Reply
Prev 1 985 986 987 988 989 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.
Broetchenholer
Profile Joined March 2011
Germany1967 Posts
January 10 2019 07:43 GMT
#19721
Coming from C, i wanted to use my trusted pointer list to deal with this, but found out that jscript masks their lists as arrays. I might have used string descriptions instead of just numbers to identifie elements but this was thrown together pretty quickly and streamlining has not happened yet. In the end it looks like i won't use the array at all anyway and access every element by the id, so i can take the whole thing out in the end. It's a really strange concept for me though. But yes, i can move my function definitions to the top.
shz
Profile Blog Joined October 2010
Germany2687 Posts
January 10 2019 09:53 GMT
#19722
Just to chime in on tooling:

https://eslint.org/ - for a linter
https://prettier.io/ - for formatting (also often finds bugs)
Liquipedia
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 10 2019 17:54 GMT
#19723
selenium is incredibly awesome
even though it's a pain in the ass to use with some websites, it's still awesome since there is no good alternative
thanks acrofales
Broetchenholer
Profile Joined March 2011
Germany1967 Posts
January 11 2019 13:58 GMT
#19724
Okay, next really stupid question. I am trying to get a JSON object from a get operation using XMLHttpRequest. This is my code:

var requestURL = 'http://localhost:3000/1835/bank';
var request = new XMLHttpRequest();
request.open('GET', requestURL);
request.responseType = 'json';
request.send();
request.onload = function() {
response = request.response;
}

Now, after trying to udnerstand why i couldn't get the response out of the local function scope, i realized that i did get it out but after the rest of my code had already executed. I can't build all my code from inside the function, so i need to let my code wait for this to finish or simply get it syncronously. But after reading up on callbacks and promises and await my head is spinning. I am not gonna understand this today. I have tried to sinply use syncronous communication, but this does only give me a string. Can someone give me a short piece of code that simply waits a set amount of time so that onload can do it's thing?
Acrofales
Profile Joined August 2010
Spain18445 Posts
Last Edited: 2019-01-11 15:08:50
January 11 2019 15:01 GMT
#19725
You really don't want to do that. You should study up on callbacks and promises.<edit> not only is sleep fundamentally unsafe, but you'd have to include a library to even be able to do it, and it'd be a dirty hack</edit>. The basic concept isn't actually all that complicated. Here is a quick, understandable, tutorial: https://medium.freecodecamp.org/javascript-from-callbacks-to-async-await-1cc090ddad99
shz
Profile Blog Joined October 2010
Germany2687 Posts
Last Edited: 2019-01-11 16:06:34
January 11 2019 15:58 GMT
#19726
Also, try to look up on `fetch`: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API

I'm not sure what the scope is of what you're building, but maybe it would be worth looking into a library/framework. Check React or Vue for example. There are tons of tutorials online / on YouTube which would make you way more productive than how you're doing it currently (imo). I think some people will yell at me, but what you are doing looks really painful and outdated. JS has come a long way and I'm not sure if it is really beneficial to build web apps like it's 2005 and learn outdated JS. React at least brings a lot of vanilla (up-to-date) JavaScript with it, I'm not sure about Vue. Though Vue might be easier for you.
Liquipedia
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 11 2019 16:03 GMT
#19727
lol, so the website im trying to interact with via selenium seems to literally take anti-automation measures...
it seems that the IDs of the elements change order on a daily basis
like, yesterday and element I wanted to click swapped xpath with a different element

given how many hurdles they seem to present, im expecting this is an intentional thing.

I think I'll need to search for elements via the actual text that would be outputted on the website and then click that element? Hopefully I am able to do this or it was all for naught!
Broetchenholer
Profile Joined March 2011
Germany1967 Posts
Last Edited: 2019-01-11 16:56:19
January 11 2019 16:21 GMT
#19728
I appreciate the feedback, but i am not going to learn webprogramming with my project. I am hacking together something with a headache because my pride prevents me from just postponing this even though i won't be finished when the software would have it's use, tomorrow. My biggest problem is that i didn't start with a good understanding of the basics to begin with, therefore, tutorials are basically useless. I have looked into the linked tutorial before posting this and i don't understand the code snippets, either due to headache, stupidity or lack of basics. Probably all three.

And now that i have 3 gets to ask for different data, for some reason only the last one actually gives back information, which makes even less sense... I guess i will have to stop, admit defeat and come back when i am capable of thinking again.

Edit: Fetch seems to be able to get them all simultaneously. I still have no idea what this is doing and why it works better but i guess i'll take it. And it still does not seem to solve my first problem. Arrrgh.
Silvanel
Profile Blog Joined March 2003
Poland4769 Posts
Last Edited: 2019-01-11 16:41:10
January 11 2019 16:37 GMT
#19729
On January 12 2019 01:03 travis wrote:
lol, so the website im trying to interact with via selenium seems to literally take anti-automation measures...
it seems that the IDs of the elements change order on a daily basis
like, yesterday and element I wanted to click swapped xpath with a different element

given how many hurdles they seem to present, im expecting this is an intentional thing.

I think I'll need to search for elements via the actual text that would be outputted on the website and then click that element? Hopefully I am able to do this or it was all for naught!


This what i mentioned before when i commented on Selenium. If the element is loaded in random order [the xpath is changing] (this can be antiautomation measure but can also be caused by data being retrived from container type which doesnt care about order --->just accident). You should check if the elements do not have other distinctive capabilities (names, type, id etc.) if the site is well documented You should be able to target elements by different properties. If the properties are all the same (or no name etc. at all) it does not mean they are actively fighting automation it can be lousy programming. I have seen this before on the site that was SUPPOSED to be automated.

PS. If the number of elements isnt too high You can attempt some loop with "try-except".

PS 2.Active anti-automation usually means captcha and things like that.
Pathetic Greta hater.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 11 2019 16:54 GMT
#19730
oh shit, using try-except is genius
and yeah you are definitely right, it must be that they are loading them in a random order or something. this is probably why I am having so much trouble. there's no documentation because I doubt they want people to do this - you can have access to their API but it literally costs $1000. they would never use a captcha though, because it would drive their clients crazy.

the try-except loop is a genius idea but I don't think it will work here because what's happened is that it's like a little tree that you can click and open up, and the ID switched to a different parent on the main part of the tree. so, it won't catch an exception instead it will work but it will open up the wrong part of the tree. I've looked for other distinct identifiers but there doesn't seem to be any.


hmm but maybe I can just click by X/Y coordinate of the iframe it's in? worst case scenario
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
January 11 2019 20:43 GMT
#19731
On January 12 2019 01:54 travis wrote:

hmm but maybe I can just click by X/Y coordinate of the iframe it's in? worst case scenario


Be careful hard coding things like that because it can break with different browsers or resolutions. If you're betting real money and it does something you don't want you could end up losing a lot of money as well.
I'll always be your shadow and veil your eyes from states of ain soph aur.
Lmui
Profile Joined November 2010
Canada6223 Posts
January 11 2019 20:51 GMT
#19732
Can I just say here that I am so glad that checksums provided with downloads are a thing where I work?

Story:
People were asked to apply a patch to fix an issue.
The patch was applied and system broke resulting in a fairly big escalation/rollback/call.
I checked the sha1sum that the patch is supposed to have vs what was used and it was different.

Cause:
A pre-release version of the patch was uploaded to content provider (Which contained a bug? or something). This was pretty much immediately taken down/reuploaded with the correct version.
Content provider somehow served the old version from a cache or something.

Solution:
Re-downloaded it, ran checksums and they matched, and applied patch from rolled back version and it's fine now.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2019-01-12 00:53:32
January 12 2019 00:51 GMT
#19733
On January 11 2019 22:58 Broetchenholer wrote:
Okay, next really stupid question. I am trying to get a JSON object from a get operation using XMLHttpRequest. This is my code:

var requestURL = 'http://localhost:3000/1835/bank';
var request = new XMLHttpRequest();
request.open('GET', requestURL);
request.responseType = 'json';
request.send();
request.onload = function() {
response = request.response;
}

Now, after trying to udnerstand why i couldn't get the response out of the local function scope, i realized that i did get it out but after the rest of my code had already executed. I can't build all my code from inside the function, so i need to let my code wait for this to finish or simply get it syncronously. But after reading up on callbacks and promises and await my head is spinning. I am not gonna understand this today. I have tried to sinply use syncronous communication, but this does only give me a string. Can someone give me a short piece of code that simply waits a set amount of time so that onload can do it's thing?


can't you do a while loop in your function, and actually read the json, and look for some sort of identifier in the json that would be the end of file? or some equivalent design

although I have to imagine there is a way to simply call another function when it's done. im unfamiliar what callbacks are, maybe that's what that is. if you can't do that then man that sounds awful
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 12 2019 05:03 GMT
#19734
Yes, that's what callbacks are pretty much. A function that you call at the end of something else. JS relies on them heavily. Example pseudocode:
get(something).then(print("this"));
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
SC-Shield
Profile Joined December 2018
Bulgaria880 Posts
Last Edited: 2019-01-12 07:32:08
January 12 2019 07:30 GMT
#19735
Do you guys think that C++ jobs are slightly/better paid than jobs for other languages? I think I will look for a new job but I don't think I understand market completely to negotiate my salary well enough. Advice is welcome.
Broetchenholer
Profile Joined March 2011
Germany1967 Posts
January 12 2019 10:44 GMT
#19736
I will probably, if i understand the concept somewhat correctly, cascade my fetchs now and let the last one then start the rest of the code.

Something like this:

function buildSite() {

fetch('http://localhost:3000/data1')
.then(function(response) {
return response.json();
})
.then(function() {
fetch('http://localhost:3000/data2')
.then(function(response) {
return response.json();
})
.then(function(myJson) {
fetch('http://localhost:3000/1835/stock')
.then(function(response) {
return response.json();
})
then(function(myJson) {
doAllTheStuffWithMyData();
});
});

});
}

It seems really inconvenient to me. I am probably not grasping the merits of async connections cause all this does is make the whole data import syncronous again, but waaaay more complicated.
Acrofales
Profile Joined August 2010
Spain18445 Posts
January 12 2019 10:57 GMT
#19737
On January 12 2019 19:44 Broetchenholer wrote:
I will probably, if i understand the concept somewhat correctly, cascade my fetchs now and let the last one then start the rest of the code.

Something like this:

function buildSite() {

fetch('http://localhost:3000/data1')
.then(function(response) {
return response.json();
})
.then(function() {
fetch('http://localhost:3000/data2')
.then(function(response) {
return response.json();
})
.then(function(myJson) {
fetch('http://localhost:3000/1835/stock')
.then(function(response) {
return response.json();
})
then(function(myJson) {
doAllTheStuffWithMyData();
});
});

});
}

It seems really inconvenient to me. I am probably not grasping the merits of async connections cause all this does is make the whole data import syncronous again, but waaaay more complicated.

You can use jQuery when.

It'd be something like:

$.when(
$.ajax('http://localhost:3000/data1'),
$.ajax('http://localhost:3000/data2'),
$.ajax('http://localhost:3000/stock'),
).done(function (d1, d2, stock) {
doAllTheStuffWithMyData();
});
Manit0u
Profile Blog Joined August 2004
Poland17845 Posts
January 12 2019 11:03 GMT
#19738
On January 12 2019 16:30 SC-Shield wrote:
Do you guys think that C++ jobs are slightly/better paid than jobs for other languages? I think I will look for a new job but I don't think I understand market completely to negotiate my salary well enough. Advice is welcome.


I don't think that. It all depends on your seniority and position you're applying for.
Time is precious. Waste it wisely.
Broetchenholer
Profile Joined March 2011
Germany1967 Posts
January 12 2019 11:22 GMT
#19739
On January 12 2019 19:57 Acrofales wrote:
Show nested quote +
On January 12 2019 19:44 Broetchenholer wrote:
I will probably, if i understand the concept somewhat correctly, cascade my fetchs now and let the last one then start the rest of the code.

Something like this:

function buildSite() {

fetch('http://localhost:3000/data1')
.then(function(response) {
return response.json();
})
.then(function() {
fetch('http://localhost:3000/data2')
.then(function(response) {
return response.json();
})
.then(function(myJson) {
fetch('http://localhost:3000/1835/stock')
.then(function(response) {
return response.json();
})
then(function(myJson) {
doAllTheStuffWithMyData();
});
});

});
}

It seems really inconvenient to me. I am probably not grasping the merits of async connections cause all this does is make the whole data import syncronous again, but waaaay more complicated.

You can use jQuery when.

It'd be something like:

$.when(
$.ajax('http://localhost:3000/data1'),
$.ajax('http://localhost:3000/data2'),
$.ajax('http://localhost:3000/stock'),
).done(function (d1, d2, stock) {
doAllTheStuffWithMyData();
});



That does look much cleaner, i will take a look into jQuery then, thanks.
SC-Shield
Profile Joined December 2018
Bulgaria880 Posts
Last Edited: 2019-01-13 10:33:10
January 13 2019 10:32 GMT
#19740
On January 12 2019 20:03 Manit0u wrote:
Show nested quote +
On January 12 2019 16:30 SC-Shield wrote:
Do you guys think that C++ jobs are slightly/better paid than jobs for other languages? I think I will look for a new job but I don't think I understand market completely to negotiate my salary well enough. Advice is welcome.


I don't think that. It all depends on your seniority and position you're applying for.


Why not? I think most of us here would agree that C++ is one of the hardest programming languages because it's low level. Why would an equivalent position of a C++ one get the same salary unless employer cares just about profit (which could be the case if that's what you mean)?
Prev 1 985 986 987 988 989 1032 Next
Please log in or register to reply.
Live Events Refresh
WardiTV Invitational
16:00
10 Year Group B Replay Cast
TaKeTV 408
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
MindelVK 28
StarCraft: Brood War
Britney 23069
Mini 474
ggaemo 174
Dewaltoss 159
soO 46
HiyA 26
Shine 8
Dota 2
qojqva2940
Fuzer 187
Heroes of the Storm
Liquid`Hasu404
Other Games
summit1g5638
Liquid`RaSZi1975
Beastyqt762
B2W.Neo498
ceh9467
XBOCT313
Hui .175
KnowMe137
C9.Mang0134
ArmadaUGS115
QueenE76
Mew2King47
Trikslyr43
Chillindude16
IndyStarCraft 1
Organizations
StarCraft: Brood War
Afreeca ASL 299
StarCraft 2
angryscii 20
[ Show 17 non-featured ]
StarCraft 2
• mYiSmile164
• StrangeGG 12
• Reevou 10
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• 80smullet 13
• HerbMon 10
• blackmanpl 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 3267
League of Legends
• TFBlade730
Other Games
• Shiphtur305
Upcoming Events
Replay Cast
14h 21m
WardiTV Invitational
16h 21m
Korean StarCraft League
1d 8h
CranKy Ducklings
1d 15h
GSL
2 days
Yamato Cup
2 days
Replay Cast
3 days
Afreeca Starleague
3 days
Soma vs Jaedong
WardiTV Weekly
3 days
Monday Night Weeklies
3 days
[ Show More ]
Sparkling Tuna Cup
4 days
Afreeca Starleague
4 days
Leta vs Soulkey
PiGosaur Cup
5 days
Kung Fu Cup
5 days
The PondCast
6 days
Liquipedia Results

Completed

Super Anchor Qualifying S3
Blizzard Classic Cup 2026
Big Dog Cup 2026 Div 1

Ongoing

ASL Season 22
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - GSA
Calamity Invitational
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5 - GSB
Acropolis #5 - GSC
BSL Season 23
SC4ALL II: Brood War
BSL 23: Non-Korean Championship
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Custodian Cup
Copium Cup
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
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.