• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 06:19
CET 12:19
KST 20: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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners StarCraft, SC2, HotS, WC3, Returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win
Tourneys
Constellation Cup - Main Event - Stellar Fest Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle BW General Discussion [ASL20] Ask the mapmakers — Drop your questions BGH Auto Balance -> http://bghmmr.eu/ Where's CardinalAllin/Jukado the mapmaker?
Tourneys
[ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 21:00 CET
Strategy
PvZ map balance Current Meta How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Should offensive tower rushing be viable in RTS games? Dawn of War IV
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 SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine The Games Industry And ATVI Russo-Ukrainian War Thread YouTube Thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
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
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1496 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 States17264 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
OSC
09:00
OSC Elite Rising Star #17
CranKy Ducklings118
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Hui .145
Livibee 129
Rex 12
StarCraft: Brood War
Rain 8447
Jaedong 3494
GuemChi 2092
Horang2 1793
Sea 1784
Pusan 545
Stork 329
Mini 288
Larva 270
Hyun 236
[ Show more ]
Zeus 226
Light 118
PianO 116
Backho 91
Killer 89
ZerO 62
ggaemo 56
sSak 55
Barracks 53
Aegong 51
ToSsGirL 50
JulyZerg 47
JYJ42
Sharp 37
soO 33
zelot 16
Sacsri 11
Sea.KH 11
Icarus 10
Noble 10
SilentControl 8
Dota 2
XcaliburYe396
Dendi291
KheZu101
League of Legends
JimRising 369
Reynor96
Counter-Strike
olofmeister1263
shoxiejesuss572
x6flipin309
allub224
zeus104
Other Games
B2W.Neo383
Pyrionflax354
Sick335
crisheroes213
Mew2King112
Fuzer 56
ZerO(Twitch)11
Organizations
StarCraft: Brood War
lovetv 8
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• LUISG 45
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Other Games
• WagamamaTV118
Upcoming Events
Wardi Open
41m
Rex12
Wardi Open
4h 41m
Replay Cast
11h 41m
WardiTV Korean Royale
1d
Replay Cast
1d 11h
Replay Cast
1d 21h
Kung Fu Cup
2 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
2 days
The PondCast
2 days
RSL Revival
2 days
Solar vs Zoun
MaxPax vs Bunny
[ Show More ]
Kung Fu Cup
3 days
WardiTV Korean Royale
3 days
PiGosaur Monday
3 days
RSL Revival
3 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
4 days
CranKy Ducklings
4 days
RSL Revival
4 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
5 days
BSL 21
5 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
5 days
RSL Revival
5 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
6 days
WardiTV Korean Royale
6 days
BSL 21
6 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
IEM Chengdu 2025
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

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 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.