• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 08:55
CET 14:55
KST 22:55
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Winners10Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!33$5,000+ WardiTV 2025 Championship6[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win RotterdaM "Serral is the GOAT, and it's not close" 5.0.15 Patch Balance Hotfix (2025-10-8)
Tourneys
Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship Sparkling Tuna Cup - Weekly Open Tournament Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
[ASL20] Ask the mapmakers — Drop your questions BW General Discussion [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile Should offensive tower rushing be viable in RTS games? Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
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 Recent Gifted Posts
Blogs
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1408 users

The Big Programming Thread - Page 941

Forum Index > General Forum
Post a Reply
Prev 1 939 940 941 942 943 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.
Manit0u
Profile Blog Joined August 2004
Poland17421 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
Poland17421 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
Poland17421 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
Norway8151 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 1032 Next
Please log in or register to reply.
Live Events Refresh
CranKy Ducklings
10:00
Sea Duckling Open #140
CranKy Ducklings84
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 198
Railgan 42
Creator 14
StarCraft: Brood War
Sea 6694
Horang2 4040
GuemChi 1668
Jaedong 862
actioN 292
Mini 259
BeSt 247
Killer 230
Soma 220
EffOrt 210
[ Show more ]
Rush 169
Mind 92
Hyun 87
Bonyth 72
ToSsGirL 69
Backho 61
sas.Sziky 33
JYJ28
PianO 27
zelot 24
Aegong 14
soO 12
Terrorterran 10
Sacsri 9
sorry 9
HiyA 8
Dota 2
Gorgc6041
singsing2292
qojqva1772
Dendi596
XcaliburYe214
BananaSlamJamma90
Heroes of the Storm
Khaldor209
Other Games
B2W.Neo1194
Sick244
Lowko237
Fuzer 197
Hui .121
XaKoH 81
nookyyy 54
MindelVK19
Organizations
StarCraft 2
WardiTV622
Counter-Strike
PGL242
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 67
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2050
League of Legends
• Stunt689
• HappyZerGling113
Upcoming Events
IPSL
4h 6m
dxtr13 vs OldBoy
Napoleon vs Doodle
LAN Event
4h 6m
Lambo vs Clem
Scarlett vs TriGGeR
ByuN vs TBD
Zoun vs TBD
BSL 21
6h 6m
Gosudark vs Kyrie
Gypsy vs OyAji
UltrA vs Radley
Dandy vs Ptak
Replay Cast
9h 6m
Sparkling Tuna Cup
20h 6m
WardiTV Korean Royale
22h 6m
LAN Event
1d 1h
IPSL
1d 4h
JDConan vs WIZARD
WolFix vs Cross
BSL 21
1d 6h
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
1d 19h
[ Show More ]
Wardi Open
1d 22h
WardiTV Korean Royale
2 days
Replay Cast
3 days
Kung Fu Cup
3 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
4 days
The PondCast
4 days
RSL Revival
4 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
RSL Revival
5 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
5 days
CranKy Ducklings
6 days
RSL Revival
6 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
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
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.