• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:42
CEST 21:42
KST 04:42
  • 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
BGE Stara Zagora 2025: Info & Preview25Code S RO12 Preview: GuMiho, Bunny, SHIN, ByuN3The Memories We Share - Facing the Final(?) GSL46Code S RO12 Preview: Cure, Zoun, Solar, Creator4[ASL19] Finals Preview: Daunting Task30
Community News
[BSL20] ProLeague: Bracket Stage & Dates7GSL Ro4 and Finals moved to Sunday June 15th12Weekly Cups (May 27-June 1): ByuN goes back-to-back0EWC 2025 Regional Qualifier Results26Code S RO12 Results + RO8 Groups (2025 Season 2)3
StarCraft 2
General
The SCII GOAT: A statistical Evaluation Magnus Carlsen and Fabi review Clem's chess game. BGE Stara Zagora 2025: Info & Preview Jim claims he and Firefly were involved in match-fixing GSL Ro4 and Finals moved to Sunday June 15th
Tourneys
Bellum Gens Elite: Stara Zagora 2025 Master Swan Open (Global Bronze-Master 2) $5,100+ SEL Season 2 Championship (SC: Evo) SOOPer7s Showmatches 2025 Cheeseadelphia 2025 - Open Bracket LAN!
Strategy
[G] Darkgrid Layout Simple Questions Simple Answers [G] PvT Cheese: 13 Gate Proxy Robo
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 476 Charnel House Mutation # 475 Hard Target Mutation # 474 Futile Resistance Mutation # 473 Cold is the Void
Brood War
General
Will foreigners ever be able to challenge Koreans? BGH auto balance -> http://bghmmr.eu/ BW General Discussion I made an ASL quiz [BSL20] ProLeague: Bracket Stage & Dates
Tourneys
[ASL19] Grand Finals [Megathread] Daily Proleagues [BSL20] ProLeague Bracket Stage - Day 2 [BSL20] ProLeague Bracket Stage - Day 1
Strategy
I am doing this better than progamers do. [G] How to get started on ladder as a new Z player
Other Games
General Games
What do you want from future RTS games? Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread Mechabellum
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
LiquidLegends to reintegrate into TL.net
Heroes of the Storm
Heroes of the Storm 2.0 Simple Questions, Simple Answers
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Vape Nation Thread European Politico-economics QA Mega-thread
Fan Clubs
Maru Fan Club Serral Fan Club
Media & Entertainment
Korean Music Discussion [Manga] One Piece
Sports
2024 - 2025 Football Thread Formula 1 Discussion NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Cleaning My Mechanical Keyboard
TL Community
The Automated Ban List
Blogs
Cognitive styles x game perf…
TrAiDoS
StarCraft improvement
iopq
Heero Yuy & the Tax…
KrillinFromwales
I was completely wrong ab…
jameswatts
Need Your Help/Advice
Glider
Trip to the Zoo
micronesia
Poker
Nebuchad
Customize Sidebar...

Website Feedback

Closed Threads



Active: 8282 users

Mathematica

Blogs > kineSiS-
Post a Reply
kineSiS-
Profile Blog Joined September 2009
Korea (South)1068 Posts
Last Edited: 2011-07-06 04:40:02
July 05 2011 20:37 GMT
#1
This is a blog that will not pose a question and perhaps will not receive irrelevant and replies that juxtapose me with mediocrity and arrogance. Furthermore, I don't use thesaurus's in TL Blog posts as there is really no need to embellish my writing with use of such extravagant words. After all, it would be simply bombastic. But I admit, my rage in it was as much my fault as the last and I was banned for using, per say, ad hominem attacks against another TL user.





Anyways...

I'm not certain if anyone here has heard of Mathematica, but it is simply a great program.

Stephen Wolfram, founder of Wolfram Research, created Mathematica, a program who's purpose knows no bounds. For a link to this program, please look here:

http://www.wolfram.com/mathematica/

I have recently spent many hours attempting to learn the coding of Mathematica through watching lectures and by creating code for assignments online. Who knew that programming, even as basic as Mathematica, could be so difficult.

At this point, I'm not really sure what the purpose of this blog is, I fear that it is merely to write about useless things and elaborate on them by adding useless details.

I guess I open this blog for people to discuss, if they have heard about Mathematica, and what are their thoughts about it. ^_^

If you want to see something cool, import this line of code into your program!

The code is inside the spoiler and kudos to the person who realizes what this is a reference too, the code that is. Hint: Some of the assigned variable names allude to it.

Also there will be a warning when inputting it into Mathematica, disregard it.

+ Show Spoiler +

http://e.isabio.com/SR100/GameOfLifeStartData.png

Download that then input it's location in the Import line code by Ctrl + C once you click the image in your HDD or wherever it is.

life = Import["C:\\Users\\Alex\\Desktop\\GameOfLifeStartData.png",
"Data"];

Dimensions[life];

boardLength = Dimensions[life][[1]];
boardWidth = Dimensions[life][[2]];

lifeBoardOld = Table["", {i, 1, boardLength}, {j, 1, boardWidth}];

lifeBoardNew = lifeBoardOld;


For[i = 1, i <= boardLength, i++,
tempLength = Length[life[[i]]];
lifeBoardOld[[i, 1 ;; tempLength]] = life[[i]];
For[j = tempLength + 1, j <= boardWidth, j++,
lifeBoardOld[[i, j]] = 1;
]
]

For[i = 2, i <= boardLength - 1, i++,
For[j = 2, j <= boardWidth - 1, j++,

neighbor = 0;

If[lifeBoardOld[[i - 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j + 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i, j + 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j + 1]] == 0, neighbor++, Null];

lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];
]
]
i = 1
For[j = 2, j <= boardWidth - 1, j++,

neighbor = 0;

If[lifeBoardOld[[i, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i, j + 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j + 1]] == 0, neighbor++, Null];

lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];
]

i = boardLength
For[j = 2, j <= boardWidth - 1, j++,

neighbor = 0;
If[lifeBoardOld[[i - 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j + 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i, j + 1]] == 0, neighbor++, Null];

lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];
]


j = 1
For[i = 2, i <= boardLength - 1, i++,


neighbor = 0;

If[lifeBoardOld[[i - 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j + 1]] == 0, neighbor++, Null];

If[lifeBoardOld[[i, j + 1]] == 0, neighbor++, Null];

If[lifeBoardOld[[i + 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j + 1]] == 0, neighbor++, Null];

lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];
]

j = boardWidth
For[i = 2, i <= boardLength - 1, i++,


neighbor = 0;
If[lifeBoardOld[[i - 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j]] == 0, neighbor++, Null];

If[lifeBoardOld[[i, j - 1]] == 0, neighbor++, Null];

If[lifeBoardOld[[i + 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j]] == 0, neighbor++, Null];


lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];
]


(* top left *)
neighbor = 0;
i = 1; j = 1;

If[lifeBoardOld[[i, j + 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j + 1]] == 0, neighbor++, Null];

lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];


(* top right *)
neighbor = 0;
i = 1; j = boardWidth;




If[lifeBoardOld[[i, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i + 1, j]] == 0, neighbor++, Null];


lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];


(* bottom left *)
neighbor = 0;
i = boardLength; j = 1;



If[lifeBoardOld[[i - 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j + 1]] == 0, neighbor++, Null];

If[lifeBoardOld[[i, j + 1]] == 0, neighbor++, Null];


lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];

(* bottom right *)
neighbor = 0;
i = boardLength; j = boardWidth;

If[lifeBoardOld[[i - 1, j - 1]] == 0, neighbor++, Null];
If[lifeBoardOld[[i - 1, j]] == 0, neighbor++, Null];
If[lifeBoardOld[[i, j - 1]] == 0, neighbor++, Null];



lifeBoardNew[[i, j]] = 1;
If[neighbor == 3, lifeBoardNew[[i, j]] = 0, Null];
If[neighbor == 2, lifeBoardNew[[i, j]] = lifeBoardOld[[i, j]], Null];
If[neighbor == 1, lifeBoardNew[[i, j]] == 1, Null];
If[neighbor > 3, lifeBoardNew[[i, j]] = 1, Null];

lifeBoardOld = lifeBoardNew;

ArrayPlot[lifeBoardOld, ColorRules -> {1 -> White, 0 -> Black}]



On July 06 2011 06:31 ninjafetus wrote:
I think the code is for Conway's Game of Life.


Congratulations!!


*
neobowman
Profile Blog Joined March 2008
Canada3324 Posts
July 05 2011 20:41 GMT
#2
So.... What does it do?
Trezeguet
Profile Blog Joined January 2009
United States2656 Posts
July 05 2011 20:47 GMT
#3
Checkers?
Horuku
Profile Blog Joined August 2010
United States405 Posts
July 05 2011 20:58 GMT
#4
Meh, MatLAB > Mathematica as far as academic and calculation purposes are concerned.
d<^^>b
Z3kk
Profile Blog Joined December 2009
4099 Posts
Last Edited: 2011-07-05 21:02:10
July 05 2011 20:59 GMT
#5
http://www.wolfram.com/mathematica/features/

Are some of its features, I guess.

Also, it's "per se", not "per say", and I think you may have misused the phrase.
Failure is not falling down over and over again. Failure is refusing to get back up.
MasterOfChaos
Profile Blog Joined April 2007
Germany2896 Posts
Last Edited: 2011-07-05 21:07:10
July 05 2011 21:06 GMT
#6
The computer algebra parts of mathematica are pretty awesome. On the other hand I'm not too fond of its programming language.

On July 06 2011 05:58 Horuku wrote:
Meh, MatLAB > Mathematica as far as academic and calculation purposes are concerned.

Is that a useful comparison? Mathematica is primarily a computer algebra system, matlab a numerics program.
LiquipediaOne eye to kill. Two eyes to live.
xarthaz
Profile Blog Joined August 2010
1704 Posts
July 05 2011 21:06 GMT
#7
Matlab is the one more commonly used for scripting, isnt it. Mathematica being more for symbolic math - the hardcore theoretical scientists, not the practical guys.
Aah thats the stuff..
n.DieJokes
Profile Blog Joined November 2008
United States3443 Posts
July 05 2011 21:24 GMT
#8
So what are its advantages over maple? Or are they not directly comparable?
MyLove + Your Love= Supa Love
ninjafetus
Profile Joined December 2008
United States231 Posts
July 05 2011 21:31 GMT
#9
I think the code is for Conway's Game of Life.
susySquark
Profile Blog Joined May 2010
United States1692 Posts
Last Edited: 2011-07-05 21:37:23
July 05 2011 21:33 GMT
#10
On July 06 2011 05:58 Horuku wrote:
Meh, MatLAB > Mathematica as far as academic and calculation purposes are concerned.


Not even close. If you work at all with theory in any of the hard sciences (math, physics, chemistry), Mathematica is indispensable for handling symbolic math.

edit: I see I've been beaten to the punch XD

Can your matlab do this?

[image loading]
billyX333
Profile Blog Joined January 2008
United States1360 Posts
July 05 2011 22:14 GMT
#11
I really enjoy mathematica. I have absolutely no idea why people hate on it and constantly insist that MatLab>Mathematica. They are two completely different programs used for different purposes. Both are used very frequently by academics.

Anyways, what is your current level of mathematics? You can take mathematica based courses on vector calculus, ODE or linear algebra through the UIUC net math program. College credits and everything. You take exams with a proctor and any school that accepts UIUC credits will accept these credits.

I thoroughly understood vector calculus before taking their course (I already went through an entire textbook, took many practice final exams and never lost a point), but I was still challenged by some problems in their course. Obviously, since you're using a computer, you can do very complex, multi stepped word problems that would never be asked in an ordinary vector calc class because it would be impossible or take many hours to solve by hand.
Servius_Fulvius
Profile Joined August 2009
United States947 Posts
Last Edited: 2011-07-06 01:24:14
July 06 2011 01:18 GMT
#12
On July 06 2011 06:33 susySquark wrote:
Show nested quote +
On July 06 2011 05:58 Horuku wrote:
Meh, MatLAB > Mathematica as far as academic and calculation purposes are concerned.


Not even close. If you work at all with theory in any of the hard sciences (math, physics, chemistry), Mathematica is indispensable for handling symbolic math.

edit: I see I've been beaten to the punch XD

Can your matlab do this?

[image loading]


Oh! Oh! Maple Can!

[image loading]

It looks a bit different, though. And I wouldn't be able to evaluate the Whitaker Matrix without the help of Maple's numeric solver (which is nowhere close to Mathcads). Still, if it wasn't for Maple I'd be using Mathematica...

Edit: (ok, so the solution was cut off, but you get the point!)
susySquark
Profile Blog Joined May 2010
United States1692 Posts
July 06 2011 02:00 GMT
#13
On July 06 2011 10:18 Servius_Fulvius wrote:
Show nested quote +
On July 06 2011 06:33 susySquark wrote:
On July 06 2011 05:58 Horuku wrote:
Meh, MatLAB > Mathematica as far as academic and calculation purposes are concerned.


Not even close. If you work at all with theory in any of the hard sciences (math, physics, chemistry), Mathematica is indispensable for handling symbolic math.

edit: I see I've been beaten to the punch XD

Can your matlab do this?

[image loading]


Oh! Oh! Maple Can!

[image loading]

It looks a bit different, though. And I wouldn't be able to evaluate the Whitaker Matrix without the help of Maple's numeric solver (which is nowhere close to Mathcads). Still, if it wasn't for Maple I'd be using Mathematica...

Edit: (ok, so the solution was cut off, but you get the point!)


Heh yeah maple works too. I learned everything on mathematica though so thats what I'll stick to. The Laguerre / hypergeometric functions are just as inscrutable as Whittaker, but Laguerre shows up all the time in quantum solutions which is why I picked the example that I did. Anyways, matcad can suck it :D
SpiritoftheTunA
Profile Blog Joined August 2006
United States20903 Posts
July 06 2011 02:21 GMT
#14
my high school required mathematica for any math precalc or above

best requirement ever

<3
posting on liquid sites in current year
JodoYodo
Profile Blog Joined May 2009
Canada1772 Posts
July 06 2011 03:30 GMT
#15
MATLAB is WAY more practical in terms of actual academic use for crunching data, running simulations, and getting results, i.e. practical lab work.
Dance dance dance 'till we run this town!
Servius_Fulvius
Profile Joined August 2009
United States947 Posts
Last Edited: 2011-07-06 04:15:56
July 06 2011 04:01 GMT
#16
On July 06 2011 11:00 susySquark wrote:
Show nested quote +
On July 06 2011 10:18 Servius_Fulvius wrote:
On July 06 2011 06:33 susySquark wrote:
On July 06 2011 05:58 Horuku wrote:
Meh, MatLAB > Mathematica as far as academic and calculation purposes are concerned.


Not even close. If you work at all with theory in any of the hard sciences (math, physics, chemistry), Mathematica is indispensable for handling symbolic math.

edit: I see I've been beaten to the punch XD

Can your matlab do this?

[image loading]


Oh! Oh! Maple Can!

[image loading]

It looks a bit different, though. And I wouldn't be able to evaluate the Whitaker Matrix without the help of Maple's numeric solver (which is nowhere close to Mathcads). Still, if it wasn't for Maple I'd be using Mathematica...

Edit: (ok, so the solution was cut off, but you get the point!)


Heh yeah maple works too. I learned everything on mathematica though so thats what I'll stick to. The Laguerre / hypergeometric functions are just as inscrutable as Whittaker, but Laguerre shows up all the time in quantum solutions which is why I picked the example that I did. Anyways, matcad can suck it :D


Same for me, only in reverse. I never would have survived first year engineering grad school without it!

And I typo'd - matlab has the way better numerical solver than maple (not mathcad, though it has its own merits). I'm doing experimental research, so I don't need anything stronger than excel (for now).

I will give matlab credit - the process design group uses it A LOT. There are two other computational modeling groups - one writes their own code, the next takes Comsol code and modifies it. Comsol is very sexy, btw!

On July 06 2011 12:30 JodoYodo wrote:
MATLAB is WAY more practical in terms of actual academic use for crunching data, running simulations, and getting results, i.e. practical lab work.


Practical lab work? Not the examples you provided. Yes, it is a great tool for number crunching and simulations, but none of that is lab work. In fact my adviser calls them "canned engineering programs" fit for people that are too dangerous in a lab (yeah, he's not a pleasant guy sometimes...). The only ways I can see the two connect is if you're using matlab to run statistics on the results or numerically integrating the governing equations to match your results (which isn't as common as you'd think).

However, the tool is very powerful when validating/creating theory. At that point it's up the user which interface they prefer. Matlab makes differential algebraic equations very easy to solve if you understand the coding. Then again, you can create your own dae solver using vba in excel. I've also seen it done in mathcad. Or just make your own system in hopes to market it to a particular industry (a group at my school is coding microfluidics to create a software marketed to the oil industry).
kineSiS-
Profile Blog Joined September 2009
Korea (South)1068 Posts
Last Edited: 2011-07-06 04:41:54
July 06 2011 04:38 GMT
#17
um.... I'm so confused. TT_TT

Anyways, I'm so happy that I was able to foster a safe debate that contained 0 flaming.

@NeoBowman and Trezeguet, Basically it is a not so simple program that utilizes code with mathematics and yes. That is basically it, but it can many practical things such as solve function, animate functions, create 3D animated objects, and much more!
kineSiS-
Profile Blog Joined September 2009
Korea (South)1068 Posts
Last Edited: 2011-07-06 04:39:36
July 06 2011 04:39 GMT
#18
-Accident Deleted, Sorry-
]343[
Profile Blog Joined May 2008
United States10328 Posts
July 06 2011 05:32 GMT
#19
I used mathematica this past year for my research. It was... ok, I guess... numerical experiments are kind of annoying though T.T

though mathematica/wolfram alpha were integral to doing my quantum homework....
Writer
MoonBear
Profile Blog Joined November 2010
Straight outta Johto18973 Posts
July 06 2011 15:51 GMT
#20
On July 06 2011 10:18 Servius_Fulvius wrote:
Oh! Oh! Maple Can!

[image loading]

It looks a bit different, though. And I wouldn't be able to evaluate the Whitaker Matrix without the help of Maple's numeric solver (which is nowhere close to Mathcads). Still, if it wasn't for Maple I'd be using Mathematica...

Edit: (ok, so the solution was cut off, but you get the point!)

Maple! Hehe, I remember using that. Good times. I'd probably be using Mathematica if my professor didn't give all his workings in Maple.

This argument about different programs shouldn't matter too much though as all their features are pretty derivative.
ModeratorA dream. Do you have one that has cursed you like that? Or maybe... a wish?
Please log in or register to reply.
Live Events Refresh
BSL: ProLeague
18:00
Bracket Stage: Day 1
StRyKeR vs MadiNho
Cross vs UltrA
TT1 vs JDConan
Bonyth vs Sziky
ZZZero.O246
Liquipedia
CSO Contender
17:00
#42
CSOeSports12
Liquipedia
PSISTORM Gaming Misc
16:00
FSL Team Leag season 9 opener!
Liquipedia
Fire Grow Cup
16:00
#10 - Group Stage
CranKy Ducklings83
MindelVK46
Liquipedia
Bellum Gens Elite
10:00
Stara Zagora 2025 Day 4
Clem vs SerralLIVE!
Bellum Gens Elite6330
ComeBackTV 2943
TaKeTV 1154
IndyStarCraft 683
3DClanTV 370
CosmosSc2 298
Rex212
EnkiAlexander 172
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Bellum Gens Elite6330
IndyStarCraft 683
Hui .635
CosmosSc2 298
Rex 212
ProTech72
MindelVK 46
StarCraft: Brood War
Britney 20467
ZZZero.O 246
Dewaltoss 74
soO 26
Rock 19
Terrorterran 17
Dota 2
Gorgc9041
LuMiX1
League of Legends
Grubby2497
Dendi1177
Counter-Strike
fl0m6728
olofmeister2549
rGuardiaN91
Super Smash Bros
C9.Mang04539
Mew2King58
Chillindude27
Heroes of the Storm
Liquid`Hasu469
Khaldor237
Other Games
tarik_tv35319
gofns13803
summit1g5226
FrodaN3203
B2W.Neo633
Pyrionflax104
KnowMe57
QueenE43
Organizations
Dota 2
PGL Dota 2 - Secondary Stream4180
Other Games
gamesdonequick575
BasetradeTV82
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Adnapsc2 10
• LaughNgamezSOOP
• AfreecaTV YouTube
• sooper7s
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21205
• Ler101
League of Legends
• Shiphtur511
Other Games
• imaqtpie1324
Upcoming Events
Replay Cast
4h 18m
SOOP Global
7h 18m
Creator vs Rogue
Cure vs Classic
SOOP
13h 18m
Classic vs GuMiho
Sparkling Tuna Cup
14h 18m
AllThingsProtoss
15h 18m
Fire Grow Cup
19h 18m
BSL: ProLeague
22h 18m
HBO vs Doodle
spx vs Tech
DragOn vs Hawk
Dewalt vs TerrOr
Replay Cast
1d 4h
Replay Cast
2 days
Replay Cast
2 days
[ Show More ]
WardiTV Invitational
2 days
WardiTV Invitational
2 days
GSL Code S
3 days
Rogue vs GuMiho
Maru vs Solar
Replay Cast
4 days
GSL Code S
4 days
herO vs TBD
Classic vs TBD
The PondCast
4 days
Replay Cast
5 days
GSL Code S
5 days
WardiTV Invitational
5 days
Korean StarCraft League
6 days
CranKy Ducklings
6 days
WardiTV Invitational
6 days
Cheesadelphia
6 days
Liquipedia Results

Completed

CSL Season 17: Qualifier 1
DreamHack Dallas 2025
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
BSL Season 20
KCM Race Survival 2025 Season 2
NPSL S3
Rose Open S1
CSL Season 17: Qualifier 2
2025 GSL S2
BGE Stara Zagora 2025
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
ECL Season 49: Europe
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025
YaLLa Compass Qatar 2025
PGL Bucharest 2025
BLAST Open Spring 2025

Upcoming

CSL 17: 2025 SUMMER
Copa Latinoamericana 4
CSLPRO Last Chance 2025
CSLPRO Chat StarLAN 3
K-Championship
SEL Season 2 Championship
Esports World Cup 2025
HSC XXVII
Championship of Russia 2025
Murky Cup #2
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
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.