Friday, January 29, 2016

FREE MOBILE FRIENDLY WEBSITE TEMPLATES BY W3LAYOUTS.COM

As everyone know's today websites are basic needs for every business as visiting card is to represent about yourself or your product around the world. But today in this mobile world where everyone access web through mobile comparatively more than desktops OR laptops. So we need a website design that should be mobile friendly in another word it should responsive it means a design which can occupy or adjust space according to the shape and size of various device one is using.

So now the questions arose How is this possible? or  there is the need to make a separate website for mobile? and also it may cost lot more money.

Here is the solution for every questions, now you can get mobile optimized design for free YES FREE! which are design and optimized also for different other smartphones(Android, Iphone, Windows Mobile etc). from W3layouts.com

Where one can find various website design templates which are all mobile friendly designs and also for various other catagories such as Admin templates, Basic templates, Beauty and spa, Corporate templates, E- mail templates , E-Commerce templates and ample of other templates just for free.

So guys dont wait for any thing just get your design and elevate your business online on another level because if you dont have website which has latest style of design, responsive, properly optimized in every sense then you are not in business according to the todays world and generation.

Here is the link for website : https://w3layouts.com/ 

THANK YOU




Monday, January 18, 2016

CHANGE WORDPRESS ADMIN PASSWORD USING CPANEL


Let see how we can reset OR change a wp-admin password using the cPanel. Follow the instruction as given below also, u can refer attached images parallely.

  • Go to   cPanel (For eg. https//yoursite.com/cpanel)
  • In cPanel, down their in database section click on phpMyAdmin.
  • In phpMyAdmin, click on database section  then you will find the list of a database, select your database you made while installing WordPress.        



  • After selecting your database, you will find the list of tables made in  that database click on wp_user  table then click edit near admin user.

  • After clicking on EDIT, you can see the section called user_pass in that at right box there you will find 34 digit numbers may be with the special character, remove that digits and put your own string password  and then in the left box you will find drop down menu in which you have to select MD5 option. 

  •  Then click on GO button below at the right side as you can see in the image down here

After this you are done with your password changing process. Any dought regarding this post please let me know your views below in the comment section.

Thank You











Monday, January 11, 2016

LIST OF PROGRAMS FOR PRACTICE


List of programs to practice for all the beginners from Low-level program to High-level program.

Basic Programs:

  • Print HELLO WORLD
  • Print an integer
  • Arithmetic Operation(+,-,*,/)
  • Check Vowel or Not
  • Calculate Simple Interest
  • Calculate Compound Interest
  • Print Numbers(Using While loop)
  • Print numbers(Using do-While loop)
  • Print Even Numbers up to n
  • Print Odd Numbers up to n


Numbers:

  1. Add 2 Numbers by pointers
  2. Armstrong Numbers up to n
  3. Check Armstrong or not
  4. Check Prime or not
  5. Check Odd or Even
  6. Check Palindrome or not
  7. Count Number of Digits
  8. Convert Decimal to Binary
  9. Convert Number in Digits to Words
  10. Calculate No. of days passed in year
  11. Calculate Prime Factors
  12. Factorial
  13. Fibonacci Series
  14. Find Maximum among 3
  15. Find GCD and LCM
  16. Leap Year or Not
  17. Reverse of Number
  18. Roots Of Quadratic Eqn.
  19. Strong Numbers up to n
  20. Check Strong or not
  21. Sum of Digits
  22. Sum of First n numbers
  23. Swap 2 numbers
  24. Table of Numbers
Patterns:
  • Asterisk Program
  • Number Patterns
  • Alphabet Patterns
And many other programs using concepts like Arrays, Matrices, Area & Volume etc for practice you can visit http://www.cprogrambank.com/cprog though you will find the programs are for c programming language you can use it according to the language you are practicing.

So Guys HAPPY PROGRAMMING to you all.........

Thursday, January 07, 2016

Fitbit : COMPANY INTRODUCES A NEW WATCH


Fitbit: A new watch introduces by the technology company which get fit with every style and attitude. The retail price of this new smartwatch is 200$ as suggested. This watch is built with various features in it like tracking of daily steps, sleep, calorie burned and even your heartbeat and many other different activities.


For More information:

Visit: https://www.fitbit.com/in/blaze

ARITHMETIC OPERATION PROGRAM USING JAVASCRIPT AND HTML

ARITHMETIC OPERATIONS (+, -, /, *)

JavaScript Program

<!DOCTYPE html>

<html>
<head>
 <title>Arithmatic Operation +,-,*,/</title>
 <style type="text/css">
 #demo,#demo1,#demo2,#demo3{
  color: red;
 }
 </style>
 <script type="text/javascript">
  function myValue(){
  var a=document.getElementById('val').value;
  var b=document.getElementById('val1').value;
  var c=a * b;
  var d=a - b;
  var e= a / b;
  var f= parseInt(a) + parseInt(b);
 

  document.getElementById('demo').innerHTML=c;
  document.getElementById('demo1').innerHTML=d;
  document.getElementById('demo2').innerHTML=e;
  document.getElementById('demo3').innerHTML=f;
   
  }
  
 </script>
</head>
<body style="text-align: center;">
 <h1>Arithmatic Operation</h1>
 <h2>Enter The Values</h2>
 <input type="text" value="1st Number" id="val">
 <input type="text" value="2nd Number" id="val1">
 <input type="submit" onclick="myValue()">
 <h1>Multiplication = <span id="demo"></span></h1>
 <h1>Subtraction = <span id="demo1"></span></h1>
 <h1>Division = <span id="demo2"></span></h1>
 <h1>Addition = <span id="demo3"></span></h1>
</body>
</html>

NOTE: While Addition(+) parseInt function is used to make the value a real integer, otherwise it will concatenate the two strings. Because the value taken by document.getElementById('demo2').value always considers it as a string and not numbers.

OUTPUT:

Tuesday, January 05, 2016

JAVASCRIPT PROGRAM TO FIND THE LENGTH OF CHARACTER IN TEXT AREA

Finding the length of characters in text area using basic javascript and HTML.


Javascript Program

<!DOCTYPE html>
<html>
<head>
    <title>Length Of Character</title>
</head>
<script type="text/javascript">
    function len(){
        var result;
        var a=document.getElementById('myValue').value;
     
     

        if( a == 0){
            result="Please insert caharacter"

        }
        else{
             result=document.getElementById('demo').innerHTML=a.length;
        }
        document.getElementById('demo').innerHTML=result;
    }
</script>
<body>
<h1>Enter character</h1>
<textarea rows="4" cols="50" name="comment" id="myValue">
Enter text here...</textarea><br><br>

<input type="submit" onclick="len()">
<H2>CHARACTER LENGTH IS =<span id="demo" style="color:red;"></span></H2>

</body>
</html>

</body>
</html>

Note: It also considers space in counting for eg. if you insert value like JOHN MIKE it will show you result as 9 though it is only 8 words because it also considers space between words in counting.

OUTPUT

Monday, January 04, 2016

DOWNLOADING WHOLE WIKIPEDIA PAGE IN PDF FORMAT




We know that Wikipedia is a pool of information in which you can dig out as much as information you are looking out for.There are some information on Wikipedia you search just to go through that content but there are some information on Wikipedia which may sometime comes in need when you don't have internet and you just start thinking, remembering, scratching your head out and you come out with nothing. Students also search for many information for their high school projects and Wikipedia is like a lord Rama coming in their dream and helping out them to complete their projects. But if some time it may happen students searching for some information and they start doing their copy and paste process from Wikipedia and suddenly internet connections shuts down due to some reasons like server goes down. So as to avoid these kind of problems Wikipedia gives you a  freedom to download whole page content in PDF format so that one can get the information even if you are offline, lets go through how is that possible.

As you can see in above image of Wikipedia page there is option shows "Download as PDF" which is red rounded which you can find in the left side column of Wikipedia page after you search for any information.
After Clicking on that option it will take you to another page which will be like this


In the above image you can again see the red rounded link which shows "Download the file" click on that link and your browser will open PDF page as it shown in below image.


Now you can see red arrow which pointing towards the save icon click on that and your download will start.