• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 19:19
CET 01:19
KST 09:19
  • 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
[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14
StarCraft 2
General
SC: Evo Complete - Ranked Ladder OPEN ALPHA When will we find out if there are more tournament Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge RSL Season 3: RO16 results & RO8 bracket
Tourneys
Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly)
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
BGH Auto Balance -> http://bghmmr.eu/ Which season is the best in ASL? Data analysis on 70 million replays sas.vorti stream [BSL21] Ro.16 Group Stage (C->B->A->D)
Tourneys
Small VOD Thread 2.0 [Megathread] Daily Proleagues [BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread The Perfect Game Nintendo Switch Thread Beyond All Reason Should offensive tower rushing be viable in RTS games?
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
TL Mafia Community Thread Mafia Game Mode Feedback/Ideas
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Artificial Intelligence Thread YouTube Thread Things Aren’t Peaceful in Palestine
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1990 users

The Big Programming Thread - Page 794

Forum Index > General Forum
Post a Reply
Prev 1 792 793 794 795 796 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.
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
November 06 2016 23:58 GMT
#15861
I find python to be best for competitive programming because its default collections are super easy to use. Case in point, you can implement a priority queue as just a wrapper around a built-in min-heap. Yeah you get a bit of a performance penalty due to interpreting but I find that tradeoff ok because I'm personally much more likely to come up with an e.g. O(nlogn) solution instead of an O(n^2) one in Python, which is more important
slmw
Profile Blog Joined October 2010
Finland233 Posts
November 07 2016 05:42 GMT
#15862
I don't think the choice of a programming language should matter at all when designing a solution on an abstract level. It sounds quite absurd to me that you'd have an easier time to come up with more efficient algorithms or data structures with Python if you're familiar with both C++ and Python. Obviously, if you're more familiar with one language it's probably easier to implement algorithms in that language. The performance difference is definitely significant if you're actually trying to compete.
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
Last Edited: 2016-11-07 07:03:18
November 07 2016 07:03 GMT
#15863
When you're competing you are also graded on time at which you come up with a solution and overall have a max time limit, I think actually writing an efficient solution in python is a lot faster than in c++ (where I'd be more tempted to use a "dumber" algorithm to not mess with the STL), but that could just be me.
Manit0u
Profile Blog Joined August 2004
Poland17475 Posts
November 07 2016 09:34 GMT
#15864
I need a bit of help with sysadmin stuff...

System: Ubuntu 14.04
Problem: I have a load balancer working on port 11223 but it won't accept connections from outside of the system (curl localthost:11223/url works fine, trying it from another computer in the network does not).

I've tried 2 things:

$sudo iptables -I INPUT -p tcp -s 0.0.0.0/0 --dport 11223 -j ACCEPT
$sudo ufw allow 11223


Some outputs:

netstat:
tcp 0 0 127.0.0.1:11223 0.0.0.0:* LISTEN

nmap:
Host is up (0.000045s latency).
PORT STATE SERVICE
11223/tcp closed unknown

iptables:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:11223


How can I open this port to public?
Time is precious. Waste it wisely.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-11-07 10:19:53
November 07 2016 10:16 GMT
#15865
--- Nuked ---
Manit0u
Profile Blog Joined August 2004
Poland17475 Posts
November 07 2016 10:40 GMT
#15866
Yeah, just found out that in the load balancer config it was bound to 127.0.0.1 instead of public IP. Changing the config and restarting it solved the problem.
Time is precious. Waste it wisely.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2016-11-07 17:35:33
November 07 2016 17:33 GMT
#15867
Most (big name) programming competitions don't allow use of Python. It's generally C, C++, maybe Java. There are some exceptions.

But yea if it's allowed, and you don't think you can get to better algorithms in a faster language, Python will do you better. You'll get smoked by any team that has a math person doing the algorithms and someone with a strong grasp of C++ by virtue of Python being slow AF.
Who after all is today speaking about the destruction of the Armenians?
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
November 08 2016 07:08 GMT
#15868
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.


Hi can i get one McGracken please?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-11-08 07:34:55
November 08 2016 07:34 GMT
#15869
--- Nuked ---
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
November 08 2016 07:51 GMT
#15870
On November 08 2016 16:34 Nesserev wrote:
Show nested quote +
On November 08 2016 16:08 MarwanBaki wrote:
+ Show Spoiler +
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



Is your example representative of your problem, because, if so, you could just use copy paste.



If you mean manually copy paste. I have about 4,000 Root Folders - with about 20 folders in each. That would easily take 3-5 hours - with the possibility of a few mistakes.
Hi can i get one McGracken please?
Acrofales
Profile Joined August 2010
Spain18133 Posts
Last Edited: 2016-11-08 08:08:26
November 08 2016 08:00 GMT
#15871
On November 08 2016 16:51 MarwanBaki wrote:
Show nested quote +
On November 08 2016 16:34 Nesserev wrote:
On November 08 2016 16:08 MarwanBaki wrote:
+ Show Spoiler +
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



Is your example representative of your problem, because, if so, you could just use copy paste.



If you mean manually copy paste. I have about 4,000 Root Folders - with about 20 folders in each. That would easily take 3-5 hours - with the possibility of a few mistakes.

Still confused. What's wrong with cntrl-a cntrl-x, make new folder, cntrl-v. Wait for 4000 folders to be moved. In NTFS or ext2/3/4 this should be a few seconds at most. Other file systems may require longer.
TBO
Profile Joined September 2009
Germany1350 Posts
Last Edited: 2016-11-08 08:21:31
November 08 2016 08:20 GMT
#15872
he can't paste all 4000 at once because he needs to put them not in 1 new folder but in 4000 new ones. I didn't find any premade solution for his problem, should be easy enough to program though. On the other hand before doing that you should check if you can not just change some setting in teh program to have it accept your old folder layout (or maybe it is in an environment variable? Writing a short mail to their support also might help.
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
November 08 2016 08:44 GMT
#15873
c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

where're the 4000 new ones? it looks like everything inside Documents just moved into Personal folder.
Age of Mythology forever!
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2016-11-08 09:08:10
November 08 2016 09:06 GMT
#15874
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.




robocopy
or just write script for this.
Pathetic Greta hater.
TBO
Profile Joined September 2009
Germany1350 Posts
Last Edited: 2016-11-08 09:42:06
November 08 2016 09:37 GMT
#15875
On November 08 2016 17:44 mantequilla wrote:
c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

where're the 4000 new ones? it looks like everything inside Documents just moved into Personal folder.


ah right my bad, didn't think correctly.

[deleted unrelated question , because found out I am stupid]
BisuDagger
Profile Blog Joined October 2009
Bisutopia19299 Posts
November 08 2016 15:13 GMT
#15876
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



A bat file can work. I use something similar when making builds for my simulations. This is a sample of me first deleting items from a directory and then moving new ones in there from another directory.


rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild_Data"
rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild.exe"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild_Data" "C:\Program Files (x86)\FolderA\Build\"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild.exe" "C:\Program Files (x86)\FolderA\Build\"
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
November 08 2016 19:56 GMT
#15877
On November 09 2016 00:13 BisuDagger wrote:
Show nested quote +
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



A bat file can work. I use something similar when making builds for my simulations. This is a sample of me first deleting items from a directory and then moving new ones in there from another directory.


rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild_Data"
rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild.exe"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild_Data" "C:\Program Files (x86)\FolderA\Build\"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild.exe" "C:\Program Files (x86)\FolderA\Build\"


Oh boy - I guess its time i learn how to make bat files

Thanks alot.

AS far as the other comments - im not sure if i was clear enough so im going to give you the exact example just for kicks.


c:\data\employees\1\bloodreport\bloodreport.pdf
c:\data\employees\1\fitness\fitness.pdf
c:\data\employees\1\mri\mri.pdf

c:\data\employees\2\bloodreport\bloodreport.pdf
c:\data\employees\2\fitness\fitness.pdf
c:\data\employees\2\mri\mri.pdf

Where 2 is the id of the employee.

The new system wants the data in

c:\data\employees\1\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\1\Medical Tests\fitness\fitness.pdf
c:\data\employees\1\Medical Tests\mri\mri.pdf

c:\data\employees\2\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\2\Medical Tests\fitness\fitness.pdf
c:\data\employees\2\Medical Tests\mri\mri.pdf

And i have around 4,000 employees.

So i can't go into each folder and create a new folder then ctrl a ctrl x ctrl v

Hi can i get one McGracken please?
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
November 08 2016 21:26 GMT
#15878
problem with bat files is if you get it wrong in the first run and directories get messed up, it will be a lot more pain to sort them out. and backing up 4k folders full of files is not easy too.

copy a few of it to somewhere else, test your script there 5-10 times, until you are sure it works correctly, then back up your 4k folders to somewhere then shoot
Age of Mythology forever!
Manit0u
Profile Blog Joined August 2004
Poland17475 Posts
Last Edited: 2016-11-09 08:07:21
November 09 2016 07:09 GMT
#15879
On November 09 2016 04:56 MarwanBaki wrote:
Show nested quote +
On November 09 2016 00:13 BisuDagger wrote:
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



A bat file can work. I use something similar when making builds for my simulations. This is a sample of me first deleting items from a directory and then moving new ones in there from another directory.


rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild_Data"
rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild.exe"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild_Data" "C:\Program Files (x86)\FolderA\Build\"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild.exe" "C:\Program Files (x86)\FolderA\Build\"


Oh boy - I guess its time i learn how to make bat files

Thanks alot.

AS far as the other comments - im not sure if i was clear enough so im going to give you the exact example just for kicks.


c:\data\employees\1\bloodreport\bloodreport.pdf
c:\data\employees\1\fitness\fitness.pdf
c:\data\employees\1\mri\mri.pdf

c:\data\employees\2\bloodreport\bloodreport.pdf
c:\data\employees\2\fitness\fitness.pdf
c:\data\employees\2\mri\mri.pdf

Where 2 is the id of the employee.

The new system wants the data in

c:\data\employees\1\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\1\Medical Tests\fitness\fitness.pdf
c:\data\employees\1\Medical Tests\mri\mri.pdf

c:\data\employees\2\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\2\Medical Tests\fitness\fitness.pdf
c:\data\employees\2\Medical Tests\mri\mri.pdf

And i have around 4,000 employees.

So i can't go into each folder and create a new folder then ctrl a ctrl x ctrl v



Wait... Is there no settings in the system to set up the pick-up directory paths?

Anyway, since it's just a simple matter of changing /2/bloodreport/ to /2/Medical Tests/bloodreport/ I'd just write some php/python/ruby/whatever script and do it with it.

Or you could do it on Linux without much hassle.
Time is precious. Waste it wisely.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
November 09 2016 13:15 GMT
#15880
Dear Django,

Can you be less opinionated pls? Kthx.

Sincerely.

P.S: I still like you.
"windows bash is a steaming heap of shit" tofucake
Prev 1 792 793 794 795 796 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
2025 KFC Monthly #3 - Day 1
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft466
White-Ra 242
elazer 146
SpeCial 45
StarCraft: Brood War
Calm 3891
Artosis 601
Larva 322
ZZZero.O 81
ggaemo 15
Dota 2
syndereN496
monkeys_forever368
Counter-Strike
Fnx 63
minikerr6
Other Games
tarik_tv5370
shahzam626
JimRising 145
Mew2King135
Maynarde120
ToD23
PPMD22
Organizations
Dota 2
PGL Dota 2 - Main Stream268
Other Games
BasetradeTV32
StarCraft 2
CranKy Ducklings16
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• musti20045 29
• davetesta28
• HeavenSC 12
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• Ler908
• masondota2421
League of Legends
• Doublelift5883
Other Games
• imaqtpie1663
• Scarra612
Upcoming Events
OSC
16h 41m
LAN Event
17h 41m
Replay Cast
22h 41m
Replay Cast
1d 8h
WardiTV Korean Royale
1d 11h
Sparkling Tuna Cup
2 days
WardiTV Korean Royale
2 days
Replay Cast
2 days
Wardi Open
3 days
Monday Night Weeklies
3 days
[ Show More ]
StarCraft2.fi
3 days
Replay Cast
3 days
Wardi Open
4 days
StarCraft2.fi
4 days
Wardi Open
5 days
StarCraft2.fi
5 days
Replay Cast
5 days
The PondCast
6 days
Replay Cast
6 days
Liquipedia Results

Completed

SOOP Univ League 2025
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
META Madness #9
SL Budapest Major 2025
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
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
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.