• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 16:18
CET 22:18
KST 06:18
  • 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
RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation12Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
Mech is the composition that needs teleportation t RotterdaM "Serral is the GOAT, and it's not close" RSL Season 3 - RO16 Groups C & D Preview [TLMC] Fall/Winter 2025 Ladder Map Rotation TL.net Map Contest #21: Winners
Tourneys
RSL Revival: Season 3 Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Master Swan Open (Global Bronze-Master 2)
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 What happened to TvZ on Retro? SnOw's ASL S20 Finals Review BW General Discussion Brood War web app to calculate unit interactions
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET
Strategy
PvZ map balance Current Meta Simple Questions, Simple Answers How to stay on top of macro?
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread Clair Obscur - Expedition 33 Beyond All Reason
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
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread US Politics Mega-thread Artificial Intelligence Thread Canadian Politics Mega-thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread 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
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2175 users

The Big Programming Thread - Page 683

Forum Index > General Forum
Post a Reply
Prev 1 681 682 683 684 685 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.
berated-
Profile Blog Joined February 2007
United States1134 Posts
November 27 2015 12:06 GMT
#13641
On November 27 2015 18:27 Manit0u wrote:
This way you really link only a single file somewhere in your layout and don't have to worry about it since all the assets will be compiled into them. You just have to run npm install after deployment. During development you might need to run gulp manually each time your js/css changes unless you have an IDE in which you can set up file watchers to do it for you automatically in the background upon file save (jetbrains products have such a feature).


Gulp also has a watch task that you can setup to run your tasks for you after each change.

On November 27 2015 02:48 mantequilla wrote:
N00B to javascript world here. Are these analogous?

npm install ~ mvn install
package.json ~ pom.xml
grunt ~ mvn compile
gulp ~ ???
bower ~ ???


Yes, the first two are pretty equivalent. Unlike maven though package.json (maybe luckily) has less functionality so if you want to do some other tasks during your build step (like Manit0u is pointing out) you also need more tools -- that's where Grunt and Gulp come in. If you ever did ant for java back in the day they are quite similar. So, I think grunt is a bit more complex than just a mvn compile.

Bower is another dependency manager like npm. It still feels a bit weird to me as to why you would want to play with even more dependency manager and build tools just complicating your build set but I think this stack overflow does a decent job explaining the difference..
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
November 27 2015 12:55 GMT
#13642
Thanks guys Until now I maintained old JSF projects, but from now on company wants to use js+html5 frontends.
Age of Mythology forever!
Manit0u
Profile Blog Joined August 2004
Poland17433 Posts
Last Edited: 2015-11-27 17:14:09
November 27 2015 17:10 GMT
#13643
Glad we could help. Just to clarify, here's how the npm + bower + gulp process looks like:

npm install -> checks if bower and gulp are installed, if not, it downloads and installs them along with additional plugins (gulp-sass, gulp-uglify etc.). Then it proceeds to execute following commands...
bower install -> resolves and downloads all of your external asset dependencies (jquery, bootstrap etc.). When that's done npm fires off
gulp -> performs magic on your own assets, combines them with external assets provided by bower and the dumps them in desired location

In short: npm ( bower ( external assets ), gulp ( local assets, external assets ) );

Just a note of warning, make sure you add all folders where compiled assets go to .gitignore immediately or else you'll have to deal with nightmare commits all the time.
Time is precious. Waste it wisely.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
November 27 2015 17:19 GMT
#13644
Thanks for the help ropid, manitou and nesserev!

It worked! I overrode my ubuntu install with a new install and after that it automatically booted into ubuntu boat loader where i could select windows and ubuntu. Everything going great.

Then I downloaded the 20 something different HP drivers for w7, installed all that crap great great.

Suddenly in many different applications (firefox, steam) text stopped showing up and apps started behaving weird in general probably some system file corrupted how the fuck did that happen.

Did a system restore to a little before, windows says some update was incorrectly installed, and it fixed the mistakes. All done all done and now when I boot it up the keyboard and mouse don't respond



That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2015-11-27 19:16:40
November 27 2015 17:55 GMT
#13645
Are your mouse and keyboard in USB3 ports? Your drivers for them probably got erased so the ports don't work anymore. Didn't realize it was a laptop.
I'll always be your shadow and veil your eyes from states of ain soph aur.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
November 27 2015 19:03 GMT
#13646
Do mouse and keyboard on a laptop use usb ports internally?

I dont know but ive given up anyways. Im just gonna buy a separate hard drive to install ubuntu on. Ive had enough of this clusterfuck
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Manit0u
Profile Blog Joined August 2004
Poland17433 Posts
November 27 2015 20:13 GMT
#13647
Are you sure that those 20 something HP drivers you installed were up-to-date and not conflicting with each other? Seems like a point where things started going bad for you.
Time is precious. Waste it wisely.
Faust852
Profile Joined February 2012
Luxembourg4004 Posts
Last Edited: 2015-11-27 21:42:34
November 27 2015 21:35 GMT
#13648
Java issue here;
I have to check each adjacent cell in a board, the issue is (I guess, I haven't tried yet) the outofindexbound error I'll get if I do that.
ex :

(0,0),(0,1),(0,2),(0,3),(0,4)
(1,0),(1,1),(1,2),(1,3),(1,4)
(2,2),(2,1),(2,2),(2,3),(2,4)
(3,0),(3,1),(3,2),(3,3),(3,4)
(4,0),(4,1),(4,2),(4,3),(4,4)


If i'm in cell (2,2), and check all the adjacent ones (1,1),(1,2),(1,3),(2,1),(2,3),(3,1),(3,2),(3,3) there is no issue;
but if i'm in cell (0,0), I'll have a shitload of error with (-1,-1),(-1,0), etc...

So, do I need to testcase each situation (annoying considering 8x8 array),
Or can I just do :

try {
checkAdjacentsCells();
}
catch (ArrayIndexOutOfBoundsException e) {
//do nothing
}


Edit: answered it to myself, I think the best way is doing a inGridCheck method and applying it in an if statement alongside each check, so it can discard it without ignoring error and it's not that gruesome to do I think.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
November 27 2015 22:02 GMT
#13649
You certainly shouldn't use exceptions for these things. Using an if check is much cleaner and also a lot faster. Also don't call your method "inGridCheck". Use a name like "isInGrid", which makes it clear what the result means. Generally methods that end on "check" seem to be named really badly. At least that was the case for every single one I saw so far.

What you could do if you want to be clever: Add an extra ring of cells around the board with neutral values. Only iterate over the inner part, but don't make any special cases for the outer ring. Might not work for you, if there's no good neutral values for your problem.
If you have a good reason to disagree with the above, please tell me. Thank you.
Faust852
Profile Joined February 2012
Luxembourg4004 Posts
November 27 2015 22:07 GMT
#13650
On November 28 2015 07:02 spinesheath wrote:
You certainly shouldn't use exceptions for these things. Using an if check is much cleaner and also a lot faster. Also don't call your method "inGridCheck". Use a name like "isInGrid", which makes it clear what the result means. Generally methods that end on "check" seem to be named really badly. At least that was the case for every single one I saw so far.

What you could do if you want to be clever: Add an extra ring of cells around the board with neutral values. Only iterate over the inner part, but don't make any special cases for the outer ring. Might not work for you, if there's no good neutral values for your problem.


Yup, don't know why I was thinking this name, when I always start my method name with "is" when it's a boolean one.

The extra ring of cells might be more of an hassle than anything though. I'm doing a Othello game and the view will be a pain in the ass if I have to remove ignore 2 rows and 2 columns, and for the other check I'll have to do too.
I also plan on adding a "value" on each cell for a potential IA so yeah, neutral value would be annoying to play with I think.

But thank you for your response !
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-11-27 23:37:30
November 27 2015 22:36 GMT
#13651
Any opinions on qt vs WPF performance? I really wanted to do pure C++ application just for practice but I really dislike how qt uses heap for no good reason. Note that I don't have a 'real' need for C++ UI other than extra performance and personal experience but I know C#/WPF better.

Edit: i guess C#/C++ is always an option.
Manit0u
Profile Blog Joined August 2004
Poland17433 Posts
Last Edited: 2015-11-27 23:58:03
November 27 2015 23:54 GMT
#13652
If you want performance I guess you could check out the Corona SDK:

https://coronalabs.com/

It's cross-platform app build tool that uses C and Lua. They have some tools to do advanced graphics (including physics and even mixing it up with html so you can have web pages with physics). I wanted to have a look at it myself when I have some free time.

Their API looks pretty good:

https://docs.coronalabs.com/api/index.html
Time is precious. Waste it wisely.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
November 28 2015 00:21 GMT
#13653
On November 28 2015 05:13 Manit0u wrote:
Are you sure that those 20 something HP drivers you installed were up-to-date and not conflicting with each other? Seems like a point where things started going bad for you.

Its hard to say for sure since HP offers no information on these things beyond a vague name. Then again when I booted my machine it first went into uefi then into ubuntu then into windows so it probably wasnt all that stable to begin with.
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-11-28 00:52:12
November 28 2015 00:51 GMT
#13654
On November 28 2015 08:54 Manit0u wrote:
If you want performance I guess you could check out the Corona SDK:

https://coronalabs.com/

It's cross-platform app build tool that uses C and Lua. They have some tools to do advanced graphics (including physics and even mixing it up with html so you can have web pages with physics). I wanted to have a look at it myself when I have some free time.

Their API looks pretty good:

https://docs.coronalabs.com/api/index.html


When you say C, do you actually mean C++? If it's C, then I'd rather not use it unless Windows API forces me.
Also Wikipedia suggests it's used for mobile development but I should have said desktop instead.
Manit0u
Profile Blog Joined August 2004
Poland17433 Posts
November 28 2015 02:12 GMT
#13655
On November 28 2015 09:51 darkness wrote:
Show nested quote +
On November 28 2015 08:54 Manit0u wrote:
If you want performance I guess you could check out the Corona SDK:

https://coronalabs.com/

It's cross-platform app build tool that uses C and Lua. They have some tools to do advanced graphics (including physics and even mixing it up with html so you can have web pages with physics). I wanted to have a look at it myself when I have some free time.

Their API looks pretty good:

https://docs.coronalabs.com/api/index.html


When you say C, do you actually mean C++? If it's C, then I'd rather not use it unless Windows API forces me.
Also Wikipedia suggests it's used for mobile development but I should have said desktop instead.


No, I mean ANSI C

But you're not really writing anything in C there I believe. It's what the framework runs on and you only do Lua scripting for it, which is pretty nice.
Time is precious. Waste it wisely.
hooktits
Profile Blog Joined February 2008
United States972 Posts
November 28 2015 02:35 GMT
#13656
Hi i have a question, i'm by far NO expert, but i'm self taught in html, css, php, javascript and mysql. I have never finished a website but started alot and i don't do this for a living just in my free time. So i would say im a beginner still and i only understand procedural code not OOP(this little project doesn't require oop any ways its a very small site i'm just trying to experiment with). I'm working on a little project and i'm trying to allow people to encrypt msgs with pgp encryption(hopefully you know what that is) if your familiar with it. For now i'm just working on my computer running windows 7 and i'm using xampp to test my stuff.

So as far as i understand i need to download something and i think update something in the php.ini file but i'm confused because i haven't played around with php.ini nor have i added a php extension yet and i can't figure out how to do this. So i wanna be able to use these functions http://php.net/manual/en/book.gnupg.php . I downloaded something from here version 1.3.6 http://pecl.php.net/package/gnupg but i have no clue how to install this if i am even on the right track.

Basicly i wanna be able to use the functions for now though i'm just trying to allow users to upload their public key to a database and then have an area to send messages and give the user an option to encrypt it, so if they are msging someone and if they have a valid public key in the database then there will be a checkbox or something that will automaticly encrypt the regular text. if the check box is checked then when the text is sent it is auto encrypted. (It appears to be fairly simple if you understand pgp encryption) which again i'm no expert but i know how to encrypt and decrypt text.

Fairly simple but again i have never worked with this before so was wondering if someone could provide some help thanks
Hooktits of Tits gaming @hooktits twit
Manit0u
Profile Blog Joined August 2004
Poland17433 Posts
Last Edited: 2015-11-28 03:25:58
November 28 2015 03:10 GMT
#13657
On November 28 2015 11:35 hooktits wrote:
my computer running windows 7 and i'm using xampp to test my stuff.


I'm afraid you're out of luck on this one:

https://www.gnupg.org/download/supported_systems.en.html

Edit:
Outdated info. But it will still be hard.

Some things people tried:
http://stackoverflow.com/questions/3103845/gnupg-on-wampserver
http://stackoverflow.com/questions/5073126/how-to-gpg-encrypt-via-php-on-a-windows-platform-under-a-webserver
http://stackoverflow.com/questions/16600708/how-do-you-encrypt-and-decrypt-a-php-string

You might also want to check this thing out:
http://lists.wald.intevation.org/pipermail/gpg4win-announce/2015-November/000067.html
Time is precious. Waste it wisely.
hooktits
Profile Blog Joined February 2008
United States972 Posts
November 28 2015 05:05 GMT
#13658
On November 28 2015 12:10 Manit0u wrote:
Show nested quote +
On November 28 2015 11:35 hooktits wrote:
my computer running windows 7 and i'm using xampp to test my stuff.


I'm afraid you're out of luck on this one:

https://www.gnupg.org/download/supported_systems.en.html

Edit:
Outdated info. But it will still be hard.

Some things people tried:
http://stackoverflow.com/questions/3103845/gnupg-on-wampserver
http://stackoverflow.com/questions/5073126/how-to-gpg-encrypt-via-php-on-a-windows-platform-under-a-webserver
http://stackoverflow.com/questions/16600708/how-do-you-encrypt-and-decrypt-a-php-string

You might also want to check this thing out:
http://lists.wald.intevation.org/pipermail/gpg4win-announce/2015-November/000067.html


thanks so much for the reply manit0u, i have been reading some of the stuff you posted for a little while now and it appears the big problem is the whole windows 7 and wamp server. If i do finish this little project its not going to stay on a wamp server.

Sorry to sound like such a newb but i am one, but what if i had a spare computer(which i do) and i installed linux (which i have never worked with keep in mind) and set it up as a server to test on. I'm sure i could find a guide on how to do the stuff i stated above. Then this would be alot easier maybe? i see on here http://php.net/manual/en/gnupg.installation.php if your scroll down a hair it has instuctions for ubuntu 12.04 that seem pretty simple although steps 3 and 4 dont' make much sense but perhaps they will if i had a shitty little linux based test server.

And again if i ever finish the little project i would imagine it would be running on some kind of linux based servers, as far as i understand most servers are linux based, so i would have to change everything anyway to get the extension to work on there, rather then trying to use it on my windows, wamp test server stuff.

Would my above logic solve this problem assuming i'm able to figure out how to do it??
Hooktits of Tits gaming @hooktits twit
berated-
Profile Blog Joined February 2007
United States1134 Posts
November 28 2015 10:45 GMT
#13659
On November 28 2015 14:05 hooktits wrote:
Show nested quote +
On November 28 2015 12:10 Manit0u wrote:
On November 28 2015 11:35 hooktits wrote:
my computer running windows 7 and i'm using xampp to test my stuff.


I'm afraid you're out of luck on this one:

https://www.gnupg.org/download/supported_systems.en.html

Edit:
Outdated info. But it will still be hard.

Some things people tried:
http://stackoverflow.com/questions/3103845/gnupg-on-wampserver
http://stackoverflow.com/questions/5073126/how-to-gpg-encrypt-via-php-on-a-windows-platform-under-a-webserver
http://stackoverflow.com/questions/16600708/how-do-you-encrypt-and-decrypt-a-php-string

You might also want to check this thing out:
http://lists.wald.intevation.org/pipermail/gpg4win-announce/2015-November/000067.html


thanks so much for the reply manit0u, i have been reading some of the stuff you posted for a little while now and it appears the big problem is the whole windows 7 and wamp server. If i do finish this little project its not going to stay on a wamp server.

Sorry to sound like such a newb but i am one, but what if i had a spare computer(which i do) and i installed linux (which i have never worked with keep in mind) and set it up as a server to test on. I'm sure i could find a guide on how to do the stuff i stated above. Then this would be alot easier maybe? i see on here http://php.net/manual/en/gnupg.installation.php if your scroll down a hair it has instuctions for ubuntu 12.04 that seem pretty simple although steps 3 and 4 dont' make much sense but perhaps they will if i had a shitty little linux based test server.

And again if i ever finish the little project i would imagine it would be running on some kind of linux based servers, as far as i understand most servers are linux based, so i would have to change everything anyway to get the extension to work on there, rather then trying to use it on my windows, wamp test server stuff.

Would my above logic solve this problem assuming i'm able to figure out how to do it??


Not that setting up linux on a spare computer is a bad idea but you could also just install VirtualBox and ubuntu for a quick and dirty trial. It's a lot less of a commitment and if you like it you can progress.
Acrofales
Profile Joined August 2010
Spain18117 Posts
Last Edited: 2015-11-28 11:05:58
November 28 2015 11:01 GMT
#13660
You could also think of AWS. It's free up to a certain amount of storage and bandwidth for at least a year. While you have to install your application, their default lamp config works just fine in most cases.

Here's their howto: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-LAMP.html
Prev 1 681 682 683 684 685 1032 Next
Please log in or register to reply.
Live Events Refresh
The PiG Daily
20:30
Best Games of SC
Serral vs Clem
Solar vs Cure
Serral vs Clem
Reynor vs GuMiho
herO vs Cure
PiGStarcraft187
LiquipediaDiscussion
BSL 21
20:00
ProLeague - RO32 Group C
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
ZZZero.O279
LiquipediaDiscussion
OSC
19:00
Masters Cup #150: Group B
davetesta61
Liquipedia
PSISTORM Gaming Misc
15:55
FSL teamleague CNvsASH, ASHvRR
Freeedom15
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 368
PiGStarcraft187
IndyStarCraft 180
Railgan 117
Nathanias 47
ProTech19
StarCraft: Brood War
Britney 14568
Shuttle 717
ZZZero.O 279
Shine 60
Rock 44
NaDa 39
Dota 2
LuMiX0
Counter-Strike
fl0m881
Other Games
tarik_tv5962
Grubby4241
gofns4040
DeMusliM280
Pyrionflax189
Fuzer 188
mouzStarbuck31
Dewaltoss12
Organizations
Other Games
EGCTV987
gamesdonequick724
StarCraft 2
angryscii 24
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 21 non-featured ]
StarCraft 2
• StrangeGG 46
• printf 35
• Dystopia_ 2
• LaughNgamezSOOP
• AfreecaTV YouTube
• sooper7s
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• 80smullet 11
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 3774
• WagamamaTV493
• Ler72
• lizZardDota230
Other Games
• imaqtpie1475
• Shiphtur263
• tFFMrPink 14
Upcoming Events
Sparkling Tuna Cup
12h 43m
RSL Revival
12h 43m
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
14h 43m
Cure vs herO
Reynor vs TBD
WardiTV Korean Royale
14h 43m
BSL 21
22h 43m
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
22h 43m
Dewalt vs WolFix
eOnzErG vs Bonyth
Replay Cast
1d 1h
Wardi Open
1d 14h
Monday Night Weeklies
1d 19h
WardiTV Korean Royale
2 days
[ Show More ]
BSL: GosuLeague
2 days
The PondCast
3 days
Replay Cast
4 days
RSL Revival
4 days
BSL: GosuLeague
4 days
RSL Revival
5 days
WardiTV Korean Royale
5 days
RSL Revival
6 days
WardiTV Korean Royale
6 days
IPSL
6 days
Julia vs Artosis
JDConan vs DragOn
Liquipedia Results

Completed

Proleague 2025-11-14
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
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
BLAST Rivals Fall 2025
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

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 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...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.