What it is
This book is the bare minimum guide helping you to start programming from scratch. In almost anything, the hardest part is to get the ball rolling. After reading this book you will be comfortable with programming. Further learning will require less effort since the ball is already rolling.
Who is it for
– You don’t have a Computer Science degree ?
– You would love to create software but don’t know where to start ?
– Want to put your software skills into real practice ?
If the answer to any of these question is yes, then this book is for you. I’ve been there. Most of computer science books are so in depth. There was nothing that explains the most important basics of different aspects of programming. This is what this book is about. It helps you to connect the dots and start programming something useful.
Results
After reading this book you will be able to do 3 things:
1. Create a basic web application and put it on the Internet.
2. Write code yourself.
3. Understand and modify existing code.
User Reviews
Submit Your Review
jQuery(function(){
jQuery(“.rateit”).rateit();
jQuery(“#wpdm-user-review-form”).submit(function(){
jQuery(“#wpdm-submit-review-button”).attr(“disabled”,”disabled”).html(“ Please Wait…”);
jQuery(this).ajaxSubmit({
success:function(res){
if(!res.match(/ok/)) {
jQuery(“#wpdm-user-review-form”).append(“
“);
jQuery(“#wpdm-submit-review-button”).removeAttr(“disabled”).html(“ Submit Review”);
} else {
jQuery(“#wpdm-submit-review-button”).html(“ Done!”);
jQuery(“#wpdm-user-review-form”).append(“
“);
}
}
})
return false;
});
jQuery(“#wpdm-submit-reply-form”).click(function(){
jQuery(“#wpdm-submit-reply-form”).attr(“disabled”,”disabled”).html(“Please Wait…”);
jQuery(“#wpdm-user-reply-form”).ajaxSubmit({
success:function(res){
jQuery(“#wpdm-user-reply-form”).append(“
“);
jQuery(“#wpdm-submit-reply-form”).html(“Done!”);
}
})
return false;
});
jQuery(“.reply-comment”).click(function(){
jQuery(“#wpdm-reply-for”).val(this.rel);
});
});
The post Start Programming Now: No CS Degree Needed appeared first on ZEbook.
Read Source: Start Programming Now: No CS Degree Needed»