• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 13:13
CEST 19:13
KST 02:13
  • 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
[ASL21] Ro8 Preview Pt1: Inheritors2[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists16[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10
Community News
2026 GSL Season 1 Qualifiers19Maestros of the Game 2 announced92026 GSL Tour plans announced15Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid25
StarCraft 2
General
MaNa leaves Team Liquid Maestros of the Game 2 announced 2026 GSL Tour plans announced Team Liquid Map Contest #22 - The Finalists Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament 2026 GSL Season 1 Qualifiers INu's Battles#14 <BO.9 2Matches> GSL CK: More events planned pending crowdfunding RSL Revival: Season 5 - Qualifiers and Main Event
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 522 Flip My Base The PondCast: SC2 News & Results Mutation # 521 Memorable Boss Mutation # 520 Moving Fees
Brood War
General
[ASL21] Ro8 Preview Pt1: Inheritors Leta's ASL S21 Ro.16 review FlaSh: This Will Be My Final ASL【ASL S21 Ro.16】 BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion
Tourneys
[ASL21] Ro16 Group D [Megathread] Daily Proleagues Escore Tournament StarCraft Season 2 [ASL21] Ro16 Group C
Strategy
Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Dawn of War IV Diablo IV Total Annihilation Server - TAForever Starcraft Tabletop Miniature Game
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread YouTube Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
Formula 1 Discussion 2024 - 2026 Football Thread McBoner: A hockey love story
World Cup 2022
Tech Support
Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1609 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
Poland17733 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
Poland17733 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
Spain18278 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
Turkey781 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
Poland4751 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
Bisutopia19339 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
Turkey781 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
Poland17733 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
PSISTORM Gaming Misc
15:55
FSL s10 playoff replays
Freeedom16
Liquipedia
Ladder Legends
15:00
Valedictorian Cup #1
Solar vs GgMaChine
Bunny vs Cham
ByuN vs MaxPax
SteadfastSC144
Liquipedia
WardiTV Map Contest Tou…
11:00
Playoffs Day 4
Clem vs SHINLIVE!
MaxPax vs TBD
WardiTV1825
IntoTheiNu 833
TKL 618
Ryung 309
IndyStarCraft 287
Rex130
3DClanTV 121
EnkiAlexander 83
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 607
Ryung 309
IndyStarCraft 287
SteadfastSC 144
Rex 127
Railgan 105
BRAT_OK 60
EmSc Tv 16
StarCraft: Brood War
Calm 3778
Horang2 580
firebathero 313
Mini 284
ggaemo 191
zelot 57
Sexy 37
Rock 30
Dewaltoss 21
Sacsri 19
[ Show more ]
Terrorterran 18
IntoTheRainbow 15
SilentControl 13
GoRush 10
Dota 2
qojqva2845
Counter-Strike
byalli1120
Super Smash Bros
Mew2King114
Heroes of the Storm
Khaldor1189
Liquid`Hasu517
MindelVK9
Other Games
singsing2254
Grubby1187
FrodaN1138
B2W.Neo1083
Beastyqt981
XBOCT348
crisheroes269
mouzStarbuck228
QueenE130
KnowMe56
Organizations
Other Games
gamesdonequick422
BasetradeTV235
StarCraft 2
angryscii 20
EmSc Tv 16
EmSc2Tv 16
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 17 non-featured ]
StarCraft 2
• OhrlRock 1
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• 80smullet 12
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• Jankos1876
• Nemesis1541
Other Games
• imaqtpie648
• WagamamaTV413
• Shiphtur153
Upcoming Events
BSL
1h 47m
CranKy Ducklings
6h 47m
Replay Cast
15h 47m
Wardi Open
16h 47m
Afreeca Starleague
16h 47m
Soma vs hero
Monday Night Weeklies
22h 47m
Replay Cast
1d 6h
Replay Cast
1d 15h
Afreeca Starleague
1d 16h
Leta vs YSC
Replay Cast
3 days
[ Show More ]
The PondCast
3 days
KCM Race Survival
3 days
Replay Cast
4 days
Replay Cast
4 days
Escore
4 days
Replay Cast
5 days
Replay Cast
5 days
IPSL
5 days
Ret vs Art_Of_Turtle
Radley vs TBD
BSL
6 days
Replay Cast
6 days
uThermal 2v2 Circuit
6 days
Liquipedia Results

Completed

Escore Tournament S2: W4
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
WardiTV TLMC #16
Nations Cup 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Escore Tournament S2: W5
KK 2v2 League Season 1
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
2026 GSL S1
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
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.