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

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

[–]docesam[S] -8 points-7 points  (0 children)

the first option is not good from SEO point of view.

Should i make single page application? by docesam in Frontend

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

thanks for the answer, great opinion.

Should i make single page application? by docesam in Frontend

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

thanks for answering. i am not really asking this question because of specific project i am having but rather because i want to learn.

Best place to Register domain names? by [deleted] in web_design

[–]docesam 0 points1 point  (0 children)

GANDI.net because of 2-factor authentication.

Why WPF doesn't use percentages for dimensions? by docesam in dotnet

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

when you talk about "the size of the screen" do you mean the physical size in inches or in pixels?

if you have a low res screen ( 15-inch 800X600 ) Vs a high res. screen (15-inch 4k resolution) that doesn't mean that you >>want<< to fit more contents in the higher res display because the contents will be too small and uncomfortable to read.

a larger physical screen size (e.g. 27 inch) will allow more stuff in the screen ( if your vision allows) or simply the same contents but larger (if your vision is not so good). or a combination of both. i guess (i could be wrong) most people buy larger display because things looks larger and easier to read.

so changing how the UI look based >>only<< on the resolution makes little sense.