oqads

 photo adv_zpsn5opiawq.gif

Sunday 29 January 2017

Some useful command promt (cmd ) tricks.

Some useful cmd tricks




Welcome to shortlearner.. today we will learn some small but very useful tricks , which are performed at cmd(command prompt).

                
  shut down your laptop after sometime  
If you want to shutdown your computer in a given time, you can do it easily after following this simple steps :

Step 1: Open cmd prompt .


Step 2:Shutdown –s  -t  3600
             (3600 seconds=1hour) ,This will shutdown your pc after 1 hour

 Step 3: But later you decide to abort it or cancel it then write
             Shutdown –a

    


You  also use to schedule a restart by using different parameter type shutdown help and this will list all the parameter

Type  Shutdown help

#  This command is used when you upload  videos at night  and make sure pc will shutdown after completing their work.


How to hide folder in computer.?

How to make EXE files.?

How to increase traffic on website.?

How to install BHIM app.?

                           Find  IP address of any website

you can find out IP address of any website by following this steps

 just enter  “nslookup” command along with the name of the website. For example  you can type “nslookup google.com” to find its IP address .



                                check your internet  connection

If you want to check your internet is currently worked or not , you can easily check this by using a single command,just follow this simple steps that are given below :

Step 1: Open cmd prompt .


step2:  write ping google.com

if there is reply then it means internet is working if not then your internet connection is off.




 how to copy a command in prompt command.


One of the basic problem with command prompt is cut and copy the command. We can’t cut or copy our command in cmd. But you can do copy or cut your command,After following steps that are given below :

   
 Step1:   Right click  on top of your command prompt
               Go to properties
               Edit option
               Click on quick edit mode.


Step 3: Then go to cmd mode and then when you are selecting the any line you simply select it by drag your mouse and press  control +c for copy line and paste it whenever you  want it.


Keep Learning


IF YOU HAVE ANY DOUBT OR QUERY ABOUT THIS POST , YOU JUST ASK YOUR QUERY IN COMMENT BOX, AND YOU CAN ASK ALSO QUERIES ON WHATSAPP. TYPE “MY QUERY” AND SEND US ON OUR WHATSAPP NUMBER +7415587271. 

SHARE IT, AND SUBSCRIBE US FOR NEW POST
 photo images 14_zpsaabtcc5x.jpg

click there

How to increase traffic on website.?

How to increase traffic on website.?



Welcome to shortlearner, today’s post is very helpful for those people who makes their blog on blogspot.in, but they are worried because their post is not visible on google.  So do not worry about this problem, your all problem is short out after reading this artical carefully.
So first of all we know about some basics like content base searching and SEO(search engine optimization)

Content based search

Basically Content based search means ,your post or artical are searched by  content of your artical,and shows on the  top of the browser screen.
suppose you have make posts like how to make blog, how to make package,how to make gif file etc . whenever user search  how to make blog  user can redirect on your blog post, without type complete URL of your blog.

So Basically  what happen when we make any blog using  blogspot.in, it is searched by typing its complete URL like 
<a href=” myinteresthing.blogspot.com”>myinteresthing.blogspot.com</a> 

so,whenever user wants to read any post of your blog. they have to type the complete URL and whos don’t know the URL are not able to open your blog,but you want that  your blog should be searched  throughout www(world wide web) so,the thing have to do is to add some meta tag code in your blog template and save it.In meta tag you have to provide some information and keywords on the basis of which search engine will search your content.

Search Engine Optimization

 keywords or lines wrote in meta tag should be write carefully to think about what query are mostly users will basically fire to search that particular content.

This technique is called search engine optimization in blog.

Now see how to do that:-
                                                                   
1) Firstly  take the backup of your template because when we done changes in template sometimes mistakes may occurred and template will not display.Backup option is available at  top-right  of blog.

2) Click on Template.


3)Click on edit html.



4)Now, below that
<b:include data=’blog’ name=’all-head-content’/> tag  
which in inside head tad write actual meta tag code.



Meta code is:-


Syntax:

<b:if> cond=’data:blog.url==”PASTE COMPLETE URL OF YOUR POST”’>
<meta content=’PAGE-DESCRIPTION’ name=’descrition’/>
<meta content=’PAGE-KEYWORDS’ name=’keywords’/>
</b:if>

Example:

<b:if> cond=’data:blog.url==”https://ankitmandliya.blogspot.in/2016/12/how to make jar file”’>
<meta content=’how to make  jar  file’ name=’description’/>
<meta content=’package in java,what is java package,java ma package kaise bnae,java package’ name=’keywords’/>

</b:if>

5)Now,Click on save template.

Now changes have done in template. Now go to google and fire the query and see your blog is searching on content basis without typing complete URL.Choose keywords with intelligency so your post get search easily.

Note: Sometime what happen we forget to take the backup of template and some error occurred in our blog and it does not get open in computer only opens in mobile and does not show template So,in that case not to worry.Just change the template  of your blog,and next time take backupJ

Keep LearningJ
Subscribe us

IF YOU HAVE ANY DOUBT OR QUERY ABOUT THIS POST, YOU JUST ASK  YOUR  QUERY  IN COMMENT BOX…
YOU CAN ALSO ASK  QUERIES ON WHATSAPP ,JUST TYPE “MY QUERY” <QUERY> AND SEND US ON OUR WHATSAPP NUMBER +917415587271    

 photo images 14_zpsaabtcc5x.jpg

click there

Thursday 26 January 2017

How to make package in java.?

HOW TO MAKE PACKAGE IN JAVA.?


Today we will learn how to make package in java, but before making java package , first of all we should know about what is java package ,and why it needs.?
Basically package are like folders which contain java class files.package are made when we want to use some set of code or values in another program.it decrease the size of program.when we make any porject we make package so the program become readable and usable.when we make package we can import it any program.


shortlearner.com



shortlearner.com



Syntax to create package:

package <package-name>;

NOTE:The package creation should be at starting of any program.

Example: Addition of two numbers.
Suppose we have two java files.First is taking the input from user and second is doing the addition of that numbers.Both are individual file so,we will join them using package.So,the advantage of package is that we can also make third class which done the subtraction of the same numbers used for addition.

In package main is create in one class and from that class we call other class by making object of that class.When we compile package file the the file which contains main() compile at last otherwise it will generate error.We we run package it is run through the name of class which contain main().

Code:
1) package is addition and the class which contain main and a object of second class is create and call add method and pass value of a and b.

package addition;
import java.util.Scanner;
class one
{
          public static void main(String args[])
          {
Scanner sc=new Scanner(System.in);
System.out.println("enter first no.");
int a=sc.nextInt();
System.out.println("enter second no.");
int b=sc.nextInt();
//object of another class is created which are in same package
two t=new two();
//calling of add method of another class
t.add(a,b);
}
}
         

 2) package is addition and which is called from main class

package addition;
class two
{
//this method is called from main class
public void add(int a,int b)
{
int c=a+b;
System.out.println("The addition of two no. is: "+c);
}
}


 HOW TO COMPILE  AND  RUN PACKAGE:

Note: Firstly went in the drive and folder where you have saved your jave file.Whether it is in inside bin and any other folder.
In my case my java files are inside e:\try so,on command prompt type:-first went inside drive by using drive name followed by colon and press enter  after that  cd space folder name.if you have one more folder inside that the do same cd space folder name.see below:-


Now we are in the folder where we have our java file.Lets compile our files.

Syntax:

javac  –d <path of folder where you want to create your package> <file-name.java>

Note:- d is used for destination of package.

Example: We have compile our both  files. two.java and one.java.one.java is coimpile after two.java because it contains main method.


Now we have run it,we run package by its main class name.

Syntax:

java <package-name>.<class-name>

Example:-



IF YOU HAVE ANY DOUBT OR QUERY ABOUT THIS POST, YOU JUST ASK  YOUR  QUERY  IN COMMENT BOX…
YOU CAN ALSO ASK  QUERIES ON WHATSAPP ,JUST TYPE “MY QUERY” <QUERY> AND SEND US ON OUR WHATSAPP NUMBER +917415587271
 photo images 14_zpsaabtcc5x.jpg

click there

Monday 23 January 2017

HOW TO MAKE TEXT TO SPEECH CONVERT SOFTWARE..?

HOW TO MAKE TEXT TO SPEECH SOFTWAR



Welcome back ,today we will learn how to make our own text to speech  convert software. So first of all we need to know the working process of software.

So basically this software can convert our text data into voice, its very easy to develop this software, and one more intresting thing is that in this software you don’t need to have any type of knowledge of any kind of programming languages.That means if you belongs to non-technical  fields ,you also can develop this software...



Step 1 :
In the first step, open your notepad


Step 2 :
Copy this code and paste it on to notepad.   

"Dim message, sapi
message=InputBox("ENTER YOUR TEXT  HERE","SHORTLEARNER SOFTWARE")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message "




HOW TO MAKE JAR FILE.?



HOW TO MAKE APP JUST LIKE WHATSAPP.?


Step 3:

Save this code with the extension of .vbs

Here I save this code in the name of ShortLearner.vbs, here .vbs is extension. and its compulsary, so dont forget to write extension, otherwise its shows errors.



Step 4 :
Your software is completly developed, just go to your location where you save it, open your software and paste some text data and hit Press on ok button...



IF YOU HAVE ANY DOUBT OR QUERY ABOUT THIS POST, YOU JUST ASK  YOUR  QUERY  IN COMMENT BOX…
YOU CAN ALSO ASK  QUERIES ON WHATSAPP ,JUST TYPE “MY QUERY” <QUERY> AND SEND US ON OUR WHATSAPP NUMBER +917415587271
 photo images 14_zpsaabtcc5x.jpg

click there

Monday 9 January 2017

How to hide a folder in computer system.?

How to hide a  folder/file  from  other  person?



We all have our important and private data like our projects ,photos,videos, thesis and some more personal details which are stored in our computer or laptop, but we all have hesitation to gives our laptop to another one. For maintaining the security and privacy of our data we hide the folder or file in our system..There are many  applications and  paid software available in the market for  hiding  folder and files but all have their specific means. here we will know about how to hide folder/file through command  prompt. This provide better security when we are giving  are laptop to other  person and when our laptop has stolen and we don’t want that our some important data/images ,audio,video whatever are not accessed by another  person.It is not more complicated.Commands  for hide  and  unhide  a file/folder  is easy  rememberable.  


How to know forgot wi-fi password..?? 

how to make bootable pendrive using command prompt.?

Easy Way to HAKE wifi password, without coding a single line..?

How to make FREE BLOG on BLOGGER.?


shortlearner.com



Syntax to hide file/folder:

Firstly move in drive where you have your file/folder.In my case its d: drive

Syntax:  Attrib <space> <drive_name><folder_name>  +h  +r  +s  +a <press- enter>


Example: Attrib d:hide +h +r +s +a

“hide is a folder in d: drive”



Syntax to unhide/ file/folder :

Firstly move in drive where you have your file/folder.In my case its d: drive

Syntax:  Attrib <space> <drive_name><folder_name>  -h  -r  -s  -a <press- enter>


Example: Attrib d:hide -h -r -s -a

“hide is a folder in d: drive”


To hide a  particular file inside a folder,images inside a folder


Just give their path in folder  name using forward slash(\)        

Example:”file allow.txt inside hide folder”




IF YOU HAVE ANY DOUBT OR QUERY ABOUT THIS POST, YOU JUST ASK  YOUR  QUERY  IN COMMENT BOX…
YOU CAN ALSO ASK  QUERIES ON WHATSAPP ,JUST TYPE “MY QUERY” <QUERY> AND SEND US ON OUR WHATSAPP NUMBER +917415587271

# keep visiting our block for more interesting post.
# Keep learning.. 
 photo images 14_zpsaabtcc5x.jpg

click there

want to online earning click me