Is a MVC structure relevant in Python [closed] - java

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 6 years ago.
Improve this question
I come from Java, vanilla Java desktop software programming, recently switching to
Python
In Java, the basic routine of starting a MVC project, is making the model classes, setting up attributes, getter setters, then creating the views and coding up the logic with the controllers and constructors
Is all this relevant in Python? Creating a file for each class, heritage, method hierarchy, controllers, low coupling
I have a really hard time pre visualizing the structure and routine of a Python application , while utilizing the best from the language efficiency wise

Related

Should use inbuilt libraries or define classes? [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 6 years ago.
Improve this question
what is recommended in competitive programming defining classes or using the java libraries?eg.stack or linked lists.Does performance of code depends on it?
Normally you don't need to write your own classes for saving and managing some objects in a list.
I recommend you not to invent the wheel again.
Except you do it for a learning purpose.
The problem with writing your own classes for critical operations is that you can't do it better than a team of some pretty smart heads. Neither do I.

Laravel, Codeigniter or Zend? [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 7 years ago.
Improve this question
I want to develop an ERP application. What is the best framework to use. Am good with Codeigniter and ready to learn a better framework. Plus, the application will be used in a a large organization. I have read many forums but can't end up with a concrete reason why I'd prefer one over the others.Is there an alternative programming language which is not necessarily web based? Any idea will be highly appreciated.
try laravel first as it is modern and has a lot of support. Go on the irc channel and it is a great place. zend will take a lot longer to build and plan.
if you want a proof of concept, you can get it up in a few days in laravel. then you can decide on where you want to take it from there.

Which language has better support for developing GUIs coupled with network programming, Python or Java? [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 9 years ago.
Improve this question
I am looking to develop an application as a personal project. What I have in mind is a network-based application that would entail writing code for a typical client-server architecture using TCP Sockets as well as a heavy use of GUIs.
I believe I have quite a few choices: Swing in Java, PyQt, PyGTK, wxpython and the like in Python.
I was just wondering if anyone could direct me to which language would be better in the above respects.
I would suggest you go for JavaFX. It comes with the JDK and has a lot of good features.
Plus, it can inter-operate with Swing, backwards and forwards. It allows you to use CSS to pretty-paint your UI. t gives you best of both the worlds.

Is there any other pattern other than MVP and MVC? [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 9 years ago.
Improve this question
MVP and MVC are mostly used patterns in Java and other languages. Is there any other list of patterns working like MVC and MVP?
Well I cant speak for Java but with big iOS projects (often using Core Data) you normally expand the MVC pattern to MVCS (Model-View-Controller-Store). The Store is responsible for fetching data provided by external sources and providing data to controllers. You do this to not mess up your controllers in such projects.
But for normal projects MVC is your way to go.

Co- browsing implementation in java [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 9 years ago.
Improve this question
Co-Browsing in the context of web browsing, is the joint navigation through the Internet by two or more people accessing the same web pages at the same time.
for more information please have a look at http://en.wikipedia.org/wiki/Cobrowsing
here are some paid alternatives which does this
http://www.livelook.com/co_browsing.asp
http://www.unblu.com/
any help regarding what technology is being used to implement this or technical specifications ?
i am trying to implement co-browsing using java, has any one have prior experience with that if its possible or any existing java library doing the same?
if there is not any solution what approach should i use to implement this.

Categories