• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 13:16
CET 19:16
KST 03:16
  • 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
SC: Evo Complete - Ranked Ladder OPEN ALPHA 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"
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 BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions BW General Discussion Where's CardinalAllin/Jukado the mapmaker?
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [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 Should offensive tower rushing be viable in RTS games? Nintendo Switch Thread Path of Exile 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
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread US Politics Mega-thread The Games Industry And ATVI
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: 1398 users

The Big Programming Thread - Page 129

Forum Index > General Forum
Post a Reply
Prev 1 127 128 129 130 131 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
March 18 2012 04:19 GMT
#2561
On March 18 2012 10:07 Manit0u wrote:
Show nested quote +
On March 17 2012 14:29 Millitron wrote:
On March 17 2012 08:53 Manit0u wrote:
On March 17 2012 08:23 Millitron wrote:
On March 17 2012 05:47 MisterD wrote:
it boils down to either making your robot stuff a .dll (or linux equivalent) and using it with a native interface in java, or writing a c++ standalone host application that gets sent commands via network sockets. The latter is certainly more work, as you have to write a proper network handler in c++ in addition to the java client, but on the other hand allows you to easily write a lot more clients and implement remote-control through lan/wlan/internet.

that google proto stuff that someone linked seems to be just a marshalling format, i suppose this would help in the socket approach as you can just create java and c++ stucts for your data objects which both use the same marshalling format, so you can easily flatten data into a network stream and reconstruct it at the other end. So if you go this way, that might be helpful. for direct method invocation through native interfaces, it's probably rather irrelevant.

/edit: java can start other programs, have a look at http://docs.oracle.com/javase/7/docs/api/java/lang/Runtime.html

I'm looking into the Runtime API, and I'm wondering, can the output stream of the runtime object act as the console for the C++ program? So instead of dealing with native interfaces or networking, I could just have the C++ program read the instructions from the console? I'm thinking that from the C++ program's point of view, a console is a console, it doesn't really care what fills in the prompts on the console, does it?


Wouldn't it be possible to just re-write the touch screen GUI in C++? Having 2 different languages operating the same robot seems like a bitch to maintain and more trouble than actual help.

The biggest advantage for us using Java for the GUI is that we can test it on any computer, not just the robot. We could write the GUI in C++ I suppose, but to be able to test it on a normal PC, it would have to be completely separate from the robot's code anyways. Because of the file structure and operating system on the robot, it is pretty difficult to install stuff to it. If it was written directly into the robot's code, it would have to be compiled and re-installed every time we made a change, which would be a huge pain. So this means we pretty much need two programs anyways, 1 for the GUI, one for the robot's motion. And if we already need two programs, we may as well have the GUI in Java, so when I graduate, other students at my school can easily pick up where I left off, since Java is taught freshman year.


Well, if you have stuff in C++ in the robot OS, I hardly see a problem. Especially that GUI like wxWidgets (which I'm just getting into) is platform-independent and pretty damn neat.

http://www.wxwidgets.org/

From the 'about':

Show nested quote +

wxWidgets is a C++ library that lets developers create applications for Windows, OS X, Linux and UNIX on 32-bit and 64-bit architectures as well as several mobile platforms including Windows Mobile, iPhone SDK and embedded GTK+. It has popular language bindings for Python, Perl, Ruby and many other languages. Unlike other cross-platform toolkits, wxWidgets gives its applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI. It's also extensive, free, open-source and mature.

This solves the problem of needing to recompile on the robot for every single test version, but then we still have the problem that C++ is not something that everyone at my school learns. I myself know enough to do it, but I'm only going to be there another year. So we're trying to have as much as possible written in Java, since everyone in CS here knows that.
Who called in the fleet?
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2012-03-19 03:08:46
March 19 2012 03:05 GMT
#2562
Hey guys, I've been meaning to post this up for a while I just kept forgetting. A few years ago when I was in university I did this for one of my programming subjects.

While I know a lot more now than I used to and would change a lot, I'm hoping it would be a lot of help to people new to OOP. I called it an academic journal, but its more of a personal journal for academia.

PDF
http://www.netgore.com/sites/default/files/ObjectOrientedProgramming.pdf

Thread
http://www.netgore.com/forums/post/object-oriented-programming.html

I haven't made any revisions since as I will be creating a blog instead in the future of what I now know, I figure it would be much more useful that way.

Let me know what you guys think. I will appreciate any views on my piece, and will try my hardest not to let my ego get in the way, it was years ago so hopefully I can remain completely objective because I no longer have any real attachment to this document and there is a lot of stuff I would change now.

Note that it says for Netgore only, don't worry about that. I just simply can't be bothered finding it, re-uploading it and instead just send this to everyone.

This is also not just a plug to Netgore, although please do check it out if you do use C#. Spodi would probably appreciate any support he can get.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
Last Edited: 2012-03-20 20:32:33
March 20 2012 20:29 GMT
#2563
EDIT: Sorry for the bump, nvm, I'm an idiot.
"windows bash is a steaming heap of shit" tofucake
scaban84
Profile Joined August 2010
United States1080 Posts
March 23 2012 18:38 GMT
#2564
I am almost done with Sam's Teach Yourself Visual Basic in 24 hours and I need to learn Visual C++ .NET.
I liked the format of the 24 hours series but they don't seem to offer any recent VC++ .Net books.
Does anyone have a recommendation?
"The curious task of economics is to demonstrate to men how little they really know about what they imagine they can design." — Friedrich von Hayek
tofucake
Profile Blog Joined October 2009
Hyrule19151 Posts
March 24 2012 07:04 GMT
#2565
burn Sam's Teach Yourself Visual Basic in 24 hours
Liquipediaasante sana squash banana
Kentor *
Profile Blog Joined December 2007
United States5784 Posts
Last Edited: 2012-03-24 07:52:42
March 24 2012 07:52 GMT
#2566
Metaprogramming Ruby. That book is so good. You gotta read it to bring your ruby skills to a new level.
scaban84
Profile Joined August 2010
United States1080 Posts
March 25 2012 01:26 GMT
#2567
On March 24 2012 16:04 tofucake wrote:
burn Sam's Teach Yourself Visual Basic in 24 hours

Why the hate bro?
"The curious task of economics is to demonstrate to men how little they really know about what they imagine they can design." — Friedrich von Hayek
Millitron
Profile Blog Joined August 2010
United States2611 Posts
March 26 2012 00:20 GMT
#2568
On March 25 2012 10:26 scaban84 wrote:
Show nested quote +
On March 24 2012 16:04 tofucake wrote:
burn Sam's Teach Yourself Visual Basic in 24 hours

Why the hate bro?

probably because the idea that you could learn an entire language well enough to use in only 24 hours is ridiculous.

That, or he meant that you should burn it to a CD :D
Who called in the fleet?
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2012-03-26 06:11:39
March 26 2012 05:05 GMT
#2569
On March 26 2012 09:20 Millitron wrote:
Show nested quote +
On March 25 2012 10:26 scaban84 wrote:
On March 24 2012 16:04 tofucake wrote:
burn Sam's Teach Yourself Visual Basic in 24 hours

Why the hate bro?

probably because the idea that you could learn an entire language well enough to use in only 24 hours is ridiculous.

That, or he meant that you should burn it to a CD :D


I lol'd

tbh I started learning programming with VB6 when i was 9 till about 16.

In that time period I might have learned about 1% of what I know about programming today, and I'm 22.


On March 24 2012 16:52 Kentor wrote:
Metaprogramming Ruby. That book is so good. You gotta read it to bring your ruby skills to a new level.


I do a lot of meta programming in Ruby but I never bothered with the book. I'm interested now.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
tzenes
Profile Blog Joined March 2010
Canada64 Posts
March 26 2012 06:29 GMT
#2570
On March 26 2012 09:20 Millitron wrote:
Show nested quote +
On March 25 2012 10:26 scaban84 wrote:
On March 24 2012 16:04 tofucake wrote:
burn Sam's Teach Yourself Visual Basic in 24 hours

Why the hate bro?

probably because the idea that you could learn an entire language well enough to use in only 24 hours is ridiculous.

That, or he meant that you should burn it to a CD :D

Doesn't that sort of depend on the audience?

After you learn half a dozen languages, learning new languages starts to become easy. You start looking for the familiar things: how do you loop, how do you branch, how do you create function points, etc. The only thing you really need to "learn" are the quirks of the language; such as pipelining in ruby, or prototypical inheritance in js, or monads in haskell
qoiN
Profile Joined March 2010
Sweden576 Posts
March 26 2012 09:30 GMT
#2571
I'm looking for suggestions in how to do this as user-friendly as possible:

Basically it's about customer and product registration. There's well above 1k customers and about 500 different products. Everything has been imported and setup in MySQL already so that bit is done. Now the thing is that when they get a new order (they basically only trade with other companies) so the registration is done manually. Now, when they want to register an order for a customer they have to go through a list with over 1k different names and ids, and for the product tied to that customer and order over 500 different names and ids. That just seems very annoying. So I'm looking for suggestions in how to approach this and make it more user-friendly.

Some ideas:
- Using a huge listbox with say 50 rows will clutter up the screen a lot. (especially considering I need two of them if so --)
- Just letting them enter the customer ID and product ID to fetch the required information and having the list on paper -- I like that one because it makes the job easy for me but on the other hand whenever they need to add a new customer or product to the database they will have to print out a new list...
- Using AJAX to make some kind of neat live search function with suggestions, which seems to be the best approach out of them all, but I'm really new to programming and this seems to be the hardest way.

The purpose of this "site" is to produce invoices.

I use PHP/HTML/JS/MySQL etcblaetc to program everything.


supereddie
Profile Joined March 2011
Netherlands151 Posts
March 26 2012 17:41 GMT
#2572
Depends on how many orders you have If you have say 1 per day, you can do with option 2. But for user friendliness I'd go for option 3, even though it is more difficult for you.
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2012-03-27 01:02:04
March 27 2012 01:00 GMT
#2573
On March 26 2012 18:30 qoiN wrote:
I'm looking for suggestions in how to do this as user-friendly as possible:

Basically it's about customer and product registration. There's well above 1k customers and about 500 different products. Everything has been imported and setup in MySQL already so that bit is done. Now the thing is that when they get a new order (they basically only trade with other companies) so the registration is done manually. Now, when they want to register an order for a customer they have to go through a list with over 1k different names and ids, and for the product tied to that customer and order over 500 different names and ids. That just seems very annoying. So I'm looking for suggestions in how to approach this and make it more user-friendly.

Some ideas:
- Using a huge listbox with say 50 rows will clutter up the screen a lot. (especially considering I need two of them if so --)
- Just letting them enter the customer ID and product ID to fetch the required information and having the list on paper -- I like that one because it makes the job easy for me but on the other hand whenever they need to add a new customer or product to the database they will have to print out a new list...
- Using AJAX to make some kind of neat live search function with suggestions, which seems to be the best approach out of them all, but I'm really new to programming and this seems to be the hardest way.

The purpose of this "site" is to produce invoices.

I use PHP/HTML/JS/MySQL etcblaetc to program everything.




I vote a combination of 2 and 3 just because if you run out of time you can still deliver, where as if you go down the route of 3 first and you run out of time you might be left with nothing.

Figure out how it would ultimately work in 3, the look the feel. Then, add one extra piece, the search button. Make it show the results as you want. Now, if you get done with it and still have time left, all you have to do is add in the JS to make the rest of it work.

Edit: I know your ultimate goal is user friendliness, but I guess I've been in the work world too long. Always want to have something to deliver.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
March 27 2012 01:27 GMT
#2574
Hey guys, I'm a pretty noob cs guy (2nd year of B.S) but I was wondering what you guys thought of this list of what every cs major should know. It pretty comprehensive and something I'd like to refer to from time to time as a kind of checkoff list of things to learn.
RIP GOMTV. RIP PROLEAGUE.
berated-
Profile Blog Joined February 2007
United States1134 Posts
March 27 2012 01:57 GMT
#2575
On March 27 2012 10:27 teamamerica wrote:
Hey guys, I'm a pretty noob cs guy (2nd year of B.S) but I was wondering what you guys thought of this list of what every cs major should know. It pretty comprehensive and something I'd like to refer to from time to time as a kind of checkoff list of things to learn.


If you know all of those things I doubt there is a company in the world that wouldn't hire you. We ask the people we are trying to hire to have about 1/4 of those requirements and still can't find them.

I personally think the list is much, much shorter but a little more all ecompassing. These are in no particular order after the first one.

* Work in an area that you are passionate about. The more you care about what you are doing, the more involved you will be and invested in your projects. Caring can take you very far in your career. If you like web, go web. If you want to be a game programmer, then do that. I don't think I can stress this one enough. It doesn't matter if you are the smartest guy in the world, if you don't give a shit about what you do you aren't going to be as effective as you could be.

* Learn how to communicate! I don't know if its all the typical nerdy stereotypes, but if you can talk to customers and gather requirements that is a huge plus.

* Figure out how to pay attention to detail. The small things matter in programming. The better you are at noticing difference that other people do not see immediately, the quicker you will be able to solve a lot of problems. I can't tell you the number of bugs that I've fixed in production systems that were there because of capitalization errors in typing.

* Figure out how you learn and then do everything you can to put yourself in a position where you can use those techniques. Learning quickly is important, especially if you are in an environment where things change often.


ThatGuy
Profile Blog Joined April 2008
Canada695 Posts
March 27 2012 05:52 GMT
#2576
Hallo guys, algorithm question!

Let's say I have a list of 2-dimensional points (such as [(0,0),(0,1),(1,0),...]) in any random order. What I want to accomplish is to sort the points by pairs, based on the proximity of 2 points in the list, in ascending order. If the list has an odd number of elements, that means the last element will have no leftover pairs to pair up with. You may assume that there are no negative numbers taken into account.

So for example, a list containing (0,0),(3,3),(1,1),(3,2) will sort itself into (3,2),(3,3),(0,0),(1,1).

I currently have a really really ugly and inefficient solution so if there's a way to cut this down to <=O(n^2) efficiency that would be good. 1:30AM is not the most productive time to be coming up with stuff like this lol.

The context of this algorithm is that I am implementing bounding volume hierarchies and I'm trying to construct it dynamically by generating a balanced binary tree.
qoiN
Profile Joined March 2010
Sweden576 Posts
March 27 2012 08:12 GMT
#2577
On March 27 2012 10:00 berated- wrote:
Show nested quote +
On March 26 2012 18:30 qoiN wrote:
I'm looking for suggestions in how to do this as user-friendly as possible:

Basically it's about customer and product registration. There's well above 1k customers and about 500 different products. Everything has been imported and setup in MySQL already so that bit is done. Now the thing is that when they get a new order (they basically only trade with other companies) so the registration is done manually. Now, when they want to register an order for a customer they have to go through a list with over 1k different names and ids, and for the product tied to that customer and order over 500 different names and ids. That just seems very annoying. So I'm looking for suggestions in how to approach this and make it more user-friendly.

Some ideas:
- Using a huge listbox with say 50 rows will clutter up the screen a lot. (especially considering I need two of them if so --)
- Just letting them enter the customer ID and product ID to fetch the required information and having the list on paper -- I like that one because it makes the job easy for me but on the other hand whenever they need to add a new customer or product to the database they will have to print out a new list...
- Using AJAX to make some kind of neat live search function with suggestions, which seems to be the best approach out of them all, but I'm really new to programming and this seems to be the hardest way.

The purpose of this "site" is to produce invoices.

I use PHP/HTML/JS/MySQL etcblaetc to program everything.




I vote a combination of 2 and 3 just because if you run out of time you can still deliver, where as if you go down the route of 3 first and you run out of time you might be left with nothing.

Figure out how it would ultimately work in 3, the look the feel. Then, add one extra piece, the search button. Make it show the results as you want. Now, if you get done with it and still have time left, all you have to do is add in the JS to make the rest of it work.

Edit: I know your ultimate goal is user friendliness, but I guess I've been in the work world too long. Always want to have something to deliver.


Good points. I agree with you both! I'll just go for option 2 right now and educate them thoroughly in how to do everything. See how it works out.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
Last Edited: 2012-03-27 08:40:11
March 27 2012 08:34 GMT
#2578
On March 27 2012 14:52 ThatGuy wrote:
Hallo guys, algorithm question!

Let's say I have a list of 2-dimensional points (such as [(0,0),(0,1),(1,0),...]) in any random order. What I want to accomplish is to sort the points by pairs, based on the proximity of 2 points in the list, in ascending order. If the list has an odd number of elements, that means the last element will have no leftover pairs to pair up with. You may assume that there are no negative numbers taken into account.

So for example, a list containing (0,0),(3,3),(1,1),(3,2) will sort itself into (3,2),(3,3),(0,0),(1,1).

I currently have a really really ugly and inefficient solution so if there's a way to cut this down to <=O(n^2) efficiency that would be good. 1:30AM is not the most productive time to be coming up with stuff like this lol.

The context of this algorithm is that I am implementing bounding volume hierarchies and I'm trying to construct it dynamically by generating a balanced binary tree.

i don't think you can solve this exactly in O(n^2) or less. The solution you need sounds like computing all distances pairwise O(n^2) (so getting any lower is impossible anyways i think) and then running something like this: http://www.cs.ucl.ac.uk/staff/V.Kolmogorov/papers/BLOSSOM5.html (a variation of edmons algorithm (maximal matchings)) for finding cost minimal maximal matchings. What you are looking for is called a cost minimal near perfect matching i believe (near perfect matchings are maximal). juding from having a quick look at the paper, it runs in about O(n^3 * m)

the one thing you've got going for you is that your graph is fully connected though. So maybe there is room for improvement. But even the Hungarian algorithm, which finds a cost minimal perfect matching on a fully connected bipartite graph, runs in O(n^3). and you can't offer a bipartite graph, so you probably will have to live with something slower.
Gold isn't everything in life... you need wood, too!
ThatGuy
Profile Blog Joined April 2008
Canada695 Posts
Last Edited: 2012-03-27 16:05:09
March 27 2012 16:00 GMT
#2579
Yeah the solution I currently came up with is O(n/2 * n^2), but I usually don't deal with stuff that goes beyond O(n^2), so I wasn't sure if I was being stupid. Thanks for the reply. On the plus side, once it's constructed I don't really have to deal with it again lol.

EDIT: Actually it looks a bit less than that, since it keep looping through a smaller list on every iteration...w/e.
Kentor *
Profile Blog Joined December 2007
United States5784 Posts
March 27 2012 17:58 GMT
#2580
On March 27 2012 14:52 ThatGuy wrote:
Hallo guys, algorithm question!

Let's say I have a list of 2-dimensional points (such as [(0,0),(0,1),(1,0),...]) in any random order. What I want to accomplish is to sort the points by pairs, based on the proximity of 2 points in the list, in ascending order. If the list has an odd number of elements, that means the last element will have no leftover pairs to pair up with. You may assume that there are no negative numbers taken into account.

So for example, a list containing (0,0),(3,3),(1,1),(3,2) will sort itself into (3,2),(3,3),(0,0),(1,1).

I currently have a really really ugly and inefficient solution so if there's a way to cut this down to <=O(n^2) efficiency that would be good. 1:30AM is not the most productive time to be coming up with stuff like this lol.

The context of this algorithm is that I am implementing bounding volume hierarchies and I'm trying to construct it dynamically by generating a balanced binary tree.

I'm not sure if this applies but take a look at quad trees or cell lists.
Prev 1 127 128 129 130 131 1032 Next
Please log in or register to reply.
Live Events Refresh
Wardi Open
12:00
#60
WardiTV2250
IndyStarCraft 235
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
IndyStarCraft 235
UpATreeSC 87
StarCraft: Brood War
Rain 3549
Horang2 1587
Shuttle 779
firebathero 160
scan(afreeca) 52
sSak 37
Mong 30
Aegong 22
JulyZerg 17
ivOry 6
[ Show more ]
SilentControl 5
Dota 2
Gorgc5362
qojqva3580
420jenkins277
BananaSlamJamma178
XcaliburYe153
League of Legends
rGuardiaN20
Counter-Strike
fl0m572
byalli525
Other Games
FrodaN1033
Beastyqt715
ceh9567
KnowMe280
Lowko263
Sick257
Hui .188
Mew2King150
Liquid`VortiX147
ArmadaUGS79
QueenE48
Trikslyr46
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• kabyraGe 105
• Reevou 1
• IndyKCrew
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• Kozan
StarCraft: Brood War
• Michael_bg 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV218
League of Legends
• Nemesis3571
• TFBlade957
• imaqtpie471
Other Games
• Shiphtur284
Upcoming Events
Replay Cast
4h 44m
WardiTV Korean Royale
17h 44m
OSC
22h 44m
Replay Cast
1d 4h
Replay Cast
1d 14h
Kung Fu Cup
1d 17h
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
Kung Fu Cup
2 days
[ Show More ]
WardiTV Korean Royale
2 days
PiGosaur Monday
3 days
RSL Revival
3 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
3 days
CranKy Ducklings
4 days
RSL Revival
4 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
4 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
5 days
WardiTV Korean Royale
5 days
BSL 21
6 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
Wardi Open
6 days
Monday Night Weeklies
6 days
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.