[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.programming

Best Technology to build a web app.

moltediego

3/10/2016 3:57:00 PM

Hi Experts,

I started a new project and I need to write a web application. It's the first time that i'm approaching this "world" but i don't have a problem to understand the technologies used. The only problem is to find the right technologies to build a rich and complex application (HTML+CSS, JS, Angular, ASP.....etc etc). Any suggestion??

Regards,
Diego
15 Answers

Randy Howard

3/10/2016 5:06:00 PM

0

On 3/10/16 9:57 AM, moltediego@gmail.com wrote:
> Hi Experts,
>
> I started a new project and I need to write a web application.
> It's the first time that i'm approaching this "world" but i
> don't have a problem to understand the technologies used. The
> only problem is to find the right technologies to build a rich
> and complex application (HTML+CSS, JS, Angular, ASP....etc
> etc). Any suggestion??

Golang.org.


--
Randy Howard
(replace the obvious text in the obvious way if you wish to contact me
directly)

Richard Heathfield

3/10/2016 5:47:00 PM

0

On 10/03/16 17:06, Randy Howard wrote:
> On 3/10/16 9:57 AM, moltediego@gmail.com wrote:
>> Hi Experts,
>>
>> I started a new project and I need to write a web application.
>> It's the first time that i'm approaching this "world" but i
>> don't have a problem to understand the technologies used. The
>> only problem is to find the right technologies to build a rich
>> and complex application (HTML+CSS, JS, Angular, ASP....etc
>> etc). Any suggestion??
>
> Golang.org.

Any language designed by Google employees must be avoided at all costs.
Any language designed by Ken Thompson must be used at all costs.

Paradox. Please halt your universe and re-boot.

--
Richard Heathfield
Email: rjh at cpax dot org dot uk
"Usenet is a strange place" - dmr 29 July 1999
Sig line 4 vacant - apply within

kenobi

3/10/2016 6:02:00 PM

0

W dniu czwartek, 10 marca 2016 16:57:15 UTC+1 uzytkownik molte...@gmail.com napisal:
> Hi Experts,
>
> I started a new project and I need to write a web application. It's the first time that i'm approaching this "world" but i don't have a problem to understand the technologies used. The only problem is to find the right technologies to build a rich and complex application (HTML+CSS, JS, Angular, ASP....etc etc). Any suggestion??
>
> Regards,
> Diego

use html and js, whats the problem

ps. im not much experience in the world of webapps but enough to know that js and html are the fundments

Mark Carroll

3/10/2016 6:31:00 PM

0

On 10 Mar 2016, fir wrote:

> use html and js, whats the problem

What about server-side? (Or is this all client-side?)

> ps. im not much experience in the world of webapps but enough to know that js and html are the fundments

True, but plenty is built on top of them like libraries such as
Backbone, jQuery and React, all the way up to whole languages like
ClojureScript. It takes some effort to keep up with what's worth using
for new non-trivial projects.

-- Mark

kenobi

3/10/2016 7:41:00 PM

0

W dniu czwartek, 10 marca 2016 19:30:52 UTC+1 uzytkownik Mark Carroll napisal:
> On 10 Mar 2016, fir wrote:
>
> > use html and js, whats the problem
>
> What about server-side? (Or is this all client-side?)
>
> > ps. im not much experience in the world of webapps but enough to know that js and html are the fundments
>
> True, but plenty is built on top of them like libraries such as
> Backbone, jQuery and React, all the way up to whole languages like
> ClojureScript. It takes some effort to keep up with what's worth using
> for new non-trivial projects.
>
and how 'rich' and how 'complex' this app had to be...?

Kaz Kylheku

3/10/2016 7:47:00 PM

0

On 2016-03-10, Mark Carroll <mtbc@bcs.org> wrote:
> On 10 Mar 2016, fir wrote:
>
>> use html and js, whats the problem
>
> What about server-side? (Or is this all client-side?)
>
>> ps. im not much experience in the world of webapps but enough to know
>> that js and html are the fundments
>
> True, but plenty is built on top of them like libraries such as
> Backbone, jQuery and React, all the way up to whole languages like
> ClojureScript. It takes some effort to keep up with what's worth using
> for new non-trivial projects.

If you're "keeping up with what is worth using", that means you're
constantly throwing away what you were temporarily duped into
believing was worth using.

When you have something worth using, you stop "keeping up", and you
actually ... use it.

Kaz Kylheku

3/10/2016 7:54:00 PM

0

On 2016-03-10, Richard Heathfield <rjh@cpax.org.uk> wrote:
> On 10/03/16 17:06, Randy Howard wrote:
>> On 3/10/16 9:57 AM, moltediego@gmail.com wrote:
>>> Hi Experts,
>>>
>>> I started a new project and I need to write a web application.
>>> It's the first time that i'm approaching this "world" but i
>>> don't have a problem to understand the technologies used. The
>>> only problem is to find the right technologies to build a rich
>>> and complex application (HTML+CSS, JS, Angular, ASP....etc
>>> etc). Any suggestion??
>>
>> Golang.org.
>
> Any language designed by Google employees must be avoided at all costs.
> Any language designed by Ken Thompson must be used at all costs.
>
> Paradox. Please halt your universe and re-boot.

Is the second point really true? Based on what credentials
should I use a programming language designed by Ken Thompson?

What is Thompson best known for: hacking on operating system code in
machine languages, and in typeless predecessor to C that serves as a
higher level assembler.

From that we know that he is excellent at ensuring that two independent
execution contexts don't stomp on each other, and that a buffer of bytes
goes to the correct piece of hardware in the correct sequence and
without undue delay, all with minimal help from the programming tools.

Does that translate to programming language design pedigree?

Dmitry A. Kazakov

3/10/2016 8:30:00 PM

0

On 2016-03-10 16:57, moltediego@gmail.com wrote:

> I started a new project and I need to write a web application. It's
> the first time that i'm approaching this "world" but i don't have a
> problem to understand the technologies used. The only problem is to find
> the right technologies to build a rich and complex application
> (HTML+CSS, JS, Angular, ASP.....etc etc). Any suggestion??

Gnoga

http://www....

--
Regards,
Dmitry A. Kazakov
http://www.dmitry-...

Mark Carroll

3/10/2016 9:23:00 PM

0

On 10 Mar 2016, Kaz Kylheku wrote:

> On 2016-03-10, Mark Carroll <mtbc@bcs.org> wrote:
(snip)
>> True, but plenty is built on top of them like libraries such as
>> Backbone, jQuery and React, all the way up to whole languages like
>> ClojureScript. It takes some effort to keep up with what's worth using
>> for new non-trivial projects.
>
> If you're "keeping up with what is worth using", that means you're
> constantly throwing away what you were temporarily duped into
> believing was worth using.

There's a difference between starting new projects from scratch and
further developing existing ones.

> When you have something worth using, you stop "keeping up", and you
> actually ... use it.

Yes: I've worked on plenty of projects where they were using what they
learned fifteen years ago and I was painfully aware of how much easier
and more reliable it would be if they could have broadened their
horizons. Even if you have a hammer that doesn't mean that everything is
a nail.

-- Mark

Richard Heathfield

3/10/2016 9:53:00 PM

0

On 10/03/16 19:54, Kaz Kylheku wrote:
> On 2016-03-10, Richard Heathfield <rjh@cpax.org.uk> wrote:
>> On 10/03/16 17:06, Randy Howard wrote:

>>>
>>> Golang.org.
>>
>> Any language designed by Google employees must be avoided at all costs.
>> Any language designed by Ken Thompson must be used at all costs.
>>
>> Paradox. Please halt your universe and re-boot.
>
> Is the second point really true?

No, but then neither is the first.

--
Richard Heathfield
Email: rjh at cpax dot org dot uk
"Usenet is a strange place" - dmr 29 July 1999
Sig line 4 vacant - apply within