• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:20
CEST 21:20
KST 04:20
  • 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
[ASL19] Finals Recap: Standing Tall10HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Weekly Cups (June 30 - July 6): Classic Doubles2[BSL20] Non-Korean Championship 4x BSL + 4x China9Flash Announces Hiatus From ASL66Weekly Cups (June 23-29): Reynor in world title form?14FEL Cracov 2025 (July 27) - $8000 live event22
StarCraft 2
General
The GOAT ranking of GOAT rankings The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form? Weekly Cups (June 30 - July 6): Classic Doubles Program: SC2 / XSplit / OBS Scene Switcher
Tourneys
RSL: Revival, a new crowdfunded tournament series FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma
Brood War
General
ASL20 Preliminary Maps [ASL19] Finals Recap: Standing Tall SC uni coach streams logging into betting site Flash Announces Hiatus From ASL BW General Discussion
Tourneys
[BSL20] Non-Korean Championship 4x BSL + 4x China [BSL20] Grand Finals - Sunday 20:00 CET CSL Xiamen International Invitational The Casual Games of the Week Thread
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile What do you want from future RTS games? 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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2024! Summer Games Done Quick 2025!
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 715 users

The Big Programming Thread - Page 941

Forum Index > General Forum
Post a Reply
Prev 1 939 940 941 942 943 1031 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.
Manit0u
Profile Blog Joined August 2004
Poland17244 Posts
Last Edited: 2018-01-21 14:23:58
January 21 2018 14:17 GMT
#18801
On January 21 2018 16:34 spinesheath wrote:
Show nested quote +
On January 20 2018 19:25 Manit0u wrote:
On January 19 2018 02:58 travis wrote:
Well I am doing it because I really enjoy the puzzle and I feel like I am learning a lot.

As for functional programming, aren't loops faster?


It depends on what you want to do with your code. With functional programming it's easier to paralellize things. You'll be consuming more peak memory but will be able to traverse graphs asynchronously.

For TSP for example you could either use some form of Scatter-Gather pattern or something like that:

Process starts at node 0.
It goes to next node, stores all the visited nodes in order.
When it finds a branching node it chooses one of the branches at random to proceed and spawns new processes for all the other branches, passing them visited node list up to that point.
Each of the processes then follows this pattern.
When one process reaches the destination you pause it and all other processes compare themselves to it with each visited node.
If a process has more nodes in the list than the process that reached the destination you kill that process (we're no longer interested in this path).
When another process reaches the destination and it has less nodes than the paused process, you pause that one and kill the paused process.
The solution to TSP will be the last process standing.

For most of the processes this won't even be an O(n) problem. And it won't ever be greater than O(n) for any of them.

It's way more efficient than looping because you're checking multiple paths simultaneously. Languages like Erlang and Elixir have really light processes that can communicate with each other even across different machines in the cluster.

This, in my opinion, would be way better than any imperative/synchronous solution you can come up with. But I'm pretty noob at algos and I might be completely wrong. I'm also sure that this could be optimized somehow.

To be fair you can do all the same parallelism using loops and similar constructs. Avoiding race conditions just comes more naturally with many functional languages because of enforced immutability.


It is also harder to do parallel loops that can share data between each other.

The closest comparison would be with how they're tracking bees to solve TSP. A typical worker bee has a set of flowers it visits numerous times during a day. The bee will fly out and randomly go from flower to flower. After 20 or so runs it'll pick the most optimal route (of those 20, not necessarily the most optimal route, just good enough for the bee as it doesn't want to waste any more time on checking other permutations). That's basically heuristics. Now, imagine that instead of one bee doing all those runs you can have thousands or millions of bees working the same set of flowers and comparing notes on the routes all the time.

Such a thing would be easiest to implement in a language like Erlang. Which comes with lightweight processes and inter-process communication built-in (OTP). Doing this in Java using loops would be a nightmare. Even if you'd use functional concepts in Java you'd still need a lot of work.
Time is precious. Waste it wisely.
Hanh
Profile Joined June 2016
146 Posts
January 22 2018 00:32 GMT
#18802
On January 20 2018 19:25 Manit0u wrote:
Show nested quote +
On January 19 2018 02:58 travis wrote:
Well I am doing it because I really enjoy the puzzle and I feel like I am learning a lot.

As for functional programming, aren't loops faster?


It depends on what you want to do with your code. With functional programming it's easier to paralellize things. You'll be consuming more peak memory but will be able to traverse graphs asynchronously.

For TSP for example you could either use some form of Scatter-Gather pattern or something like that:

Process starts at node 0.
It goes to next node, stores all the visited nodes in order.
When it finds a branching node it chooses one of the branches at random to proceed and spawns new processes for all the other branches, passing them visited node list up to that point.
Each of the processes then follows this pattern.
When one process reaches the destination you pause it and all other processes compare themselves to it with each visited node.
If a process has more nodes in the list than the process that reached the destination you kill that process (we're no longer interested in this path).
When another process reaches the destination and it has less nodes than the paused process, you pause that one and kill the paused process.
The solution to TSP will be the last process standing.

For most of the processes this won't even be an O(n) problem. And it won't ever be greater than O(n) for any of them.

It's way more efficient than looping because you're checking multiple paths simultaneously. Languages like Erlang and Elixir have really light processes that can communicate with each other even across different machines in the cluster.

This, in my opinion, would be way better than any imperative/synchronous solution you can come up with. But I'm pretty noob at algos and I might be completely wrong. I'm also sure that this could be optimized somehow.


That's O(n!)... (in the number of processes) No amount of parallelism will save you if you use brute force for TSP.
Manit0u
Profile Blog Joined August 2004
Poland17244 Posts
January 22 2018 01:39 GMT
#18803
On January 22 2018 09:32 Hanh wrote:
Show nested quote +
On January 20 2018 19:25 Manit0u wrote:
On January 19 2018 02:58 travis wrote:
Well I am doing it because I really enjoy the puzzle and I feel like I am learning a lot.

As for functional programming, aren't loops faster?


It depends on what you want to do with your code. With functional programming it's easier to paralellize things. You'll be consuming more peak memory but will be able to traverse graphs asynchronously.

For TSP for example you could either use some form of Scatter-Gather pattern or something like that:

Process starts at node 0.
It goes to next node, stores all the visited nodes in order.
When it finds a branching node it chooses one of the branches at random to proceed and spawns new processes for all the other branches, passing them visited node list up to that point.
Each of the processes then follows this pattern.
When one process reaches the destination you pause it and all other processes compare themselves to it with each visited node.
If a process has more nodes in the list than the process that reached the destination you kill that process (we're no longer interested in this path).
When another process reaches the destination and it has less nodes than the paused process, you pause that one and kill the paused process.
The solution to TSP will be the last process standing.

For most of the processes this won't even be an O(n) problem. And it won't ever be greater than O(n) for any of them.

It's way more efficient than looping because you're checking multiple paths simultaneously. Languages like Erlang and Elixir have really light processes that can communicate with each other even across different machines in the cluster.

This, in my opinion, would be way better than any imperative/synchronous solution you can come up with. But I'm pretty noob at algos and I might be completely wrong. I'm also sure that this could be optimized somehow.


That's O(n!)... (in the number of processes) No amount of parallelism will save you if you use brute force for TSP.


Sure. But right now there's no other way to do it. I still think that parallelism is the way to go right now. It does require more computing power but it's able to produce results much faster (and is easy to scale both horizontally and vertically, which is an added benefit).
Time is precious. Waste it wisely.
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
January 22 2018 04:06 GMT
#18804
On January 21 2018 21:01 sc-darkness wrote:
Show nested quote +
On January 21 2018 12:31 Neshapotamus wrote:
On January 21 2018 06:41 sc-darkness wrote:
Has anyone got Entity Framework and Microsoft SQL Server experience? I've got a task after an interview to цреате an ASP.NET MVC project and another one which will have to provide endpoints (this is the project which will use Entity Framework). One of requirements is that both projects should work when they're on a different host each. I'm not entirely sure what they mean. I can provide a config file to configure host, but it's the weekend and I can't ask for clarification. Has anyone got an idea what they mean? Requirement seems a bit vague to me.


I used to do .NET a lot.

Here is my interpretation.

The first project is an MVC application. (This is the front end application for the web using the MVC framework)

The second project is a Rest service. (This probably also uses a controller to configure rest endpoints)
The second project should use Entity Framework to access data from the database

You can launch(execute) both projects independently. You can think of this as having two "executables" that you can launch from different servers. Since this is a .NET project, it will most likely run in IIS. However, if it is an owin project, then you can launch this in either IIS or as an executable.



If it runs in IIS, do you mean it could be IIS Express and then I can probably hardcode it to a specific port number? E.g. localhost:1234?

Also, I'm still confused about database access. I'm still new to Microsoft SQL Server, and it seems you can use it in many different ways - named pipe, TCP/IP, etc. I don't see how this will work on another machine without specifying credentials or something. Maybe I need to read a bit more about this.


Yes, you can also run it in IIS express, which is the web container for visual studio. You can launch multiple programs in visual studio. You would just bind each web app to a different port as you stated.

Microsoft sql server is just a relational database. In entity framework, you just need to add the connection string to your config file. You can also specify the connection string when you create an instance of the context. Ultimately, it depends on how you will access the database. Will it be username/password or will you use windows auth?
Hanh
Profile Joined June 2016
146 Posts
January 22 2018 06:59 GMT
#18805
On January 22 2018 10:39 Manit0u wrote:
Show nested quote +
On January 22 2018 09:32 Hanh wrote:
That's O(n!)... (in the number of processes) No amount of parallelism will save you if you use brute force for TSP.


Sure. But right now there's no other way to do it. I still think that parallelism is the way to go right now. It does require more computing power but it's able to produce results much faster (and is easy to scale both horizontally and vertically, which is an added benefit).


There is a way to do it in O(2^n) and that is better than O(n!). Ideally, you would parallelize the better algorithm but otherwise, having a good algorithm is much more valuable.
broodmann
Profile Joined December 2011
604 Posts
Last Edited: 2018-01-22 19:38:42
January 22 2018 19:24 GMT
#18806
nvm
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
January 23 2018 15:50 GMT
#18807
On January 18 2018 23:57 Manit0u wrote:
Show nested quote +
On January 18 2018 00:34 ShoCkeyy wrote:
Backend is boring for me, frontend is much more fun, two sides to each story. But I'm also a full stack dev for fun, now architect/strategist/optimizer professionally.


It's all cool and dandy until some asshole comes along and wants you to do one of those "pixel perfect" projects...

Also, JavaScript is bullshit.


That's where you either let go of that "client", or tell them how it is, and hope they relax. I never take on work that I feel uncomfortable with. I've learned that over my years. I've also had assholes threaten to beat me up because they broke the code, they blamed me, and tried to get away with not paying me.

https://creativemornings.com/talks/mike-monteiro--2/1



Also JavaScript is a mess but it's getting a lot better, easier to work with, and it's been allowing a lot of growth in the tech space. Meaning more money for just writing javascript
Life?
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 23 2018 22:38 GMT
#18808
Something I've always struggled with in asp.net MVC.

I have a basic page with a filter and a result set. Change the filter, and the result set will refresh. The result set includes elements which the user might want to update. I want to use ajax so that when either the filter is updated or the results are updated, the results are refreshed accordingly.

Given that nested forms is not supported by HTML, the way I've always done this is to have both the filter and the result set sit in a single large Ajax.BeginForm element with multiple submit buttons identified by name/id. The controller then interprets which submit button was called and calls the appropriate method.

Is there a better way to do this that more simpler? Ideally, the filter should be its own form that sends only the filter data back to the server when it's updated, and the result set should be its own form that sends only the result data back to the server when it's updated. But I'm not sure how to do that and still keep them in sync, e.g. click submit on the filter and the result set is updated. I'm sure you can do it with some kind of javascript event on the filter submit form that also calls a submit on the result set form, but that seems clunky to me.
Manit0u
Profile Blog Joined August 2004
Poland17244 Posts
January 24 2018 01:32 GMT
#18809
On January 24 2018 07:38 enigmaticcam wrote:
Something I've always struggled with in asp.net MVC.

I have a basic page with a filter and a result set. Change the filter, and the result set will refresh. The result set includes elements which the user might want to update. I want to use ajax so that when either the filter is updated or the results are updated, the results are refreshed accordingly.

Given that nested forms is not supported by HTML, the way I've always done this is to have both the filter and the result set sit in a single large Ajax.BeginForm element with multiple submit buttons identified by name/id. The controller then interprets which submit button was called and calls the appropriate method.

Is there a better way to do this that more simpler? Ideally, the filter should be its own form that sends only the filter data back to the server when it's updated, and the result set should be its own form that sends only the result data back to the server when it's updated. But I'm not sure how to do that and still keep them in sync, e.g. click submit on the filter and the result set is updated. I'm sure you can do it with some kind of javascript event on the filter submit form that also calls a submit on the result set form, but that seems clunky to me.


Can you use websockets?
Time is precious. Waste it wisely.
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 24 2018 16:41 GMT
#18810
On January 24 2018 10:32 Manit0u wrote:Can you use websockets?

I've actually never used them before. Is that the route I should go?
IyMoon
Profile Joined April 2016
United States1249 Posts
January 24 2018 16:59 GMT
#18811
If I am forced to learn Angular for my job (it is not a web dev job, but I think they are going to be doing some things with web api calls)

1) Should I hate my life?
2) Where is the best place to start
Something witty
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
Last Edited: 2018-01-24 17:10:48
January 24 2018 17:10 GMT
#18812
On January 25 2018 01:59 IyMoon wrote:
If I am forced to learn Angular for my job (it is not a web dev job, but I think they are going to be doing some things with web api calls)

1) Should I hate my life?
2) Where is the best place to start


First of all, what are you doing with these api calls? Cause if it's big data, python is better for big data. Angular is a full framework, so I don't know why they would force you to learn angular for just api calls.
Life?
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 24 2018 19:05 GMT
#18813
On January 10 2018 01:00 Hanh wrote:
Show nested quote +
On January 09 2018 04:39 WarSame wrote:
On January 09 2018 03:29 Excludos wrote:
I'm more confused to what he's actually trying to do. Why would an app ever require access to a private wallet?

For the app's author to divert your money into his own wallet :-)


Every crypto wallet app has a private wallet unless they delegate to an external client. If done properly, offline signing is safer than trusting some service to manage your keys.

If it was my app, I would use web3j wallet management https://docs.web3j.io/transactions.html#creating-and-working-with-wallet-files
Your app has a receiving address and you can top it off by transferring from your bigger stash.

I don't see the point of the guys who are bashing the security of your app. It seems fine considering that it aims to protect a wallet held on a phone and what they say seems not applicable in this context. I'd look into the fingerprint api that links with the keystore.

How about
1. generate a long random string as the wallet password
2. generate a keypair in the keystore
3. encrypt (1) with (2)
4. store the result in a db
5. link (2) to finger print auth


Thanks for this post. I've been trying to implement wallets for my app, rather than ask for their private key, and this really is helping me clear up how my understanding of how to do that properly. Especially the idea of having a "proxy" account with my app that they just transfer some ETH to.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
IyMoon
Profile Joined April 2016
United States1249 Posts
Last Edited: 2018-01-24 21:01:55
January 24 2018 19:24 GMT
#18814
On January 25 2018 02:10 ShoCkeyy wrote:
Show nested quote +
On January 25 2018 01:59 IyMoon wrote:
If I am forced to learn Angular for my job (it is not a web dev job, but I think they are going to be doing some things with web api calls)

1) Should I hate my life?
2) Where is the best place to start


First of all, what are you doing with these api calls? Cause if it's big data, python is better for big data. Angular is a full framework, so I don't know why they would force you to learn angular for just api calls.


I am only guessing. My manger just walked by and asked if I knew Angular and I told him no but I could learn it if needed. He told me that they were thinking of using it for something and would let me know if they decided on it.
Something witty
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-01-24 22:48:00
January 24 2018 22:45 GMT
#18815
Is anyone into Linux and networking? Could you suggest something to read over the weekend about this topic? Of course, I can google something but I was wondering if there any recommendations. I've just been advised to read about it but no specifics; I doubt TCP and UDP would be enough because they're cross-platform. Maybe something like multicast and IPC protocol?
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
January 24 2018 22:53 GMT
#18816
On January 25 2018 07:45 sc-darkness wrote:
Is anyone into Linux and networking? Could you suggest something to read over the weekend about this topic? Of course, I can google something but I was wondering if there any recommendations. I've just been advised to read about it but no specifics; I doubt TCP and UDP would be enough because they're cross-platform. Maybe something like multicast and IPC protocol?

Given the last assignment you brought up here, I think you need to start asking the right questions to whoever is assigning these tasks to you.

No one wants to feel stupid by having to ask their coworkers the simple questions, but I would much rather have someone ask me for details up front instead of spending a weekend shooting in the dark and hoping they hit the right mark. And, in general, it's a completely applicable skill in almost everything you're going to do. Plan properly first, and then work, don't work without planning.
Average means I'm better than half of you.
Excludos
Profile Blog Joined April 2010
Norway8053 Posts
Last Edited: 2018-01-25 01:07:48
January 25 2018 00:56 GMT
#18817
On January 25 2018 07:45 sc-darkness wrote:
Is anyone into Linux and networking? Could you suggest something to read over the weekend about this topic? Of course, I can google something but I was wondering if there any recommendations. I've just been advised to read about it but no specifics; I doubt TCP and UDP would be enough because they're cross-platform. Maybe something like multicast and IPC protocol?


Most (if not all) networking protocols is cross-platform, including multicast and IPC.

I'll have to echo WolfintheSheep here. Linux isn't really any one thing you can read about. You need to know more specifically what you should look for. "Linux and networking" can literally be a million different topics. Are you going to set up a network? Share folders between Linux computers on a network? Hot/cold backups? Do you need to read up on the different network layers? Every protocol ever?

Just to give you an idea on the difficulty on what you're up against here: A few years ago I studied in Australia for half a year and took a course in System Administration (Ie: Linux and Networking). I spent something like 30 hours a week on that subject alone and barely managed to scrape by the exam, and I would still consider myself a complete newbie in the field. This isn't something you can just "read up on the weekend" without having any idea what topic you're supposed to read up about.

edit: I guess I feel a little bit of an ass here, but you're not giving me a whole lot to work with either. How experienced are you with Linux to begin with? Is it mainly the networking you need to learn or is the whole of Linux as well? If the latter: Just get it installed and play around with it. That's plenty to do over a weekend if you're completely unfamiliar with it. If it's the prior; Read up on the different layers of networking; all the way from the physical ones and zeroes to the application layer. And read up on some of the protocols; how they work and what they're mainly used for. It might also be a good idea to read up on what networks consists of and how to set up a IP network (staticly and manually. Automated and DHCP is too easy ).
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 25 2018 07:22 GMT
#18818
https://en.m.wikipedia.org/wiki/Advanced_Programming_in_the_Unix_Environment
https://en.m.wikipedia.org/wiki/UNIX_Network_Programming
The second one should be right up your alley. First one is a very good book for 'reading about Linux'.
conspired against by a confederacy of dunces.
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
January 25 2018 17:26 GMT
#18819
So I have a database that is currently an Excel file of about 150 entries (lines), each entry has about 100 or so properties (columns). I want to parse this and make a plain text file to make life easier in the future. The properties are a mix of floats and strings.

Are there any standard formats for storing such data, or should I just go for comma separated? Also for accessing, is looking in SQL overkill for this size of database (i.e., pretty small)?
TRUEESPORTS || your days as a respected member of team liquid are over
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
Last Edited: 2018-01-25 17:39:54
January 25 2018 17:34 GMT
#18820
On January 26 2018 02:26 emperorchampion wrote:
So I have a database that is currently an Excel file of about 150 entries (lines), each entry has about 100 or so properties (columns). I want to parse this and make a plain text file to make life easier in the future. The properties are a mix of floats and strings.

Are there any standard formats for storing such data, or should I just go for comma separated? Also for accessing, is looking in SQL overkill for this size of database (i.e., pretty small)?


What do you plan on doing with this data? SQL might not be overkilled if you're saying theres 150 lines, but 100 columns. But it also depends on what you're doing with the data. SQL if you're just trying to store it some where else. If you're trying to manipulate the data, then you can try using python or javascript to parse from excel, and display what you want.

I'd also go with JSON or CSV if you decide to change the format from excel. Those are formats that can be easily imported to almost any system now a days.

On January 25 2018 04:24 IyMoon wrote:
Show nested quote +
On January 25 2018 02:10 ShoCkeyy wrote:
On January 25 2018 01:59 IyMoon wrote:
If I am forced to learn Angular for my job (it is not a web dev job, but I think they are going to be doing some things with web api calls)

1) Should I hate my life?
2) Where is the best place to start


First of all, what are you doing with these api calls? Cause if it's big data, python is better for big data. Angular is a full framework, so I don't know why they would force you to learn angular for just api calls.


I am only guessing. My manger just walked by and asked if I knew Angular and I told him no but I could learn it if needed. He told me that they were thinking of using it for something and would let me know if they decided on it.


If you have to learn something, and just use API calls, Vue has a way easier learning curve than Angular, and a large growing support team. The difference being Angular is a full MVC framework, while Vue is only the view layer (lol hope its obvious).
Life?
Prev 1 939 940 941 942 943 1031 Next
Please log in or register to reply.
Live Events Refresh
RotterdaM Event
16:00
Rotti Stream Rumble 4k Edition
RotterdaM957
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 957
Hui .144
StarCraft: Brood War
Bisu 1120
firebathero 221
Bonyth 80
sas.Sziky 52
Rock 9
Dota 2
qojqva3458
Pyrionflax22
League of Legends
Grubby3982
Counter-Strike
fl0m1606
Fnx 1429
ScreaM767
shoxiejesuss679
flusha381
sgares117
Heroes of the Storm
Liquid`Hasu71
Other Games
summit1g1255
B2W.Neo929
Beastyqt921
ceh9629
KnowMe191
Mew2King156
mouzStarbuck155
ToD146
oskar134
Trikslyr69
Sick51
ZombieGrub49
Organizations
Other Games
gamesdonequick49841
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 22 non-featured ]
StarCraft 2
• kabyraGe 247
• LUISG 11
• Reevou 10
• OhrlRock 2
• davetesta1
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• intothetv
• Kozan
• Migwel
• LaughNgamezSOOP
StarCraft: Brood War
• 80smullet 16
• Michael_bg 5
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota2641
League of Legends
• Jankos2367
• TFBlade1126
Other Games
• imaqtpie1745
• Shiphtur511
Upcoming Events
Replay Cast
4h 41m
Sparkling Tuna Cup
14h 41m
WardiTV European League
20h 41m
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
1d 4h
The PondCast
1d 14h
WardiTV European League
1d 16h
Jumy vs NightPhoenix
Percival vs Nicoract
ArT vs HiGhDrA
MaxPax vs Harstem
Scarlett vs Shameless
SKillous vs uThermal
uThermal 2v2 Circuit
1d 20h
Replay Cast
2 days
RSL Revival
2 days
ByuN vs SHIN
Clem vs Reynor
Replay Cast
3 days
[ Show More ]
RSL Revival
3 days
Classic vs Cure
FEL
3 days
RSL Revival
4 days
FEL
4 days
FEL
4 days
BSL20 Non-Korean Champi…
4 days
Bonyth vs QiaoGege
Dewalt vs Fengzi
Hawk vs Zhanhun
Sziky vs Mihu
Mihu vs QiaoGege
Zhanhun vs Sziky
Fengzi vs Hawk
Sparkling Tuna Cup
5 days
RSL Revival
5 days
FEL
5 days
BSL20 Non-Korean Champi…
5 days
Bonyth vs Dewalt
QiaoGege vs Dewalt
Hawk vs Bonyth
Sziky vs Fengzi
Mihu vs Zhanhun
QiaoGege vs Zhanhun
Fengzi vs Mihu
Liquipedia Results

Completed

BSL Season 20
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
CSL Xiamen Invitational
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
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.