• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 20:05
CEST 02:05
KST 09:05
  • 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
Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7Code S Season 2 (2026) - RO8 Preview7[ASL21] Finals Preview: Two Legacies21
Community News
Weekly Cups (June 8-14): Clem and Solar double, PTR tested0RSL: S6 Finals played at BlizzCon 202611Douyu Cup 2026: $20,000 Legends Event (June 26-28)10[BSL22] Non-Korean Championship from 13 to 28 June4Weekly Cups (May 25-31): Clem doubles, 2v2 circuit heads toward finale0
StarCraft 2
General
Daily SC2 Player Grid - feedback wanted StarCraft II 5.0.16 PTR Patch Notes may 26th TL Poll: How do you feel about the 5.0.16 PTR balance changes? Code S Season 2 (2026) - RO8 Preview Updates to The Core/Core Lite for v5.0.16?
Tourneys
Master Swan Open (Global Bronze-Master 2) GSL CK #4 20-21th June Crank Gathers Season 4: BW vs SC2 Team League Douyu Cup 2026: $20,000 Legends Event (June 26-28) Maestros of The Game 2 announcement and schedule !
Strategy
[G] Having the right mentality to improve
Custom Maps
Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
Mutation # 530 One For All The PondCast: SC2 News & Results Mutation # 529 Opportunities Unleashed Mutation # 528 Infection Detected
Brood War
General
BW General Discussion vespene.gg — BW replays in browser Where is EffOrt? BGH Auto Balance -> http://bghmmr.eu/ Quality of life changes in BW that you will like ?
Tourneys
[Megathread] Daily Proleagues [ASL21] Grand Finals [BSL22] Grand Finals - Sunday 21:00 CEST Escore Tournament StarCraft Season 2
Strategy
Simple Questions, Simple Answers Relatively freeroll strategies Creating a full chart of Zerg builds Why doesn't anyone use restoration?
Other Games
General Games
Stormgate/Frost Giant Megathread ZeroSpace Megathread Nintendo Switch Thread Beyond All Reason Total War: Warhammer 40K
Dota 2
Looking for a Dota Mentor 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
TL Mafia
Vanilla Mini Mafia
Community
General
US Politics Mega-thread The Games Industry And ATVI UK Politics Mega-thread Russo-Ukrainian War Thread [H]Internet/Gaming Cafe Tips and Tricks
Fan Clubs
The HerO Fan Club! The herO Fan Club!
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion [Manga] One Piece
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion Cricket [SPORT] NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
Does Workplace Frustration D…
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
Why RTS gamers make better f…
gosubay
Customize Sidebar...

Website Feedback

Closed Threads



Active: 15734 users

The Big Programming Thread - Page 595

Forum Index > General Forum
Post a Reply
Prev 1 593 594 595 596 597 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.
FFGenerations
Profile Blog Joined April 2011
7088 Posts
February 26 2015 06:54 GMT
#11881
OMFG I DONE IT SORT OF
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
FFGenerations
Profile Blog Joined April 2011
7088 Posts
February 26 2015 07:00 GMT
#11882
On February 26 2015 15:07 Blisse wrote:
the .get(ForecastResponse.class) isn't working, no clue why

just call .get(String.class) and it'll give a string object you can work with instead (unless it fails)


was trying to do something like this and got it to work with your encouragement coz i was giving up LOL

VaadinUI.java

package org.example;

import com.vaadin.annotations.Theme;
import com.vaadin.cdi.CDIUI;
import com.vaadin.data.Property;
import com.vaadin.server.VaadinRequest;
import com.vaadin.ui.NativeSelect;
import com.vaadin.ui.UI;
import javax.inject.Inject;
import org.vaadin.maddon.label.Header;
import org.vaadin.maddon.layouts.MVerticalLayout;


/**
* A simple example how to consume REST apis with JAX-RS and display that in
* a Vaadin UI.
*/
@CDIUI("")
@Theme("valo")
public class VaadinUI extends UI {

@Inject
JsonService service;

@Override
protected void init(VaadinRequest request) {

setContent(new MVerticalLayout(
new Header(service.fetchMovie())));

}
}


JsonService.java

package org.example;

import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import org.example.domain.ForecastResponse;


/**
*/
@ApplicationScoped
public class JsonService {

private Client client;
private WebTarget target;

@PostConstruct
protected void init() {
client = ClientBuilder.newClient();
target = client.target("http://www.omdbapi.com");
//target = client.target("http://cdn.animenewsnetwork.com/encyclopedia/api.xml");
}

public String fetchMovie() {
//return target.queryParam("anime", "4658")
return target.queryParam("i", "uuu")
.request(MediaType.TEXT_HTML) //application_json or text_html or xml
.get(String.class);
}
}


solution to get it to work: just delete fucking everything
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
Manit0u
Profile Blog Joined August 2004
Poland17768 Posts
Last Edited: 2015-02-26 15:47:28
February 26 2015 08:53 GMT
#11883
On February 26 2015 15:17 nunez wrote:
can you really put a comment in the middle of chaining calls or is that just added after for clarity?


Most languages let you put comments in the middle of a chain.


my->long->chain->of->calls;

is equivalent to:

my
//->short
->long
->chain
->of
->calls;

and to:

my->/*short*/long->chain->of->calls;


A tested and working example:


class myClass {
private $x = 0;

public function f1()
{
$this->x += 1;

return $this;
}

public function f2()
{
$this->x += 2;

return $this;
}

public function f3()
{
$this->x += 3;

return $this;
}

public function getX()
{
return $this->x;
}
}

$myClass = new myClass();

$exload = $myClass->f1()->/*f2()*/f3()->getX();

echo $exload;
// returns: 4


Edit: I believe I misunderstood you. Were you asking of where to best put a comment?

Personally, with really long chains I'd put each call on separate line and add a comment after the call if necessary (this way it's clear which call are you commenting on).


my
->long
->chain // this might break, be careful!
->of
->calls;
Time is precious. Waste it wisely.
Manit0u
Profile Blog Joined August 2004
Poland17768 Posts
February 26 2015 11:03 GMT
#11884
Was playing around with Towers of Hanoi algorithms:


class hanoi {
public function move($n, $from, $to) {
if ($n > 0) {
$tmp = 6 - $from - $to;

$this->move($n - 1, $from, $tmp);

echo strval($from) . ' -> ' . strval($to) . ' : ';

$this->move($n - 1, $tmp, $to);
}
}
}

$hanoi = new hanoi;
$hanoi->move(4, 1, 3);


Was fun.
Time is precious. Waste it wisely.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 26 2015 14:17 GMT
#11885
@manit0u
i was not aware that was possible until now!
conspired against by a confederacy of dunces.
Manit0u
Profile Blog Joined August 2004
Poland17768 Posts
Last Edited: 2015-02-26 15:58:04
February 26 2015 15:52 GMT
#11886
On February 26 2015 23:17 nunez wrote:
@manit0u
i was not aware that was possible until now!


Well, the compiler treats comments as blank space, so it doesn't really matter where you put them, as long as you don't obfuscate your own code too much with it.

Or you can use it to add some coolness to your code, something similar to this Pi calculating program:


#define _ -F<00||--F-OO--;
int F=00,OO=00;main(){F_OO();printf("%1.3f\n",4.*-F/OO/OO);}F_OO()
{
_-_-_-_
_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_
_-_-_-_
}

+ Show Spoiler [compilation] +

gcc -traditional-cpp -o r r.c


or this flight simulator:


#include <math.h>
#include <sys/time.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
double L ,o ,P
,_=dt,T,Z,D=1,d,
s[999],E,h= 8,I,
J,K,w[999],M,m,O
,n[999],j=33e-3,i=
1E3,r,t, u,v ,W,S=
74.5,l=221,X=7.26,
a,B,A=32.2,c, F,H;
int N,q, C, y,p,U;
Window z; char f[52]
; GC k; main(){ Display*e=
XOpenDisplay( 0); z=RootWindow(e,0); for (XSetForeground(e,k=XCreateGC (e,z,0,0),BlackPixel(e,0))
; scanf("%lf%lf%lf",y +n,w+y, y+s)+1; y ++); XSelectInput(e,z= XCreateSimpleWindow(e,z,0,0,400,400,
0,0,WhitePixel(e,0) ),KeyPressMask); for(XMapWindow(e,z); ; T=sin(O)){ struct timeval G={ 0,dt*1e6}
; K= cos(j); N=1e4; M+= H*_; Z=D*K; F+=_*P; r=E*K; W=cos( O); m=K*W; H=K*T; O+=D*_*F/ K+d/K*E*_; B=
sin(j); a=B*T*D-E*W; XClearWindow(e,z); t=T*E+ D*B*W; j+=d*_*D-_*F*E; P=W*E*B-T*D; for (o+=(I=D*W+E
*T*B,E*d/K *B+v+B/K*F*D)*_; p<y; ){ T=p[s]+i; E=c-p[w]; D=n[p]-L; K=D*m-B*T-H*E; if(p [n]+w[ p]+p[s
]== 0|K <fabs(W=T*r-I*E +D*P) |fabs(D=t *D+Z *T-a *E)> K)N=1e4; else{ q=W/K *4E2+2e2; C= 2E2+4e2/ K
*D; N-1E4&& XDrawLine(e ,z,k,N ,U,q,C); N=q; U=C; } ++p; } L+=_* (X*t +P*M+m*l); T=X*X+ l*l+M *M;
XDrawString(e,z,k ,20,380,f,17); D=v/l*15; i+=(B *l-M*r -X*Z)*_; for(; XPending(e); u *=CS!=N){
XEvent z; XNextEvent(e ,&z);
++*((N=XLookupKeysym
(&z.xkey,0))-IT?
N-LT? UP-N?& E:&
J:& u: &h); --*(
DN -N? N-DT ?N==
RT?&u: & W:&h:&J
); } m=15*F/l;
c+=(I=M/ l,l*H
+I*M+a*X)*_; H
=A*r+v*X-F*l+(
E=.1+X*4.9/l,t
=T*m/32-I*T/24
)/S; K=F*M+(
h* 1e4/l-(T+
E*5*T*E)/3e2
)/S-X*d-B*A;
a=2.63 /l*d;
X+=( d*l-T/S
*(.19*E +a
*.64+J/1e3
)-M* v +A*
Z)*_; l +=
K *_; W=d;
sprintf(f,
"%5d %3d"
"%7d",p =l
/1.7,(C=9E3+
O*57.3)%0550,(int)i); d+=T*(.45-14/l*
X-a*130-J* .14)*_/125e2+F*_*v; P=(T*(47
*I-m* 52+E*94 *D-t*.38+u*.21*E) /1e2+W*
179*v)/2312; select(p=0,0,0,0,&G); v-=(
W*F-T*(.63*m-I*.086+m*E*19-D*25-.11*u
)/107e2)*_; D=cos(o); E=sin(o); } }

+ Show Spoiler [compilation] +

cc banks.c -o banks -DIT=XK_Page_Up -DDT=XK_Page_Down \
-DUP=XK_Up -DDN=XK_Down -DLT=XK_Left -DRT=XK_Right \
-DCS=XK_Return -Ddt=0.02 -lm -lX11 -L/usr/X11R6/lib
Time is precious. Waste it wisely.
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
Last Edited: 2015-02-26 23:22:49
February 26 2015 23:15 GMT
#11887
fuck this problem....

a loop is to short to be exucted.... wtfX_X

I had this problem when I was doing SDL_AddTImer in my project....

most anoying shit if seen so far like wtf....

http://pastebin.com/6rgmRuHY
http://imgur.com/5CTBjtI,9Hb44E9#1
The harder it becomes, the more you should focus on the basics.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-02-26 23:23:52
February 26 2015 23:22 GMT
#11888
it's a bit unclear to me what you mean by works.

you wrote two infinite loops, that call printf "something" a finite number of times.

my guess is that you are wondering why the example with the smaller number does not show any console output, this is because the printf function is buffering the data. with the bigger number of times it eventually has to flush the data, because it does not have anymore room to buffer.

if you add a newline to the end of your string, it will force a flush, and you will see output in both examples.
conspired against by a confederacy of dunces.
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
February 26 2015 23:24 GMT
#11889
On February 27 2015 08:22 nunez wrote:
it's a bit unclear to me what you mean by works.

you wrote two infinite loops, that call printf "something" a finite number of times.

my guess is that you are wondering why the first example does not show any console output, this is because the printf function is buffering the data. with the bigger number of times it eventually has to flush the data, because it does not have anymore room to buffer.

if you add a newline to the end of your string, it will force a flush, and you will see output in both examples.

aaahhh thank you,

that feels so unintuitive thou lol.
The harder it becomes, the more you should focus on the basics.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 26 2015 23:27 GMT
#11890
it felt so unintuitive, from now on it will be the most natural thing in the world.
conspired against by a confederacy of dunces.
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
February 26 2015 23:36 GMT
#11891
On February 27 2015 08:27 nunez wrote:
it felt so unintuitive, from now on it will be the most natural thing in the world.

haha ye.

anyway any idea how I can make my SDL_AddTimer work? so far the only time I got it to work was to put it in an ifinity loop and then hope it doesn't crash.

+ Show Spoiler +

Uint32 callback( Uint32 interval, void *p){
printf("something");
return 0;
}


int main (){
bool quit= false;
SDL_TimerID timer;
timer = SDL_AddTimer (6000 , callback , NULL);
while(!quit){
//to keep the programm running
}
return 0;
}
The harder it becomes, the more you should focus on the basics.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-02-26 23:57:10
February 26 2015 23:41 GMT
#11892
what do you want to do with it?
here's a small example where the main thread spins on a boolean flag flipped by the callback,
as an alternative to infinite loop.

#include<cstdint>
#include<cstdio>
#include<SDL2/SDL.h>
#include<SDL2/SDL_timer.h>

uint32_t
callback(uint32_t interval,void* done_ptr)
{
printf("library thread: in callback\n");
printf("library thread: casting done_ptr to bool ptr and setting to true\n");
*static_cast<bool*>(done_ptr)=true;
return 0;
}

int
main()
{
if(SDL_Init(SDL_INIT_TIMER)!=0)
return 1;

volatile bool done{false};
uint32_t interval_ms{500};
printf("main thread: adding timer\n");
SDL_TimerID timer_id=SDL_AddTimer(interval_ms,callback,(void*)(&done));
if(timer_id==0)
return 1;

printf("main thread: spinning while not done\n");
while(!done);
printf("main thread: done\n");
}
conspired against by a confederacy of dunces.
Ropid
Profile Joined March 2009
Germany3557 Posts
February 27 2015 00:22 GMT
#11893
Does that example work? Will SDL_AddTimer() start a thread, or are you supposed to call some sort of "get new event" function, and in that polling thingy the timer callback will then be called if necessary, meaning there's no threads at all really?
"My goal is to replace my soul with coffee and become immortal."
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-02-27 01:15:36
February 27 2015 00:57 GMT
#11894
yes.
the callback is run on a separate thread created by the library.
(or that's what the SDL reference implies).

in the example on the sdl site (which i'm assuming you looked at),
the library thread communicates to the main thread by way of
adding an event to the sdl message queue, which the main thread
is blocked waiting for events on.

i used a boolean flag because i figured it was a simpler demonstration.
conspired against by a confederacy of dunces.
Manit0u
Profile Blog Joined August 2004
Poland17768 Posts
February 27 2015 01:12 GMT
#11895
Allow me to share my happiness with you.

Recently I've switched jobs. I've went from creating all sorts of websites to the company that only does SaaS, which was a nice thing in itself (less bullshit, more cool things, all projects done with the same framework instead of flipping through 4 or 5 of them etc.). The thing that made me realize it was a really good move was when on the first day of work I saw the internal server names used by the company:
- gitlab: drone
- jabber: zerg
- testing: templar
etc. etc.

At this point, I knew I'm home.

[image loading]
Time is precious. Waste it wisely.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 27 2015 01:16 GMT
#11896
aha, nice, and likely well deserved.
conspired against by a confederacy of dunces.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2015-02-27 02:16:35
February 27 2015 02:16 GMT
#11897
Woah nvm browser out of date.
Who after all is today speaking about the destruction of the Armenians?
FFGenerations
Profile Blog Joined April 2011
7088 Posts
February 27 2015 02:36 GMT
#11898
On February 27 2015 10:12 Manit0u wrote:
Allow me to share my happiness with you.

Recently I've switched jobs. I've went from creating all sorts of websites to the company that only does SaaS, which was a nice thing in itself (less bullshit, more cool things, all projects done with the same framework instead of flipping through 4 or 5 of them etc.). The thing that made me realize it was a really good move was when on the first day of work I saw the internal server names used by the company:
- gitlab: drone
- jabber: zerg
- testing: templar
etc. etc.

At this point, I knew I'm home.


wow wtf that is godly
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
February 27 2015 08:32 GMT
#11899
how do yall balance working with all the other stuff you wanna do?

i balance it by not sleeping but i feel like there's a better way...
There is no one like you in the universe.
Prillan
Profile Joined August 2011
Sweden350 Posts
February 27 2015 08:34 GMT
#11900
On February 27 2015 17:32 Blisse wrote:
how do yall balance working with all the other stuff you wanna do?

i balance it by not sleeping but i feel like there's a better way...

I'll let you know when I figure it out.
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Prev 1 593 594 595 596 597 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 9h 55m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SpeCial 133
Nina 88
StarCraft: Brood War
GuemChi 2458
Rain 1921
Artosis 551
Sea 460
910 62
Dota 2
monkeys_forever886
League of Legends
Doublelift5059
Super Smash Bros
hungrybox447
Other Games
summit1g9316
Day[9].tv2115
shahzam783
C9.Mang0519
FrodaN406
PiGStarcraft380
ViBE129
Livibee88
Mew2King59
ROOTCatZ54
Maynarde46
Trikslyr46
Organizations
Other Games
gamesdonequick608
BasetradeTV92
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• Hupsaiya 115
• davetesta10
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Other Games
• Day9tv2115
• imaqtpie900
• Shiphtur164
Upcoming Events
The PondCast
9h 55m
WardiTV Spring Champion…
10h 55m
MaxPax vs SHIN
ByuN vs herO
Solar vs Zoun
OSC
12h 55m
OSC
23h 55m
CranKy Ducklings
1d 9h
WardiTV Spring Champion…
1d 10h
Cure vs SKillous
WardiTV Spring Champion…
2 days
GSL
2 days
Maru vs ShoWTimE
Classic vs Reynor
herO vs Lambo
Solar vs Clem
BSL22 NKC (BSL vs China)
2 days
XuanXuan vs Jaystar
Mihu vs Messiah
eOnzErG vs Dewalt
Bonyth vs Jaystar
TerrOr vs Messiah
XuanXuan vs Mihu
eOnzErG vs Jaystar
Replay Cast
2 days
[ Show More ]
WardiTV Spring Champion…
3 days
GSL
3 days
Patches Events
3 days
BSL22 NKC (BSL vs China)
3 days
Dewalt vs Messiah
Bonyth vs Mihu
TerrOr vs XuanXuan
eOnzErG vs Messiah
Jaystar vs Mihu
Dewalt vs XuanXuan
Bonyth vs TerrOr
Replay Cast
3 days
WardiTV Weekly
4 days
Sparkling Tuna Cup
5 days
Liquipedia Results

Completed

Proleague 2026-06-16
uThermal 2v2 2026 Main Event
Heroes Pulsing #1

Ongoing

IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
CSCL: Masked Kings S4
YSL S3
BSL 22 Non-Korean Championship
SCTL 2026 Spring
Maestros of the Game 2
WardiTV Spring 2026
Murky Cup 2026
Heroes Pulsing #2
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1

Upcoming

CSL 2026 Summer (S21)
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
Douyu Cup 2026
BCC 2026
Heroes Pulsing #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 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.