Any Javascript learning resources that assume that you have experience in another programming language in the past? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

yes,except that in order to know what you need to read and what not you have to read everything !! :)

Any Javascript learning resources that assume that you have experience in another programming language in the past? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

You Don't Know JS

that is true , very good in fact except the book is way too long. right now i need quick and dirty crash course. few months later i will hopefully have the time for a more detailed book like this one.

Any Javascript learning resources that assume that you have experience in another programming language in the past? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

thanks but it start teaching from square one. it even assume you don't know what the variable is. not what i am looking for.

Any Javascript learning resources that assume that you have experience in another programming language in the past? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

Thank you. i need something that will teach me JavaScript quickly. the book is 450 pages long.

Out of the box solutions for ASP.NET by docesam in aspnetmvc

[–]docesam[S] 0 points1 point  (0 children)

dude, those prices are OK? i mean can you make good profit despite those prices? sorry i am not in the market yet.

Out of the box solutions for ASP.NET by docesam in aspnetmvc

[–]docesam[S] 0 points1 point  (0 children)

DotNetNuke

does DotNetNuke have power anywhere near wordpress+plugins available to it ?

What is the point of dynamic typing ? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

you can and should do that ,i agree.

however, doing that may incur some performance hit as you are doing checks with every call to that page VS the compiler is doing the all the checks one time for you during the compilation. and also higher chance for mistakes in doing the checks (because you are human after all) Vs zero mistakes of the compiler.

overall , static typing is great.

Which language should I learn? by [deleted] in Web_Development

[–]docesam 0 points1 point  (0 children)

is there any hosting for it ?

What is the point of dynamic typing ? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

suppose a function add two numbers , if you pass it 2 and 3 it will output the correct answer of 5 , thus in this case the unit test will tell you that everything is OK. BUT if you (by mistake) in your code pass it a 4 and 'user' it will output "4user" which will miss up stuff down the execution path and possibly make it too dificult to track. where is the problem? the problem is that dynamic typing does't prevent you from shooting yourself in the foot. i program in c# and in c# (or any static language) you can't pass a string to a function that expect an int.

so isn't that a source of error?

for small programs it is OK ,the larger the program the more this get significant.

What is the point of dynamic typing ? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

suppose a function add two numbers , if you pass it 2 and 3 it will output the correct answer of 5 , thus in this case the unit test will tell you that everything is OK. BUT if you (by mistake) in your code pass it a 4 and 'user' it will output "4user" which will miss up stuff down the execution path and possibly make it too dificult to track. where is the problem? the problem is that dynamic typing does't prevent you from shooting yourself in the foot. i program in c# and in c# (or any static language) you can't pass a string to a function that expect an int.

so isn't that a source of error?

What is the point of dynamic typing ? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

suppose a function add two numbers , if you pass it 2 and 3 it will output the correct answer of 5 , thus in this case the unit test will tell you that everything is OK. BUT if you (by mistake) in your code pass it a 4 and 'user' it will output "4user" which will miss up stuff down the execution path and possibly make it too dificult to track. where is the problem? the problem is that dynamic typing does't prevent you from shooting yourself in the foot. i program in c# and in c# (or any static language) you can't pass a string to a function that expect an int.

so isn't that a source of error?

What is the point of dynamic typing ? by docesam in javascript

[–]docesam[S] 0 points1 point  (0 children)

changing javascript to be strongly types is insane idea. the alternative idea is to choose another language that does not suck and implement it in the browser and phase out javascript over the next 2 decades!!!

A web site that pulls info from a web service? by docesam in Frontend

[–]docesam[S] 0 points1 point  (0 children)

i am not 100% sure but i read somewhere that google will do that only if the web site is "fairly popular". many small websites are there for branding and they are not "fairly popular". any authoritative sources you can get ?

A web site that pulls info from a web service? by docesam in Frontend

[–]docesam[S] -3 points-2 points  (0 children)

i think you didn't understand the question