DEV Community

Toma
Toma

Posted on

Endless development platforms, frameworks and form-factors

There are so many choices if you want to start programming in 2019 that your mind will blow if you don't know their similarities and their basic ideas behind the scenes. And especially, if you don't have in mind what you want to develop before you start so to choose the right tool from the start. Here are some variations.

  • You could learn developing for the cloud (server-side). You may not need to learn any User Interface Programming - just the logic for the databases, the server management, business logic for scaling, etc,
  • There are some devices that expose services without Internet connectivity and no screens at all. If they are from the super simple - they may have some physical button that does the job.
  • Others are just devices some kind of internet adapter plus something else that is controlled from the Internet - just a speaker (for music), a electrical adapter (for turning off/on the power), or with a microphone, a speaker that can listen to you and execute some server/cloud functionality or/and give you some answer.

There are several form factors in terms of screen size:

  • Feature Phones 2-3 inches, with 12 keys 10 numbers, #$
  • PDA - 4-6 inches with full keyboard, or very little amount of specialized keys
  • Small smartphone - 3-4.5 inches
  • Medium smartphone - 4.5 - 5.5 inches
  • Big smartphone/Phablet - 5.5-7 inches
  • Small Tablet - 7-8 inches
  • Big Tablet - 10-11 inches
  • Netbook/Notebook 10-12 inches
  • Laptop - 13-17 inches
  • Basic Desktop - 15 - 40 inches
  • Projectors or a really Big Screens - 40+ inches, video displays or projector with zoom of custom size.

In terms of platforms here are some options for you:

  • (Java) Midlet Applications for features phones - decreasing search
  • Blackberry apps, or Windows Phone Apps - decreasing search
  • Windows Mobile Apps - decreasing search
  • iPhone and iPad Apps (iOS)
  • Android Apps - for Phones, Tablets and for Desktop (Chrome OS)
  • Windows Apps - Command Line or using the METRO (touch) API or targeting normal Desktop Interface
  • Mac OS Apps - Command Line or using cocoa framework
  • Linux Apps - Command Line or using Qt, or any other https://en.wikipedia.org/wiki/List_of_widget_toolkits
  • Web Sites and Applications - don't get me started with the options

If you are trying to create a Voice Assisted application the mot popular options are:

  • Cortana
  • Siri
  • Alexa

Here are some Programming Toolkits, SDKs, Frameworks - targeting the above form factors using some of the platforms:

  • Mobile Programming
    • Native, iOS - Swift and Objective C, Android - Java, Kotlin, Windows Mobile - C#
    • Cross Platform - Flutter, NativeScript, ReactNative, Xamarin, Ionic.
    • Hybrid - Cordova / PhoneGap, Appcelerator, Sencha Touch, and many others that offer some layer above the web browser
  • Desktop Programming
    • Cross Platform Tool-kits - Python, Qt, Java, .Net Core,
    • Native Kits - .Net, Windows Forms, Cocoa, Qt (or any other framework above Linux X Server
  • Web Programming
    • PHP
    • Python (Django)
    • Go
    • Java (JSP, JSF, Struts, GWT, Spring, etc.....)
    • .Net (.Net Framework or .Net Core)
    • Ruby ( on Rails)
    • JavaScript (NodeJS)
  • Client Side Web Programming
    • Languages
      • Plain Javascript
      • Dart
      • TypeScript
      • Java (GWT)
    • Frameworks
      • JQuery
      • Angular
      • Vue
      • React
      • Meteor
      • Ember
      • Polymer

Besides all the above here are some mix of Paradigms and Development Approaches that all the above have in some way or another (the examples will be mostly Java related. So the list will be very trimmed):

  • OOP - most popular - (PHP in the newer versions, Java, .Net, etc)
  • Procedural - old and decreasing (PHP, JSP)
  • Functional (+ Reactive), NodeJS, Java Spring Flux, etc

Here are some more Paradigms and approaches:

  • HTTP Server serving front-end + Plain Server Scripts - PHP, JSP, CGI;
  • Component Based - JSF, Vaadin, GWT
  • MVC based - Struts, Spring, Play Framework
  • Monolith approach - everything in one package
  • Micro Service - every functionality in its own package (executing in its own container or virtual machine)

So, Good Luck choosing what to learn, if your aim is learning programming. If you have a goal to code some business logic that does something useful - grab anything and get real. Else, you are fooling yourself.

Top comments (0)