Stack Advice

Needs advice
on
ElementorElementorHTML5HTML5
and
WordPressWordPress

hello guys, I need your help. I created a website, I've been using Elementor forever, but yesterday I bought a template after I made the purchase I knew I made a mistake, cause the template was in HTML, can anyone please show me how to put this HTML template in my WordPress so it will be the face of my website, thank you in advance.

READ MORE
20 upvotes·32.1K views
Replies (1)
  1. Create a New Page in WordPress: Go to Pages > Add New.
  2. Use the HTML as a Guide: Copy and paste the relevant HTML sections from your template into the WordPress editor. Be aware, styling might not translate perfectly, and you'll need to remove any WordPress-specific code from the HTML.
  3. Style with Elementor: Since you're familiar with Elementor, you can use it to style the page elements and make them visually match the HTML template as closely as possible.

This is a quicker solution, but you might lose some functionalities or have some styling inconsistencies.

READ MORE
9 upvotes·7 comments·2.7K views
John mike
John mike
·
July 8th 2024 at 8:57AM

Golf Desire is not just your ordinary golf website—it’s a golf lover’s haven! We cater to the needs and desires of golf enthusiasts of all levels, from the seasoned pros to the aspiring novices. Our mission is to provide a one-stop platform where golfers can find everything they need to enhance their game and fuel their passion for this incredible sport. https://golfersdesire.com/

·
Reply
samasofaofficial
samasofaofficial
·
July 8th 2024 at 3:46AM

https://www.samasofa.com/

·
Reply
FInalert LLC
FInalert LLC
·
July 23rd 2024 at 8:04AM

To use an HTML template in WordPress, you need to convert it into a WordPress theme. This involves creating necessary PHP files and integrating WordPress functions. Alternatively, you can hire a developer to assist with the conversion.

·
Reply
David James
David James
·
July 29th 2024 at 11:40AM

<a href="https://magic8ball-online.com">Magic</a>

·
Reply
Daniel Smith
Daniel Smith
·
October 28th 2024 at 12:50PM

check this baybayintranslator website which is develop in wordpress and i can help you in wordpress website design. please check the website : https://baybayintranslator.com/

·
Reply
Needs advice
on
FlutterFlutter
and
flameflame

Hello everyone, I am a junior developer I got hands-on with a project where I should develop a mobile app containing multiple 2d games my initial UI stack was React Native for the UI and Unity for the games, the app is UI heavy so unity alone wasn't enough, but I recently found that I could develop everything with Flutter from the app to the game ... my question is, do you think it's a good idea or am I shooting myself in the foot?

READ MORE
11 upvotes·32.3K views
Replies (4)
Senior Software Architect at Seleon Gmbh·
Recommends
on
Flutter
flame

if you are already expert on technologies you mentioned and know exactly how to work with them you might see investition to flutter as burden. Otherwise: Just go on with flutter & flame and see if it fullfills your requirements and could fit to your exact requirements.

Generally, flutter is already solid, and usable in context you mentioned. There's also plenty of resources to test if it would be ok to you before investing a lot. Just pick a demo project, get it running, and see results.

https://flutter.dev/games

If you decide to invest you can take a working seed project generated to you

https://cli.vgv.dev/docs/templates/flame_game

Note: Flutter + Flame expect you to learn dart - it's easy, as the language is close to js / c / .. so: algol style syntax - it also expects you to understand reactive ui's - well: concept is insipired by React, so no suprises here, except that the whole concept needs some discipline.

Still to mention: For 3d games you still should see unity as solid option. And, as also with react native, you would find integration to flutter possible and supported by 3rd parties. Don't expect this to work always out of the box as a dream, but see it as a doable thing if you need to step to this road.

https://pub.dev/packages/flutter_unity_widget

As an inspiration I give you idea what kind of extensions Flutter offers, if you decide to invest on it.. This is more fun thing, but as a junior developer learning stuff and doing things out of interest this might be something to you.

https://www.youtube.com/watch?v=0CCVB31feO0

READ MORE
9 upvotes·2 comments·16.8K views
Abdulatif Abdella Mohammed
Abdulatif Abdella Mohammed
·
April 20th 2024 at 6:26PM

Good Chance for business

·
Reply
KS ABBAS
KS ABBAS
·
August 25th 2024 at 11:17AM

what is going on

·
Reply
Application Developer at UW Foundation·
Recommends
on
Flutter

Disclaimer: never heard of flame before

Without knowing more details about what kind of gameplay elements you're looking to feature in your application, it's a bit tricky to offer a transparent answer. I would feel more comfortable making my decision once I flesh out what I need the UI to do, (which will depend on how much you have drafted out)

If you go down the flutter route, you'll need to be prepared to learn about flutter's state management system more found here. On top of that, if you're used to working with tree diagrams and archiectures, you might feel quite at home as you go about building the UI. If you're familiar with design patterns, the typical AppState that's offered is not the same as the standard state design. All in all, It's a very flexible framework, so it can be easy to get distracted seeing all the different avenues you can take to the myriad of problems you'll come to face (in this case, building the foundation and/or an overhaul of your game). If you do end up going with Flutter, I would recommend sticking with Provider, Bloc, or standard AppState to get the hang of things.

Overall, I think I can offer one more damning question to ask yourself that I think might help establish a sense of direction:

How much of the gameplay happens in the UI? - E.g, incremental games like cookie clicker take place "in the UI" itself If there's a fair amount of UI changes and moving parts to what you have planned, I think flutter's a pretty good choice. Just keep in mind that the more complex the project, the less you may be able to lean on flutter's innate speed and functionality.

  • If you for whatever reason develop during periods of time in which you lack internet connectivity, I would stay away from flutter because you need to be able to run dart pub get whenever you want to compile your project (if memory serves)
READ MORE
3 upvotes·606 views
View all (4)
SDET at Fincent·
Needs advice
on
ExpressJSExpressJSJavaScriptJavaScript
and
Node.jsNode.js

Needs advice on code coverage tool in Node.js/ExpressJS with External API Testing Framework

Hello community,

I have a web application with the backend developed using Node.js and Express.js. The backend server is in one directory, and I have a separate API testing framework, made using SuperTest, Mocha, and Chai, in another directory. The testing framework pings the API, retrieves responses, and performs validations.

I'm currently looking for a code coverage tool that can accurately measure the code coverage of my backend code when triggered by the API testing framework. I've tried using Istanbul and NYC with instrumented code, but the results are not as expected.

Could you please recommend a reliable code coverage tool or suggest an approach to effectively measure the code coverage of my Node.js/Express.js backend code in this setup?

READ MORE
45 upvotes·36K views
Replies (3)
Recommends
on
JavaScript
Node.js

Hello! For your Node.js/Express.js project, it is recommended to use NYC as the code coverage tool. Make sure you configure NYC in package.json, for example:

"nyc": { "reporter": ["text", "html"], "include": ["backend//*.js"], "exclude": ["test//*.js"], "all": true } Then run the test through the command:

nyc mocha path/to/your/test/*/.js Make sure your test cases cover all API endpoints so that the coverage can be accurately reflected.

In addition, for node.js projects, I have a very useful suggestion, that is, before the project starts, you can use a development environment management tool like servbay to perform environment deployment, environment testing, etc., which greatly improves our efficiency

READ MORE
8 upvotes·7 comments·1.9K views
Harun sorder
Harun sorder
·
November 1st 2024 at 4:14AM

Situs Terpercaya Bandar Togel Online Resmi & Terbaik

Coloksgp hadir sebagai situs terpercaya dalam menyediakan layanan perjudian online, khususnya permainan togel. Bandar togel online Coloksgp telah beroperasi sejak lama dan dikenal sebagai salah satu yang terbaik di Indonesia. Dengan lisensi resmi, Coloksgp menawarkan pengalaman bermain togel yang aman, nyaman, dan menguntungkan bagi para pemain.

#coloksgp #bandar togel #bandar togel online

Please click here: https://ottensflavors.com/

·
Reply
Major Vehicle Exchange
Major Vehicle Exchange
·
October 24th 2024 at 3:05PM

Major Vehicle Exchange

Buy Premium Quality Used Shuttle Buses For Sale that are fully reconditioned from bumper to bumper by a used bus dealer that is inspected, serviced, and road tested.

Page URL: https://getanybus.com/

·
Reply
sara khan
sara khan
·
November 8th 2024 at 7:22PM

dubaicallgirls.pro

·
Reply
suwaidi online
suwaidi online
·
November 13th 2024 at 7:18AM

This ensures accurate code coverage reports that are easy to integrate with your development workflow.

·
Reply
Alpha Star
Alpha Star
·
November 18th 2024 at 11:14AM

I Have built my website in react js. can I change my website in Wordpress or can I make a subdomain in another platform like Wordpress

here my website - https://www.gatewayabroadeducations.com/

·
Reply

use SonarCube, that's what i think can help u with code coverage

READ MORE
2 upvotes·1 comment·2.1K views
Anurag Maurya
Anurag Maurya
·
August 2nd 2024 at 12:54PM

Thanks,

Sure, I will check this.

·
Reply
View all (3)
Needs advice
on
DjangoDjangoNode.jsNode.js
and
RailsRails

I'm struggling to decide which of these tools is the best to learn for my career. I'm 15 now so I'm a solo developer and I want to expand my skills by learning one of these tools. Which one is the best for my future and solo development if I want to start freelancing someday or work for a company? I'm also considering Java. Can anyone please help me decide?

READ MORE
17 upvotes·23.3K views
Replies (3)
Recommends
on
Django
Node.js
Rails

Just before I go on, one thing to clarify: Node.js is environment, and Django is a framework, that runs in the Python environment. So if you think between those, you can think between Node.js+TypeScript vs. Python+Django.

Answering your question - if you're 15, go on with whatever gives you most fun. You'll catch the core understanding of programming that you can use later on to learn any language or library. And, trust me, it's impossible to tell what will be the hype in a few years. Two years ago everyone would say that Python is not for "business" software development. Now, 1/3 vacancies is about Python (LLMs - thank you :D ).

If any skill is more useful that other - it's the flexibility, making it easy for you to switch quite shortly from Node.js to Python, from NestJS to Django, or work simultaneously in TypeScript and OOP Python. It's just languages. Ideas behind those languages, architecture thinking - that's way more important.

Good luck :)

READ MORE
14 upvotes·2 comments·21.1K views
emilegreyling
emilegreyling
·
March 21st 2024 at 5:32PM

Thanks this is very helpful!

·
Reply
Lilly Williams
Lilly Williams
·
August 30th 2024 at 8:03AM

Thanks!

·
Reply
Distinguished IT Architect at IBM·

Well, the fact is: it's not so important the language (Java, Ruby, Python, JavaScript) or the framework (Quarkus, Rails, Django, React) you choose. The important thing is that you master the principles behind computer programming, such as Web Development, Object Oriented and Functional Programming.

There are languages that, better than others, allows you to learn. Java, Kotlin or C# are examples. Because they are generic: they are Object Oriented, they give you Functional and all other patterns that a modern language must have.

About the frameworks, I would recommend one that embodies modern way of building Enterprise Architectures, such as: Cloud Native, Microservices, Event Driven Communication (Quarkus is one).

When I make interviews to select candidates to join our teams, these above are the things I consider most.

Good luck, and enjoy coding. Always.

Alessio

READ MORE
12 upvotes·17.4K views
View all (3)
Needs advice
on
ExpressJSExpressJS
and
Next.jsNext.js

Hello, I am building a website for a school that's used by students to find Zoom meeting links, view their marks, and check course materials. It is also used by the teachers to put the meeting links, students' marks, and course materials.

I created a similar website using HTML, CSS, PHP, and MySQL. Now I want to implement this project using some frameworks: Next.js, ExpressJS and use PostgreSQL instead of MYSQL

I want to have some advice on whether these are enough to implement my project.

READ MORE
16 upvotes·109.1K views
Replies (4)

My advice: Next.js, PostgreSQL (supabase). Next.js can handle API routes natively, which eliminates the need for Express.js. You can define your own backend logic, such as handling database interactions (CRUD operations) through these routes. For UI/UX you could make use of Nyxbui + Aceternity (based on shadcn, framer-motion, and some other amazing frameworks/libs/modules). But only combine nyxbui & aceternity if you feel confident with very advanced frontend logic, otherwise just use the basic Shadcn. Do not forget to make good/secure RLS policies and take care how you are handling the caching for your routes when using next.js.

READ MORE
8 upvotes·3 comments·6K views
Dubai Call Girls 0525547819 Call Girls Dubai 0525547819
Dubai Call Girls 0525547819 Call Girls Dubai 0525547819
·
October 30th 2024 at 7:06PM

Dubaicallgirls.pro

·
Reply
Prof Aafa
Prof Aafa
·
December 5th 2024 at 6:30PM

Illuminati organization +27730066655 JOIN ILLUMINATI ORDER FOR RICH, WEALTH, FAME, LOVE and LUCK Welcome to the great temple of Illuminati worldwide. Are you a Pastor, Politician, Business man or woman, Musician or an Artist, Are you employed by some company do you want to be famous or you want to become rich or powerful you can achieve your dreams by being a member of the Illuminati with this all your dreams and heart desire can be fully accomplish People say that the Illuminati are exceptionally wealthy. Is that true? call Prof Aafa+27730066655 ,email ,profaafa22@gmail.com

·
Reply
Prof Aafa
Prof Aafa
·
December 5th 2024 at 6:59PM

Illuminati organization +27730066655 JOIN ILLUMINATI ORDER FOR RICH, WEALTH, FAME, LOVE and LUCK Welcome to the great temple of Illuminati worldwide. Are you a Pastor, Politician, Business man or woman, Musician or an Artist, Are you employed by some company do you want to be famous or you want to become rich or powerful you can achieve your dreams by being a member of the Illuminati with this all your dreams and heart desire can be fully accomplish People say that the Illuminati are exceptionally wealthy. Is that true? call Prof Aafa+27730066655 ,email ,profaafa22@gmail.com

·
Reply
Developer at ViraTrends·

I would use Framework7 React for my frontend and Supabase to store the data. Framework7 is mobile friendly, easy to use, and has tons of prebuilt features and components. Supabase is also easy to setup, has a free tier which allows a decent amount of data storage. And above all; it's API is super easy.

READ MORE
5 upvotes·6.4K views
View all (4)
web developer ·
Needs advice
on
ExpressJSExpressJSReactReact
and
React NativeReact Native

Hi,

I am a student and a junior developer who is a graduating candidate in comp sci major. I am about to start building my final year project which is a real-time messaging application for software developers to Enhance Knowledge Exchange and Problem Solving. It is mainly a chat application with more enhanced features. I am planning to use React and React Native for the frontend and cross-platform mobile apps, Node.js and ExpressJS for the backend, GraphQL for fetching and manipulating data from the backend and PostgreSQL for the database, and finally Socket.IO for the real-time chatting and communication. I would highly appreciate it if anyone here with experience in building similar apps to tell me if I made a good choice or suggest better tech stacks.

Thanks in advance.

READ MORE
22 upvotes·100K views
Replies (3)
Front-end dev at Evolve credit·

Your tech stack is solid for building a real-time messaging project.

React and React Native are excellent choices for the frontend, especially if you want to have both web and mobile versions of your application share code.

ExpressJS is an unopinionated framework that affords you the flexibility to use it's features at your term, which is a good start. However, I would recommend you explore Sails.js as well. Sails.js is built on top of Express.js and it provides additional features out of the box, especially the Websocket integration that your project requires.

Don't forget to set up Graphql codegen, this would improve your dev experience (Add Typescript, if you can too).

I don't know much about databases but you might want to consider using NO-SQL. I used Firebase real-time db and aws dynamo db on a few of my personal projects and I love they're easy to work with and offer more flexibility for a chat application.

READ MORE
38 upvotes·4 comments·264.6K views
suwaidi online
suwaidi online
·
July 17th 2024 at 7:30AM

Recommended technology stacks for building a messaging app include programming languages like Java, Python, Swift, or Kotlin, and frameworks like React Native, Flutter, or Ionic

·
Reply
David James
David James
·
July 29th 2024 at 11:40AM

https://theyesnobutton.com/online-yes-no-button/

·
Reply
cafe racer motorcycle jacket
cafe racer motorcycle jacket
·
July 31st 2024 at 7:32AM

k

·
Reply
sunil Joshi
sunil Joshi
·
October 26th 2024 at 5:38PM

trying since 4 months to retrive my companies stackpage still got issue

·
Reply

I built a very similar application with real-time chatting, and I used a very similar stack to yours (MySQL instead of Postgre). The stack that you chose is very good for what you want to make (or have already made since I am 2 weeks late).

READ MORE
12 upvotes·2 comments·23.2K views
Adornand admire
Adornand admire
·
June 17th 2024 at 11:20AM

openings out there because there's just more web dev to be done then app development.

·
Reply
suwaidi online
suwaidi online
·
November 27th 2024 at 7:31AM

MVP for testing and customer feedback, then a simple tech stack like WordPress would do the work.

·
Reply
View all (3)
Needs advice
on
PythonPython
and
TensorFlowTensorFlow

Hi, I have an LMS application, currently developed in Python-Django.

It works all very well, students can view their classes and submit exams, but I have noticed that some students are sharing exam answers with other students and let's say they already have a model of the exams.

I want with the help of artificial intelligence, the exams to have different questions and in a different order for each student, what technology should I learn to develop something like this? I am a Python-Django developer but my focus is on web development, I have never touched anything from A.I.

What do you think about TensorFlow?

Please, I would appreciate all your ideas and opinions, thank you very much in advance.

READ MORE
21 upvotes·23.8K views
Replies (4)
Recommends
on
Ollama
ollama
Python

I would recommend Ollama, it lets you run a local LLM, which can rewrite the questions. I would test carefully, and review anything generated, as models can hallucinate.

modelfile='''
FROM llama2
SYSTEM Rewrite any exam questions provided to ask the same thing with the same information, but in a slightly different format to thwart cheating.
'''

ollama.create(model='questionrewriter', modelfile=modelfile)
res = ollama.generate(model='llama2', prompt='''A 27-year-old woman comes to the office for counseling prior to conception. She states that a friend recently delivered a newborn with a neural tube defect and she wants to decrease her risk for having a child with this condition. She has no history of major medical illness and takes no medications. Physical examination shows no abnormalities. It is most appropriate to recommend that this patient begin supplementation with a vitamin that is a cofactor in which of the following processes?
(A) Biosynthesis of nucleotides
(B) Protein gamma glutamate carboxylation
(C) Scavenging of free radicals
(D) Transketolation
(E) Triglyceride lipolysis''')

print(res)
READ MORE
16 upvotes·4 comments·14.3K views
Emilio Herrera
Emilio Herrera
·
February 20th 2024 at 7:41PM

Thank you for your response.

I will check out Ollama to dig deeper and see how it would work for my project.

Again, thank you very much.

·
Reply
Protyre Fitters
Protyre Fitters
·
June 8th 2024 at 9:51AM

https://protyrefitters.co.uk/services/mobile-tyre-repair

·
Reply
Ayesha negi
Ayesha negi
·
June 12th 2024 at 12:33PM

By focusing on NLP and randomization techniques, you can achieve your goal of generating varied exams for each student. Start with the basics and gradually explore more advanced AI concepts as needed. With your Python-Django background, you'll find many of these technologies accessible and complementary to your existing skills.

Good luck with your project!

click here more information:https://www.talentelgia.com/solutions/lms-development-services

·
Reply
Wooflo Pro
Wooflo Pro
·
July 28th 2024 at 9:42AM

Advice for Integrating AI into Your LMS

Hi,

To address the issue of students sharing exam answers in your Python-Django LMS, consider the following steps to implement AI for dynamic exams:

Technologies to Learn:

TensorFlow: A powerful framework for building AI models to generate unique exam questions.

Natural Language Processing (NLP): Use libraries like NLTK or spaCy for generating and understanding questions.

Randomization Algorithms: Implement Python’s random module to randomize question order and selection.

API Integration: Utilize Django REST framework to connect your AI models with your LMS.

Implementation Steps:

Data Preparation: Collect a diverse dataset of questions.

Model Training: Train models using TensorFlow to generate questions.

Question Randomization: Develop algorithms to ensure varied question order for each student.

Integration: Create REST API endpoints in Django to serve randomized questions.

Testing: Validate the system to ensure question integrity and randomness.

By following these steps, you can enhance exam integrity and provide a fair assessment environment.

Best of luck with your project!

Wooflo Pro Team

·
Reply

Yes, use local LLMs. No need for Tensorflow (to train something custom). You will use the HuggingFace transformers library for inferencing. You're dealing with sensitive educational data so best to not send it over servers via APIs. Unless you're experienced in security, but even then your institution will probably not allow it.

You can use LM Studio to serve a model locally and test different versions to suit your needs. I just discovered another tool that's in early development that can help you parse the documents (exams) to output a different file per student. It's called AutoNL: https://www.reddit.com/r/LocalLLaMA/comments/1b3xfbc/small_benchmark_gpt4_vs_opencodeinterpreter_67b/ <--- see this thread for a benchmark of a local model against GPT-4.

READ MORE
11 upvotes·2 comments·13K views
newstate
newstate
·
March 4th 2024 at 5:32PM

Even then; be conscious about vulnerabilities: https://www.reddit.com/r/LocalLLaMA/s/bmtP8e1iXM

·
Reply
Pro miner
Pro miner
·
June 4th 2024 at 9:20AM

I will check out Ollama to dig deeper and see how it would work for my project.

Again, thank you very much.

·
Reply
View all (4)
Needs advice
on
PowerBIPowerBIQlikQlik
and
TableauTableau

Hello everyone,

My team and I are currently in the process of selecting a Business Intelligence (BI) tool for our actively developing company, which has over 500 employees. We are considering open-source options.

We are keen to connect with a Head of Analytics or BI Analytics professional who has extensive experience working with any of these systems and is willing to share their insights. Ideally, we would like to speak with someone from companies that have transitioned from proprietary BI tools (such as PowerBI, Qlik, or Tableau) to open-source BI tools, or vice versa.

If you have any contacts or recommendations for individuals we could reach out to regarding this matter, we would greatly appreciate it. Additionally, if you are personally willing to share your experiences, please feel free to reach out to me directly. Thank you!

READ MORE
7 upvotes·25.2K views
Replies (2)
Owner at Alorya art ·

Hi,

I am the owner of my actual company, we are dealing in architectural design and software development. As the owner as I have many years of experience in coding cost control management and business management, I can understand quite well your request.

There are some things which will not help you in your business and other that will help you.

On my opinion Tableau, PowerBI or Qilk will not make huge difference to you. They are all good, and very powerful, you can find good comparison sites for choosing any of them. just search google with "Tableau vs PowerBi" and it will give you sites of people having written very good analysis and comparison for each of them. i highky recommend you do this way

But, if you wish to see deeper in your business, I can recommend you other things, that many software sellers won`t tell you.

In my life, I generally coded the softwares (since 2002) that would do the same thing as them. The first time I did it, was, when I was employee in a construction company. It was for its oil and gas project. My softwares were free for ever.

The things about these softwares are not in the software. I can tell it, because after coding the softwares I was assigned for managing them. The problem was never on the software side. But always personnel behavious was the problem.

I learned to resolve personel problem by learning/ having a course of ISO 9000.

Of course I am a motivational talker, and this helped me. people were enthusiastic to apply ISO 9000 and use the software because I gave the motivational talk.

So to be successful with the software you need human behavioral things next to it.

No matter what you choose, if you see these problems happening (personnel resistance, or refusing, or slowing or blaming the software for the mistakes etc) just remember my advice, it will be a great help to you.

Also if you do not wish to loose money, try first the opensource alternatives to these software. I have many writings about software business and technical stuff about business. I shared my experiences:

I shared with you, one of my blog about your question. Hope it helps:

READ MORE
Industry Trade Construction Business and Project Management: Business Management opensource free sofwares (trade-industry-management.blogspot.com)
1 upvote·2.8K views
Needs advice
on
GunGunMySQLMySQL
and
RethinkDBRethinkDB

Dear Team, Please advise the stack to be used for building Chat Applications that cater to billions of users and work on Mobile as well as desktop. I don't want to use Firebase since it is not fitting into my use case of not using third Party Service Provider. I am comfortable with Java/PHP as a backend. Can we consider RethinkDB, MySQL, and GunDB for the application?

Also looking for Push methodology and not polling one for sending Realtime updates.

Regards Sukesh

READ MORE
8 upvotes·18.4K views
Replies (4)
Recommends
on
RethinkDB

I would say try to use MongoDB or Cassandra except RethinkDB. I have used this DB in two of my projects it has less support and community and fewer queries to do data operations.

READ MORE
2 upvotes·7K views
View all (4)
Associate Java Developer at txtsol·
Needs advice
on
JavaJava
and
Spring BootSpring Boot

I want to make application like Zomato, #Foodpanda.

Which stack is best for this? As I have expertise in Java and Angular. What is the best stack you will recommend?

Web Micro-service / Mono? Angular / React? Amazon Web Services (AWS) / Google Cloud Platform? DB : SQL or No SQL

Mob Cross-platform: React Native / Flutter

Note: We are a team of 5. what languages do you recommend if I go with microservices?

Thanks

READ MORE
11 upvotes·62.2K views
Replies (2)
Web Development at Sigma Solve·

For developing an application like Zomato or Foodpanda, a robust tech stack is crucial. Given your expertise in Java and Angular, a recommended stack would be using Java for the backend and Angular for the frontend. This combination is powerful for building scalable, secure, and dynamic web applications. Java provides a strong backend foundation with its reliability and performance, while Angular offers a comprehensive frontend framework for creating interactive user interfaces. This stack ensures a seamless integration between the frontend and backend components of your application, making it an ideal choice for your project.

READ MORE
4 upvotes·8.1K views
Web Development at Sigma Solve·

For developing an application like Zomato or Foodpanda, considering your expertise in Java and Angular, the recommended stack would be:

Web Microservices architecture for scalability and flexibility. Angular for the frontend framework. Amazon Web Services (AWS) for cloud services due to its robust features and scalability. For the database, a combination of SQL for structured data and NoSQL for unstructured data can be beneficial.

If you opt for microservices, the recommended languages would be Java for backend services due to your expertise, along with other languages like Python or Node.js for specific microservices based on their strengths and requirements. This approach can leverage the strengths of different languages for specific functionalities within your microservices architecture.

READ MORE
2 upvotes·6.4K views