what is the difference between component and framework? [closed] - frameworks

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I know it's too straightforward but I'm confused about this. Imagine a library like JQuery and a component like telerik, which one is on top of another in producing? is it possible to use a framework in component development? what's the main difference between them?

Component:
A Component is essentially a set of functions that you can call,
these days usually organized into classes. Each call does some work
and returns control to the client.
A Component you can use whatever tiny part helps you.
A Component is a tool.
Framework:
A framework is a skeleton where the application defines the "meat"
of the operation by filling out the skeleton. The skeleton still has
code to link up the parts but the most important work is done by the
application.
A Framework is a way of life.
A Framework you must commit your entire project to.
Best Real time Example:
You can call Component. But you cannot able to call Framework.
Framework calls you. But Component not calls you.

Related

Flutter and Angular Dart both share the component pattern, but what is the one fundamental difference between the two frameworks? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
A simple answer will suffice. I'm looking to build a new website and I like the expandability and code sharing happening in the Dart frameworks, but I don't really understand how the two frameworks differ on a fundamental level. The answer can be as in-depth as you like, but I'm really just looking for the layman answer.
AngularDart is, well, Angular in Dart.
Flutter, on the other hand, is a lot closer to React.
Flutter uses the Component pattern from React but is manipulated without HTML/CSS, and instead uses canvas/custom elements.

Alternatives for developing UI for MATLAB GUI applications? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to develop a MATLAB application, but MATLAB's UI is not as flexible or as beautiful as some others, like XAML for WPF. Is it possible to use something else to develop UIs rather than what is provided by MATLAB?
You can use Matlab Compiler to compile your code to an executable and you can excute it anywhere you want, e.g. from an interface developed by XAML or WPF.
You can use Matlab Coder to generate C or C++ code that you can integrate with your application in your own development environment (e.g., Visual Studio).
The advantage of using the second method over the first is that the result will be native (you can compile to anything you want) and you will be able to modify the code and have one code base. The disadvantage is that you will have to deal with the computer generated code.
P.s. You might want to consider the relatively new Matlab App Designer as opposed to the old GUIDE. It is much better. That being said, it is not as good as XAML or WPF.

Get data of website [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'd like to get the data of a website. I'd like to display the table in an app. Do you have an idea how I could do it? Thanks for your answers!
Usually, you'd want the maintainer of the data you need to supply some API for machine-to-machine communication (a REST JSON web service, for example).
Since you are asking how to display the table in an app:
the easiest way would be to just point an UIWebView that way and go from there.
a more native look might be acomplished by parsing the data. As you included several 'parsing' tags, I guess this is what you'd prefer.
The problem with HTML scraping web pages (what you probably hope to do) is that the data you are looking for and foremost it's structure is prune to changes. If some unexpected changes can easily break your parser.
Thus, if you go for doing that (which might be prohibited by your school or other publisher, especially in germany), try to parse the data on your server and offer an web service for your app yourself. This way, you can react to changes of the structure faster and do not break the app for your users.
Seriously consider asking the school for an API.

Is there a way to create a series of UIAlertViews that are daisy chained into a decision tree? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Is there a way or a model by which I could create a "Choose your own adventure" type app using UIAlertViews?
While this is not a direct answer to the question, what you're going for here is going to provide a less than ideal user experience. Alerts are jarring and not really meant to be a constant UI element but more of an occasional interruption.
That said, if you do want to do something like this, using a block handler pattern rather than a delegate pattern will make the logic of your app much simpler and easier to follow.
For Xcode5/iOS7, I would recommend taking a look at BlocksKit which includes a category on UIAlertView to use completion blocks instead of a delegate.
New in iOS8 is the UIAlertController class which handles this very similarly without a need for an external component. It does require iOS 8 to use though.

iPhone SDK, framework to handle api calls? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
i am creating an iphone app, can someone suggest some framework to handle api calls to server (i am using coreData for my model)
there is one framework, restkit. but it requires backend to have a very specific format
is there any other framework/set of classes which can be easily customized?
It's difficult to answer your question without knowing what sort of API you want to communicate with; does it follow some relatively well-known and well-defined structure? If not, there probably won't be a framework for it and you'll have to roll your own communication code. Looking into the ASIHTTPRequest library would be a good starting point if this is the case.