what is the difference between a framework and a platform [closed] - frameworks

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I know that a framework sets the foundation for a programming type but what is a programming platform? and if it is different to a framework how does it differ?

Typically, "platform" refers to the actual hardware/software upon which a piece of software is built or for which it is destined.
Example usage: "I built this app for the Windows platform."
"Framework" refers to a collection of libraries/classes with the common goal of providing a scaffold on which to build software. Frameworks might completely alter how you implement your program or they might just speed up common tasks.
Example usage: "I built this app using an MVC framework for the backend."
Example of using both terms together: "I built this app for Android platform devices using Xamarin, an implementation of the .NET framework."

Related

Which CMS architecture should I use if my website is is based on Next js & mobile app is based on react native? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 days ago.
Improve this question
I'm working for an IT company & i need to build a new CMS. My two websites, 1 run on next js & another on different technology platform, and mobile app we are planning on react native. All application is content heavy. Which CMS architecture is suitable & Why?
Traditional (Coupled CMS Architecture )
De-Coupled CMS Architecture
Headless CMS Architecture
Hybrid CMS Architecture
Did some research & Trying to find some answers

When will apple's swift officially include open-source swift-algorithms? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
Not only "swift-algorithms" but also "swift-collections" which is announced yesterday are so amazing library I think.
I wonder why apple didn't include that libraries in official swift.
Maybe you who will answer to me absolutely don't know too.
If you don't know, could you tell me if developer teams of each of library is different with developer team of official swift?
They're both not in the swift standard library (yet) because they haven't passed the Swift Evolution process. This is explained in the Swift Algorithms announcement:
It’s our ambition for the standard library to include a rich, pragmatic set of generic algorithms. We think the Algorithms package can help realize this goal by serving as a low-friction venue to build out new families of related algorithms—giving us an opportunity to iteratively explore the problem space and learn how different algorithms connect and interact—before graduating them into the standard library.

Full-stack development with Flutter/Dart? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
Anyone has experience creating both back-end and front-end using Dart (and UI with Flutter)? Flutter + Firebase doesn't count.
Looking into server-side alternatives to ASP.NET MVC (C#) or Flask (Pyhton), but specifically tailored to Dart.
Would be interested to see examples of tech stacks used and comparisons of past experience with conventional frameworks (.NET, Java, PHP) to Flutter/Dart stack.
List of HTTP server frameworks for Dart
Angel - Website
Aqueduct
Shelf

Can I use swift code to create a Desktop Linux App? [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 4 years ago.
Improve this question
I developed an app for iOS in Swift, and now I have to make the same app in Linux.
I know that in Linux I can't use frameworks as UIKit. What are the better alternatives?
I found different projects that provides a graphic UI:
Swift for GUI
https://www.reddit.com/r/swift/comments/4ig0ic/swift_for_linux_and_graphical_interface/
Qt Swift
https://github.com/Longhanks/qlift
minesweeper in Qt: https://github.com/Longhanks/swiftmine
Pure Swift
https://github.com/PureSwift
Cacao Lib: https://github.com/PureSwift/Cacao
Did you try them? Are there better options?
Other way could be to create a Framework or DLL with my Swift code and use other language to develop the Linux Desktop app. Is this possible?

Does Apple allow html/js apps in appstore? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
Is it considered kosher by Apple to create an app consisting of nothing but a WebView and the appropriate html/js/css files to support it?
I have an app that could be written entirely within a webview and it would be much easier to get from start to finish that way instead of learning the parts of the iOS SDK necessary to do it.
Yes, it is acceptable, but I would recommend looking at PhoneGap, which is based on a similar concept, but provides JavaScript access to native functionality.