• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:24
CET 00:24
KST 08:24
  • 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: 2141 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
Germany1947 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
Germany1947 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
Spain18132 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
Germany1947 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
Poland4733 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
Canada6216 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
Bulgaria832 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
Germany1947 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
Spain18132 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
Poland17450 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
Germany1947 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
Bulgaria832 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
OSC
23:00
OSC Elite Rising Star #17
CranKy Ducklings32
Liquipedia
BSL 21
20:00
RO16 TieBreaker - Group B
StRyKeR vs Artosis
OyAji vs KameZerg
ZZZero.O293
LiquipediaDiscussion
IPSL
20:00
Ro16 Group C
StRyKeR vs OldBoy
Sziky vs Tarson
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 258
StarCraft: Brood War
Calm 2789
ZZZero.O 293
Artosis 257
Dota 2
LuMiX1
Heroes of the Storm
Khaldor239
Other Games
Grubby6136
FrodaN2217
Mlord561
Pyrionflax190
Maynarde90
summit1g0
Organizations
Other Games
EGCTV1786
gamesdonequick1116
BasetradeTV30
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Hupsaiya 106
• davetesta102
• HeavenSC 45
• musti20045 28
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• Airneanach32
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21120
• Ler91
League of Legends
• Doublelift3215
Other Games
• imaqtpie1627
• Scarra124
Upcoming Events
OSC
9h 37m
Wardi Open
12h 37m
Monday Night Weeklies
17h 37m
OSC
23h 37m
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.