• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:30
CET 15:30
KST 23:30
  • 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
[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9
Community News
2025 RSL Offline Finals Dates + Ticket Sales!9BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION1Crank Gathers Season 2: SC II Pro Teams9Merivale 8 Open - LAN - Stellar Fest3Chinese SC2 server to reopen; live all-star event in Hangzhou23
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" Could we add "Avoid Matchup" Feature for rankgame Chinese SC2 server to reopen; live all-star event in Hangzhou The New Patch Killed Mech! Weekly Cups (Oct 13-19): Clem Goes for Four
Tourneys
Crank Gathers Season 2: SC II Pro Teams 2025 RSL Offline Finals Dates + Ticket Sales! Merivale 8 Open - LAN - Stellar Fest $5,000+ WardiTV 2025 Championship $3,500 WardiTV Korean Royale S4
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment
Brood War
General
BSL Team A vs Koreans - Sat-Sun 16:00 CET [ASL20] Finals Preview: Arrival BW General Discussion BSL Season 21 ASL20 Pre-season Tier List ranking!
Tourneys
[ASL20] Grand Finals The Casual Games of the Week Thread BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION ASL final tickets help
Strategy
PvZ map balance Soma's 9 hatch build from ASL Game 2 Current Meta Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Path of Exile Nintendo Switch Thread Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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 SPIRED by.ASL Mafia {211640}
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread YouTube Thread The Chess Thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! Anime Discussion Thread [Manga] One Piece Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
LMAO (controversial!!)
Peanutsc
The Benefits Of Limited Comm…
TrAiDoS
Our Last Hope in th…
KrillinFromwales
Certified Crazy
Hildegard
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1677 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
Poland17399 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
Poland17399 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
Spain18100 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
Bisutopia19295 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
Poland17399 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
CrankTV Team League
13:00
Playoffs: 2 Bo9s
BASILISK vs Shopify RebellionLIVE!
Team Liquid vs Team Falcon
LiquipediaDiscussion
WardiTV Invitational
12:00
Group D
WardiTV854
TKL 194
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 194
RotterdaM 187
Rex 95
BRAT_OK 50
Codebar 47
JuggernautJason4
StarCraft: Brood War
Britney 33727
Sea 20779
BeSt 1634
Stork 406
Pusan 395
EffOrt 250
Snow 229
sorry 80
ToSsGirL 66
Bale 22
[ Show more ]
yabsab 15
Terrorterran 13
Dota 2
Gorgc5487
qojqva2027
Dendi872
BananaSlamJamma216
XcaliburYe170
syndereN73
Counter-Strike
oskar161
markeloff67
Other Games
singsing2380
B2W.Neo1027
hiko599
crisheroes383
Pyrionflax241
Fuzer 191
Lowko171
Hui .168
Sick143
QueenE66
DeMusliM55
Mew2King53
Dewaltoss33
Organizations
Counter-Strike
PGL16185
StarCraft: Brood War
UltimateBattle 995
lovetv 21
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV476
League of Legends
• Jankos2515
• Nemesis966
• TFBlade315
Upcoming Events
BSL 21
10h 30m
Replay Cast
19h 30m
BASILISK vs TBD
Team Liquid vs Team Falcon
OSC
21h 30m
CrankTV Team League
22h 30m
Replay Cast
1d 8h
The PondCast
1d 18h
CrankTV Team League
1d 22h
Replay Cast
2 days
WardiTV Invitational
2 days
CrankTV Team League
2 days
[ Show More ]
Replay Cast
3 days
BSL Team A[vengers]
3 days
Dewalt vs Shine
UltrA vs ZeLoT
BSL 21
4 days
Sparkling Tuna Cup
4 days
BSL Team A[vengers]
4 days
Cross vs Motive
Sziky vs HiyA
BSL 21
5 days
Wardi Open
5 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

ASL Season 20
WardiTV TLMC #15
Eternal Conflict S1

Ongoing

BSL 21 Points
BSL 21 Team A
C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
CranK Gathers Season 2: SC II Pro Teams
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025

Upcoming

SC4ALL: Brood War
YSL S2
BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
META Madness #9
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 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.