• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:12
CEST 22:12
KST 05:12
  • 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] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists16[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0
Community News
2026 GSL Season 1 Qualifiers13Maestros of the Game 2 announced82026 GSL Tour plans announced14Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid24
StarCraft 2
General
Maestros of the Game 2 announced Team Liquid Map Contest #22 - The Finalists MaNa leaves Team Liquid 2026 GSL Tour plans announced Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament 2026 GSL Season 1 Qualifiers GSL CK: More events planned pending crowdfunding RSL Revival: Season 5 - Qualifiers and Main Event Master Swan Open (Global Bronze-Master 2)
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
Pros React To: ASL S21, Ro.16 Group C ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ [TOOL] Starcraft Chat Translator Data needed
Tourneys
[Megathread] Daily Proleagues [ASL21] Ro16 Group C [ASL21] Ro16 Group D [ASL21] Ro16 Group B
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
Diablo IV Nintendo Switch Thread Dawn of War IV Starcraft Tabletop Miniature Game General RTS Discussion Thread
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
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
McBoner: A hockey love story 2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
[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: 2985 users

The Big Programming Thread - Page 93

Forum Index > General Forum
Post a Reply
Prev 1 91 92 93 94 95 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.
Millitron
Profile Blog Joined August 2010
United States2611 Posts
Last Edited: 2011-11-03 23:02:40
November 03 2011 22:55 GMT
#1841
Hopefully quick question.

I'm working on a database application, and need to ensure the user can't use the record navigation buttons to move past the first or last records in the table. I am working in VBA for Microsoft Access 2010.

The following code handles the previous record button, and works fine:

+ Show Spoiler +
Private Sub cmdPrevious_Click()
On Error GoTo Err_cmdPrevious_Click
Dim currentRec As Integer

DoCmd.GoToRecord , , acPrevious
currentRec = Me.CurrentRecord

If currentRec = 1 Then
cmdNext.Enabled = True
cmdNext.SetFocus
cmdPrevious.Enabled = False
Else
cmdPrevious.Enabled = True
cmdNext.Enabled = True
End If

Exit_cmdPrevious_Click:
Exit Sub
Err_cmdPrevious_Click:
MsgBox Err.Description
Resume Exit_cmdPrevious_Click
End Sub


It allows the user to go to the previous record so long as the user is not already at the first record.

The following code is supposed to control the Next Record button, and allow the user to go to the next record so long as the user is not already at the last record. Only problem is that it currently lets the user move past the final record. Why is this?

+ Show Spoiler +
Private Sub cmdNext_Click()
On Error GoTo Err_cmdNext_Click
Dim currentRec As Integer

DoCmd.GoToRecord , , acNext
currentRec = Me.CurrentRecord

If currentRec = recCount Then
cmdPrevious.SetFocus
cmdNext.Enabled = False
cmdPrevious.Enabled = True
Else
cmdPrevious.Enabled = True
cmdNext.Enabled = True
End If

Exit_cmdNext_Click:
Exit Sub
Err_cmdNext_Click:
MsgBox Err.Description
Resume Exit_cmdNext_Click
End Sub

Any ideas?

Edit: Sorry about the poor indenting, I indented properly when I posted, but the forum seems to ignore it. Further, I can't seem to fix it either
Who called in the fleet?
tec27
Profile Blog Joined June 2004
United States3702 Posts
November 06 2011 09:03 GMT
#1842
I've put up a new repository on github that some of you might be interested in. I've been working on a project in my spare time involving Node.js, but I'm not really ready to talk about what that project is yet However, as a side effect, I've been working on creating an SC2 replay parsing library completely in javascript, which is what I've posted to github.

http://github.com/tec27/comsat

If you're interested in processing replays with Node, or just interested in how replay files are formatted, you should check it out. Its not fully done yet, as it only currently processes a couple of the files inside the replays. It's missing chat and action parsing. Hopefully that should all be in in the next couple weeks. For now though, it still has a decent feature set if you want to retrieve metadata from replays.

Screenshot of an example Express.js application I whipped up to demo it:
[image loading]

And I had map downloading/thumbnail extracting working, but its currently removed until I figure out how it best fits into the library. Sucks though, would make the screenshot look so much better
Can you jam with the console cowboys in cyberspace?
FirstBorn
Profile Blog Joined March 2007
Romania3955 Posts
November 06 2011 09:22 GMT
#1843
Awesome stuff man, I've been wanting to try some Node in my spare time, but uni schedule doesn't really allow me.
SonuvBob: Yes, the majority of TL is college-aged, and thus clearly stupid.
RoyalCheese
Profile Joined May 2010
Czech Republic745 Posts
November 06 2011 09:34 GMT
#1844
On November 06 2011 18:03 tec27 wrote:
I've put up a new repository on github that some of you might be interested in. I've been working on a project in my spare time involving Node.js, but I'm not really ready to talk about what that project is yet However, as a side effect, I've been working on creating an SC2 replay parsing library completely in javascript, which is what I've posted to github.

http://github.com/tec27/comsat

If you're interested in processing replays with Node, or just interested in how replay files are formatted, you should check it out. Its not fully done yet, as it only currently processes a couple of the files inside the replays. It's missing chat and action parsing. Hopefully that should all be in in the next couple weeks. For now though, it still has a decent feature set if you want to retrieve metadata from replays.

Screenshot of an example Express.js application I whipped up to demo it:
[image loading]

And I had map downloading/thumbnail extracting working, but its currently removed until I figure out how it best fits into the library. Sucks though, would make the screenshot look so much better


Interesting, i will be needing something similar for a project i'm not ready to talk about either ^_^, for jvm though (scala, awww yeah). How do you run mpyq? Just start up a new process and communicate with it via std{in,out}?
Kennigit: "Chill was once able to retire really young, but decided to donate his entire salary TO SUPPORT ESPORTS"
Bigpet
Profile Joined July 2010
Germany533 Posts
November 06 2011 10:38 GMT
#1845
On November 06 2011 18:34 RoyalCheese wrote:
Interesting, i will be needing something similar for a project i'm not ready to talk about either ^_^, for jvm though (scala, awww yeah). How do you run mpyq? Just start up a new process and communicate with it via std{in,out}?


well guessing by this line:
var mpyq = child_process.spawn('python', [__dirname + '/mpyq/extract_replay.py', filename, replayExtractPath]);

I'd say so.

What I don't understand is why people are writing server code in JS. But oh well, no use arguing programming/scripting laguages
I'm NOT the caster with a similar nick
tec27
Profile Blog Joined June 2004
United States3702 Posts
November 06 2011 15:57 GMT
#1846
On November 06 2011 18:34 RoyalCheese wrote:
Show nested quote +
On November 06 2011 18:03 tec27 wrote:
I've put up a new repository on github that some of you might be interested in. I've been working on a project in my spare time involving Node.js, but I'm not really ready to talk about what that project is yet However, as a side effect, I've been working on creating an SC2 replay parsing library completely in javascript, which is what I've posted to github.

http://github.com/tec27/comsat

If you're interested in processing replays with Node, or just interested in how replay files are formatted, you should check it out. Its not fully done yet, as it only currently processes a couple of the files inside the replays. It's missing chat and action parsing. Hopefully that should all be in in the next couple weeks. For now though, it still has a decent feature set if you want to retrieve metadata from replays.

Screenshot of an example Express.js application I whipped up to demo it:
[image loading]

And I had map downloading/thumbnail extracting working, but its currently removed until I figure out how it best fits into the library. Sucks though, would make the screenshot look so much better


Interesting, i will be needing something similar for a project i'm not ready to talk about either ^_^, for jvm though (scala, awww yeah). How do you run mpyq? Just start up a new process and communicate with it via std{in,out}?

I just wrote a couple of python scripts that do what I need with it, then run them in a new process, yeah. I actually don't need to communicate with it very much after I start it up (I pass in a couple arguments to tell it what to do, and thats about it). All I really do is check the error code, and log any output it prints to stderr.

On November 06 2011 19:38 Bigpet wrote:
Show nested quote +
On November 06 2011 18:34 RoyalCheese wrote:
Interesting, i will be needing something similar for a project i'm not ready to talk about either ^_^, for jvm though (scala, awww yeah). How do you run mpyq? Just start up a new process and communicate with it via std{in,out}?


well guessing by this line:
Show nested quote +
var mpyq = child_process.spawn('python', [__dirname + '/mpyq/extract_replay.py', filename, replayExtractPath]);

I'd say so.

What I don't understand is why people are writing server code in JS. But oh well, no use arguing programming/scripting laguages

Javascript is actually a really nice language for it. People have been using Ruby and Python for a lot of the same purposes, but Javascript is kind of cool because it provides a different way of working with objects (prototypes). Well, not *all* that different from how Ruby does it, but its a bit easier to use imo. Personally, I've been having a blast programming with it, and its really flexible.
Can you jam with the console cowboys in cyberspace?
emucxg
Profile Blog Joined May 2007
Finland4559 Posts
November 07 2011 15:38 GMT
#1847
I have a problem here...

How to generate a subsets by using recursion?

for example
Input: 3

output should be
1
2
3
1 2
1 3
2 3
1 2 3



this recursive shit really drive me crazy, i usually know how it works, but hard to write my own recursive code, zzzzzzz
tec27
Profile Blog Joined June 2004
United States3702 Posts
November 08 2011 03:27 GMT
#1848
Here's that algorithm in like every language ever: http://rosettacode.org/wiki/Power_Set (Some iterative, some recursive)

I think its important to recognize that the higher sets are produced from combinations of the single elements and the sets before them, IE: [1, 2] is built from [1] with 2 appended, [1, 2, 3] is built from [1, 2] with 3 appended, etc. From that you can see that your base case is having sets with length 1, because obviously the subsets of length 1 in a list are just a list of each element separately.

Really though, I think for that problem its easier/better to write it as a nested loop. If you do it recursively, you end up having to think a lot more about what you're appending to what.
Can you jam with the console cowboys in cyberspace?
EzEnd
Profile Joined March 2011
United States17 Posts
November 08 2011 03:41 GMT
#1849
this is a cool thread its very interesting to me knowing that computer programming is going to be my career maybe starting next year, i wonder what most of you think about the new quantum physics computer there working on which will work with 1 and 0 at the same time.
Bigpet
Profile Joined July 2010
Germany533 Posts
November 08 2011 12:47 GMT
#1850
On November 08 2011 12:41 EzEnd wrote:
this is a cool thread its very interesting to me knowing that computer programming is going to be my career maybe starting next year, i wonder what most of you think about the new quantum physics computer there working on which will work with 1 and 0 at the same time.

Well it's interesting and is a completely different paradigm although most people think that the problems that are solvable in polynomial time with a quantum processor is a superset of the polynomial problems on traditional Von-Neuman machines it's very regrettable that this superset is still suspected to be disjoint with the set of problems that are NP-complete. Until there's substantial proof to the contrary my expectations are pretty low.
I'm NOT the caster with a similar nick
MasterOfChaos
Profile Blog Joined April 2007
Germany2896 Posts
November 08 2011 13:07 GMT
#1851
On November 08 2011 12:41 EzEnd wrote:
this is a cool thread its very interesting to me knowing that computer programming is going to be my career maybe starting next year, i wonder what most of you think about the new quantum physics computer there working on which will work with 1 and 0 at the same time.

Pretty useless beyond a few specialized applications, most of them crypto related.

It breaks RSA and elliptic curve crypto if they ever manage to build a large enough one. A few relatively general problems get a certain theoretical speedup with Grovers's algorithm, but it will take long for that to become a real advantage in practice.

At least it's more useful than quantum crypto, which is utterly useless.
LiquipediaOne eye to kill. Two eyes to live.
NeThZOR
Profile Blog Joined November 2010
South Africa7387 Posts
November 08 2011 15:00 GMT
#1852
Hey guys

I eagerly want to study computer science when I'm at university, therefore I would love to have at least a good foundation of programming knowledge as soon as I graduate from school. But I am at a loss as to what programming language to learn first and wherever I search on the Internet they say it is up to personal preference. I have tried Python and Visual Studio Basic before and would like to know from you guys what you use at present or learned first?
SuperNova - 2015 | SKT1 fan for years | Dear, FlaSh, PartinG, Soulkey, Naniwa
shinarit
Profile Joined May 2010
Hungary900 Posts
November 08 2011 15:14 GMT
#1853
On November 09 2011 00:00 NeThZOR wrote:
Hey guys

I eagerly want to study computer science when I'm at university, therefore I would love to have at least a good foundation of programming knowledge as soon as I graduate from school. But I am at a loss as to what programming language to learn first and wherever I search on the Internet they say it is up to personal preference. I have tried Python and Visual Studio Basic before and would like to know from you guys what you use at present or learned first?


What i use at present: C++ (work, hobby, personal favorite), Python (work, hobby, favorite script language), Perl (work, undying hate), bash (work, neutral).
What i learned first: VB (6.0 i think).

But this is completely irrelevant. When you learn something new, you have to be motivated. To stay motivated, you have to have success. So anything that gives you success is a good choice. Personally i think if you stick with either Python or VB you will get success easily, so either is a good choice. Python is even more user friendly, and has an interactive shell which is a great feature for a first language. Also, there is serious stuff written in and for Python, so its not like its a toy language.
T for BoxeR, Z for IdrA, P because i have no self-respect
NeThZOR
Profile Blog Joined November 2010
South Africa7387 Posts
November 08 2011 15:16 GMT
#1854
On November 09 2011 00:14 shinarit wrote:
Show nested quote +
On November 09 2011 00:00 NeThZOR wrote:
Hey guys

I eagerly want to study computer science when I'm at university, therefore I would love to have at least a good foundation of programming knowledge as soon as I graduate from school. But I am at a loss as to what programming language to learn first and wherever I search on the Internet they say it is up to personal preference. I have tried Python and Visual Studio Basic before and would like to know from you guys what you use at present or learned first?


What i use at present: C++ (work, hobby, personal favorite), Python (work, hobby, favorite script language), Perl (work, undying hate), bash (work, neutral).
What i learned first: VB (6.0 i think).

But this is completely irrelevant. When you learn something new, you have to be motivated. To stay motivated, you have to have success. So anything that gives you success is a good choice. Personally i think if you stick with either Python or VB you will get success easily, so either is a good choice. Python is even more user friendly, and has an interactive shell which is a great feature for a first language. Also, there is serious stuff written in and for Python, so its not like its a toy language.

Thank you very much for your speedy and informative reply.
SuperNova - 2015 | SKT1 fan for years | Dear, FlaSh, PartinG, Soulkey, Naniwa
Bigpet
Profile Joined July 2010
Germany533 Posts
November 08 2011 17:12 GMT
#1855
On November 09 2011 00:00 NeThZOR wrote:
Hey guys

I eagerly want to study computer science when I'm at university, therefore I would love to have at least a good foundation of programming knowledge as soon as I graduate from school. But I am at a loss as to what programming language to learn first and wherever I search on the Internet they say it is up to personal preference. I have tried Python and Visual Studio Basic before and would like to know from you guys what you use at present or learned first?


I find the TIOBE index always interesting http://www.tiobe.com/content/paperinfo/tpci/index.html

You can discuss to death which language puts students in the right mindset but in the end it's more important to get the hang of the main paradigms in programming and from there on it's just syntax differences.

I learned my first few lines in BASIC and jumped to JAVA from there and haven't used it much since shifting to C/C++ and the occasional scripting language like lua and python.

In my opinion Visual Basic is dying a slow death since the shift to .NET made legacy code incompatible and it has few concepts that seem better than the C# equivalent and all VB.NET code can be called from any other CLR language. But there's still sufficient legacy code out there to keep a few generations of developers employed.

Python is currently doing pretty well for itself and a lot of libraries are getting python bindings but I am not really sure about its future. I think the shift to 3.0 isn't as huge a shift as VB6.0 to .NET and most useful/relevant stuff will be ported to 3.0 soon enough but I can't really tell.

If you like Apple for some reason then you can always try objective-c . Also trying the more exotic stuff out there is always nice to make you think about alternative ways of solving problems.
I'm NOT the caster with a similar nick
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
Last Edited: 2011-11-08 17:24:17
November 08 2011 17:21 GMT
#1856
On November 09 2011 00:00 NeThZOR wrote:
Hey guys

I eagerly want to study computer science when I'm at university, therefore I would love to have at least a good foundation of programming knowledge as soon as I graduate from school. But I am at a loss as to what programming language to learn first and wherever I search on the Internet they say it is up to personal preference. I have tried Python and Visual Studio Basic before and would like to know from you guys what you use at present or learned first?



You will have to learn C/C++ sooner or later so you might aswell do it.
You will also most likely encounter C#/Java. Both of them are easier to start with than C/C++, so start there.

At work I use mostly C/C++ but also objective-c/Java (doing iOS/android stuff), a little C# for windows GUI/webservice stuff,

I'm not sure how much use objective-c is outside iOS programming but atleast compared to android programming, objective-c is freaking awesome when your a fan of C++, I loath when I have to go back and do Java-stuff. That said the only good thing about apple is Xcode and objective-c... at the end of the day I'd probably still go with android for integrity issues, even though their platform simply is inferior (numerous models and producers gives you a headache due to the android-specification is too loosely defined, which for examples causes HTC phones and Samsung phones to be different in some areas which can be pain)
England will fight to the last American
imnotJuss
Profile Joined May 2011
5 Posts
November 08 2011 18:45 GMT
#1857
I've learned C first (ANSI C) and i would advice against starting with higher level languages such as C# or Java, as i found going into those later that my experience in C made it easier for me to learn new abstractions that you'll find in them. As an example, working with pointers, linked lists, data structures and whatnot before getting my hands into simple classes that handled all that for me gave me a much better grasp on their inner workings and more generally in understanding code.
Java and C# are by far easier to get into though, so if you are learning on your own and you don't have much time to invest, they can be a good choice.
Then again, im just a computer science student and although i've worked with java for a year, im just now getting to do some cool stuff.
Craton
Profile Blog Joined December 2009
United States17281 Posts
Last Edited: 2011-11-08 19:26:48
November 08 2011 19:25 GMT
#1858
I think you can get by at the vast majority of entry level positions if you have a good grasp of c++, c#/vb.net and java.

In the jobs I've worked at / applied for, they only wanted one of the above three sets and anything beyond that was a bonus.
twitch.tv/cratonz
dapierow
Profile Blog Joined April 2010
Serbia1316 Posts
November 09 2011 02:05 GMT
#1859
Im having some trouble with array lists and abstract classes in java

im trying to create a method called "add" in my "collection" class for adding an abstract class into an array list, and I have a different class as a test class, the test class will add a subclass of the abstract class but i cannot seem to make the add method work in the "collection" class... I either get an error of cannot use an abstract class or an error of it being pointed to null...
Eat.Sleep.Starcraft 2
SiPa
Profile Joined July 2010
Germany129 Posts
November 09 2011 09:49 GMT
#1860
Hi, ive started using C++ with the libraries OpenSceneGraph and Qt.
If anyone has experience, using one or both of them, and has some spare time, please pm me
also: http://forum.openscenegraph.org/viewtopic.php?t=9356&start=0&postdays=0&postorder=asc&highlight=
(my underlying problem)

Thanks for all the answers in advance.
Prev 1 91 92 93 94 95 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 48m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 493
ProTech137
UpATreeSC 136
elazer 87
StarCraft: Brood War
Britney 18050
Calm 3196
BeSt 304
Rush 174
Dewaltoss 115
firebathero 93
Terrorterran 17
ajuk12(nOOB) 11
Dota 2
Pyrionflax185
monkeys_forever49
Counter-Strike
pashabiceps2936
fl0m2266
Super Smash Bros
Mew2King79
Heroes of the Storm
Liquid`Hasu404
Other Games
Grubby3006
FrodaN870
B2W.Neo493
shahzam240
mouzStarbuck233
C9.Mang0219
Sick184
Trikslyr163
NightEnD9
Organizations
Other Games
BasetradeTV313
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• StrangeGG 77
• Shameless 38
• Reevou 1
• IndyKCrew
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• 80smullet 18
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota2710
• WagamamaTV671
Other Games
• imaqtpie1167
• Shiphtur198
Upcoming Events
Replay Cast
3h 48m
The PondCast
13h 48m
KCM Race Survival
13h 48m
WardiTV Map Contest Tou…
14h 48m
Gerald vs herO
Clem vs Cure
ByuN vs Solar
Rogue vs MaxPax
ShoWTimE vs TBD
OSC
18h 48m
CranKy Ducklings
1d 3h
Escore
1d 13h
RSL Revival
1d 20h
Replay Cast
2 days
WardiTV Map Contest Tou…
2 days
[ Show More ]
Universe Titan Cup
2 days
Rogue vs Percival
Ladder Legends
2 days
uThermal 2v2 Circuit
2 days
BSL
2 days
Sparkling Tuna Cup
3 days
WardiTV Map Contest Tou…
3 days
Ladder Legends
3 days
BSL
3 days
Replay Cast
4 days
Replay Cast
4 days
Wardi Open
4 days
Afreeca Starleague
4 days
Soma vs hero
Monday Night Weeklies
4 days
Replay Cast
5 days
Afreeca Starleague
5 days
Leta vs YSC
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-04-20
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
Proleague 2026-04-22
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
IEM Kraków 2026

Upcoming

Escore Tournament S2: W4
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.