Wednesday, 13 May 2015

Tech Magazine should be used if you're searching for it.

Hello Friends!.
Today I'm going to tell you about one magazine that my personally owned blog "Lapeasy Inc." Used last month for getting news of new launched technologies & gadgets and writing articles related to them.That magazine is:
                                                                                   DIGIT
Digit is a magazine formed in India for giving computer reviews,tips and tricks,tech news and many other things all related to computers,programming and technology. When I was a newbie into technology I was very confused that how could I get knowledge related to it but I had taken a resolution that i'll be some in computers ;). I'd internet, my friends said that if you have internet then you can do anything but is was a book worm, I can't find it on net. So I choosed digit for getting tech to me. Firstly I bought one magazine set of digit there was one Fastrack book where they take any one topic every month like programming and tell about it on the whole book.there was one game magazine, you can understand about any game magazine so I don't have to tell about it so much.
2 CDs were there, one was all related to the Fastrack book and the main magazine and the other was all related to the game magazine. When I started reading the main magazine, I felt some good. Every month they give the best about tech,computers and tech-news.
Digit is a good magazine for getting tech-news. After reading their that magazine I felt good and chosed digit for my tech news.
You can also subscribe for their monthly magazine at your doorstep.just go to www.digit.com and click on subscribe in the footer.

Thanks,
Lapeasy & Tech-Gadgets
We'll be back with some fresh and relevant content. :-)

Saturday, 2 May 2015

Learn C#......


                     

C# was developed with the aim of creating  a language that suited just about every development need.


C# is a very popular programming language today and it has reason also. It's suits in every development need so you can use in any form.It has many features also as:

  • COM-Component Object Model
  •  
  •  
  • Dynamic Binding
  •  
  •  
  • Scalability

Simple Syntax:       Hello World!


  • using system;
  • class Hello{
  • static void main()   {
  • Console.WriteLine("Hello World");       }
  • }

Friday, 1 May 2015

PHP: Hypertext PreProcessor.

PHP is a server scripting language used for making dynamic and interactive webpages. All the premium and successful sites run php.Even Mark Zuckerberg, founder & CEO of Facebook,Inc. when sat down to write code for facebook he choosed php to use on his site. Although it is a server-side scripting language so you have to install  web server on your computer to use it. You can use XAMPP Server to use php. If you want more information about php you can visit their official site http://www.php.net.

Simple Code:

<!DOCTYPE html>
<html>
<body>

<h1>My first PHP page</h1>

<?php
echo "Hello World!";
?>
 

</body>
</html>




Result:

  

My first PHP page

Hello World!

Javascript

JavaScript

The language for programming web pages.

Simple Code: 

<!DOCTYPE html>
<html>
<body>

<p id="demo">Click the button to change the style of this paragraph:</p>

<script>
function myFunction() {
    var x = document.getElementById("demo");
    x.style.fontSize = "25px";
    x.style.color = "red";
}
</script>

<button onclick="myFunction()">Click Me!</button>

</body>
</html>


 Write or copy and paste this code in notepad and save the page in .html or .htm extension 
(i.e. javascript.html)


Cascading Stylesheets...

CSS or Cascading Stylesheets is the next language that you've to learn. It's a language used for styling the web. Through which you can add your own css codes in your headings,paragraphs or anything which will look more good and as per your code written. You can learn CSS easily and right way from W3Schools .  

<!DOCTYPE html>
<html>
<head>
<style>
body {
    background-color: #d0e4fe;
}

h1 {
    color: orange;
    text-align: center;
}

p {
    font-family: "Times New Roman";
    font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>

</body>
</html>

Write or copy and paste this code in notepad and save the page in .html or .htm extension 
(i.e. test.html)
 

HyperText Markup Language.

HTML is the first language to learn web development. It's a language through you can understand how to make your own text showed on web pages in any form,color or size.