Monday, 31 August 2015

Program to Subtract Two Numbers - Java Programing

class subtract
{
public static void main ()
{
int a=2;
int b=1;
int c=a-b;
system.out.println("Diffrence is "+c);
}main
}class

Program to Add Two Numbers - Java Programing

class addition
{
public static void main ()
{
int a=5;
int b=5;
int c=a+b;
system.out.println("Sum is"+c);
}main
}class

Wednesday, 7 January 2015

Turn Your XBox Into a PC or Laptop

(1) 
Via the cable adapter, attach your USB memory device and the USB cable into your Xbox console.
(2) 
Turn on your Xbox console. This will reformat your USB device and it will be recognized by the Xbox, displaying the device in the dashboard.
(3)
To install Linux into your Xbox, you need the Mechassault "savegame" image. Download this image from websites such as SourceForge.net.
(4) 

Attach the USB memory device into your PC.
(5) 

Transfer the Mechassault image to your USB device by clicking and dragging.
(6) 

Remove the USB device and reattach the device to your Xbox.
(7) 

The USB will reappear in the dashboard. Open the USB and view the contents. You will see these options--emergency Linux, remove Linux and install Linux.


(8) 
Select "Memory" and then select the USB device. Select the save game image "Install Linux" and then select "Copy," and finally select "Xbox hard disk." Repeat the same process with the other two options.
(9) 

Insert a copy of "Mechassault" into your Xbox console.
(10) 
Go into the Xbox dashboard and select "Emergency Linux." If done correctly, the Xbox will restart and a black screen with white letters will appear in place of the Xbox dashboard. Linux is booting.
(11) 
Use the telnet default address is 192.168.0.3 and log in with "root" as your username and "Xbox" as your password.
(12)
Type the command "xbox_tool-a" when you are logged in. This will display the hard disk key. Save this key as the hard disk is encrypted and can be used to do modifications or recover information.
(13) 
If you took out the Mechassault game, put it back in the Xbox. Select "Install Linux." After this, you do not have to use Mechassault again.
(14) 
Install the full version of Linux. Your best bet to do this is to burn your own copy on a DVD-R with files from the Ed's Debian website. Place the disc into your Xbox and boot from it. Type "su" to login as an administrator and "xbox" for a password when the virtual keyboard shows up. Type "XBOXLinuxInstaller" and complete the installation by following the onscreen instructions.

Sunday, 28 December 2014

Program to Check if a number is Prime or not

#include<stdio.h>
#include<conio.h>
void main()
{
int n,i=2,count=0;
printf("Enter the No.\n");
scanf("%d",&n);
while(i<=n/2)
{
if(n%i==0)
count++;
i++;
}
if(count==0)
printf("The No. is Prime");
else
printf("The No. is Not Prime");
getch();
}

Program to Add,Subtract,Multiply,Divide

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,add,sub,mul,div;
printf("Enter the Value of a & b\n");
scanf("%d%d",&a,&b);
add=a+b;
sub=a-b;
mul=a*b;
div=a/b;
printf("Addition=%d\n Subtraction=%d\n Multiplication=%d\n Division=%d\n",add,sub,mul,div);
getch();
}



Program to convert Kilometer to Meter

#include<stdio.h>
#include<conio.h>
void main()
{
int km,mtr;
printf("Enter the Value\n");
scanf("%d",&km);
mtr=km*1000;
printf("Converted Value is &d",mtr);
getch();
}

Output

Enter the Value
5
Converted Value is 5000

Program to Swap two No.'s

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,temp;
printf("Enter The Values\n");
scanf("%d%d",&a,&b);
temp=a;
a=b;
b=temp;
printf("Swaping of No. is %d%d",a,b);
getech();
}

Output
Enter The Values
1
2
Swaping of No. is 2 1

Friday, 26 December 2014

Program to Input a no. and Sum it

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,sum;
printf("Enter The No. \n");
scanf("%d%d",&a,&b);
sum=a+b;
printf("Sum of two no. is%d",sum);
getch();
}

Output

Enter The No.
2
3
Sum of two no. is 5

Friday, 28 November 2014

Migrate Your Old Pc to New Pc


  • Windows 7 has a great tool built-in called Windows Easy Transfer, that can grab your data from an old computer—even one running Windows XP—and transfer it to your new machine with an external drive. To set it up, plug in your external drive and hit the Start menu on your new machine. In the search box, type "Windows Easy Transfer" and click on the shortcut when it pops up.
  • If you're running Windows XP, you'll need to install the Windows Easy Transfer files to your external hard drive first. Hit Next at the first window, then hit "An External Hard Disk or USB Flash Drive". Then click "This Is My New Computer" and hit "No" at the next screen. Click "I Need to Install It Now" and pick your external hard disk when prompted. Windows will copy the necessary files, which should only take a minute.
  • When it's done, unplug it and plug it into your old computer. If you don't get an autorun prompt, head to My Computer and double-click on your external hard drive. From there, it'll ask you if you want to install Windows Easy Transfer on your Windows XP machine. After it does, it will scan your computer for data to transfer.
  • Select the users you want to copy over and hit Next. Save the data to your external drive or flash drive and wait for it to transfer (this might take awhile).
  • If your old computer is running Windows 7, you can skip all the above steps and just open Easy Transfer directly from the Start Menu's search box and picking "This Is My Old Computer". It will then perform the above steps and transfer your data to the external drive.
  • Once you've moved your user data from your old computer to the external drive, head back to your new computer and plug the external drive back in to your new computer. If you closed the Easy Transfer Window, open it back up and navigate through the steps again, this time picking "Yes" when it asks you if Windows Easy Transfer has already saved your files to an external drive.
  • Select your drive from the list and check the users you want to transfer over. Wait as it transfers all your data (again, this could take a few minutes). When it's done, your computer will restart, and you should see that all your files and settings are available on your new machine.
  • Note that this won't migrate any of your programs, just your settings and documents. It will, however, let you know what programs you had on your old computer so you can write down a quick list of the programs you'll want to reinstall

Monday, 7 April 2014

Add Related Posts Widget to Blogger/Blogspot

Here are the steps to  Add Related Posts Widget to Blogger/Blogspot...

STEP 1-
Go To Blogger Dashboard >> Template >>Edit HTML

STEP 2-
Press CTRL + F

STEP 3-
Now type the given code in the box.
</head>

STEP 4-
Paste this code ABOVE/BEFORE " </head> " Tag

 <!--Related Posts with thumbnails Scripts and Styles Start-->
<!-- remove --><b:if cond='data:blog.pageType == &quot;item&quot;'>
<style type='text/css'>
#related-posts{float:left;width:auto;}
#related-posts a{border-right: 1px dotted #eaeaea;}
#related-posts a:hover{background: #f2f2f2;}
#related-posts h2{margin-top: 10px;background:none;font:18px Oswald;padding:3px;color:#999999; text-transform:uppercase;}
#related-posts .related_img {margin:5px;border:4px solid #f2f2f2;width:100px;height:100px;transition:all 300ms ease-in-out;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;-o-transition:all 300ms ease-in-out;-ms-transition:all 300ms ease-in-out;}
#related-title {color:#222;text-align:center;padding: 0 10px;font-size:14px Oswald; line-height:16px;text-shadow:0 2px 2px #fff;height:28px;width:100px;}
#related-posts .related_img:hover{border:4px solid #E8E8E8;opacity:.7;filter:alpha(opacity=70);-moz-opacity:.7;-khtml-opacity:.7}</style>
<script type='text/javascript' src='http://helplogger.googlecode.com/svn/trunk/relatedposts.js' />
<!-- remove --></b:if>
<!--Related Posts with thumbnails Scripts and Styles End-->


NOTE :-
- to change the width and height of thumbnails, modify the 100px value in red
- to change the color and size of related posts titles, change the value in blue
- remove the line in violet if you want the related posts to be displayed in homepage too


STEP 5-
Now find the code given below (you might find it twice, stop at the second one)
<div class='post-footer'>

STEP 6-
Paste the given code

<!-- Related Posts with Thumbnails Code Start-->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<div id='related-posts'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast != &quot;true&quot;'>
</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=related_results_labels_thumbs&amp;max-results=5&quot;' type='text/javascript'/></b:if></b:loop>
<script type='text/javascript'>
var currentposturl=&quot;<data:post.url/>&quot;;
var maxresults=5;
var relatedpoststitle=&quot;<b>Related Posts:</b>&quot;;
removeRelatedDuplicates_thumbs();
printRelatedLabels_thumbs();
</script>
</div><div class='clear'/>
</b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'><b:if cond='data:post.isFirstPost'>
<a href='http://helplogger.blogspot.com'><img alt='Blogger Tricks' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDGXt7XeoilDDHYXhXxLoDx5CtO8QDn_9ekElA2XDP7ctcgNLlbDs7GShGcxS5aj2zlI_ZuUtJ7XYxb5Icbriia8HdYPE-jmPkCPQ5o1h32Mzw_cPeIpws5UWF0O329hiDvcsPSmJDMhrE/s1600/best+blogger+tips.png'/></a>
</b:if></b:if><!-- Related Posts with Thumbnails Code End-->


NOTE -
- change the 5 value from max-results=with the number of posts you want to be displayed
- if you want the related posts to be displayed on homepage too, then remove the lines in violet


STEP 7-
Save the template... 

Enjoy .... :)
And if u have any problem contact me through comment... 

Monday, 31 March 2014

Free Animation Software for PC

Here are the of free animation software for Windows and Mac
(1)
Anime Studio

Bring your imagination to life! Anime Studio is your complete animation program for creating 2D movies, cartoons, anime and cut out animations. Create your own desktop animated shorts in the style of South Park Studios©, Nickelodeon Animation Studios©, Cartoon Network Studios©, Disney Animation Studios© or use it to produce animations for film, video, commercials or streaming over the web.
Official Website :-http://anime.smithmicro.com/
Screenshots


(2)
FotoMorph

FotoMorph is a photo animation and a Flash banner rotation tool with a super-friendly user interface.Amaze your friends and family with unbelievable transformations! Morphing is an animation technique in which one image is gradually turned into another. FotoMorph lets you make incredible morphs in minutes! You've seen them in the movies and on TV, and now you can create them yourself. Turn a friend into a tiger. Watch your child grow into an adult. Unleash your imagination with the power of FotoMorph. FotoMorph is designed to create animations in real time. The rendering engine takes advantage of hardware acceleration, and the rendering speed easily goes up to several hundred FPS. The speed makes it possible to play final effects in real time. Using FotoMorph you can do everything a professional animator does to create amazing animations. Flash, Animated GIF, AVI, JPEG, and other formats are supported.
Official Website :-http://www.diphso.no/FotoMorph.html
Screenshots


(3)
Abrosoft FantaMorph Pro

Create morphing movies and animation effects from still images.Abrosoft FantaMorph Pro supports image formats including BMP, JPEG, TIFF, PNG, PSD, GIF, TGA, PCX and 32-bit formats with alpha. FantaMorph allows you to export to formats including image sequence, AVI, QuickTime, animated GIF, Flash, screen saver and standalone EXE. You can crop, rotate, flip and adjust source images with the built-in tools. Using hardware acceleration, it allows you to play final effects in real time without exporting to a file.
Official Website :-www.fantamorph.com
Screenshots



(4)
Aurora 3D Animation Maker

Aurora 3D Animation Maker will allow you to create beautiful and eye-catching 3D animations that will transform your text or logos into original and awesome looking creations! Using just a single timeline, you’ll be able to control all aspects of your animation, including its length, speed of playback, and much more!
Official Website :-http://www.presentation-3d.com/
Screenshots


(5)
Pivot Animator

Pivot Animator, previously known as Pivot Stickfigure Animatoris a simple software to create animations. Based on stickfigures, the software gives you the possibility to create an animation by moving the joints and nodes of the figures.There is no need to redraw your figures in each frames. The figure creator gives you the possibility to create any types of figures you want.

Official Website :-http://www.pivotanimator.net
Screenshots


Sunday, 30 March 2014

Tips for Safe and Strong Password

Password is the main and important part for your Data.If it is not save and strong your data will be leaked or hack by hackers...So make the password by the help given points to make your data safe and strong....

So the tips are as follows:-
1.Password should be at least eight characters long.
2.Password should not contain your user name, real name, or company name.
3.Password should not be similar to the previous password.
4.Password should be a group of Upper-case letters, Lower-case letters, Numbers and Symbols.

Free RSS Directories For Bloggers

Here are the list of some free RSS directories for bloggers to submit there website for getting instant and free traffic....

1
Blogtoplist
2
Bloglog
3
Technorati
4
Newsisfree
5
Syndic8
6
Moreover
7
FeedCat
8
Feedage
9
Plazoo
10
RssMountain
11
Rssmicro
12
Feeds4all

13
Rssbus
14
Feedsfarm
15
Feedplex
16
Balirss
17
Rssmob
18
Feedlisting
19
88tem
20
Rssfeeddirectory
21
BlogDigger
22
RssNetwork
23
URL Fan
24
ReadaBlog
25
Million RSS
26
GoldenRssFeed
27
Ice Rocket
28
Feed Agg
29
Feed See
30
Solar Warp
31
Feedgy
32
Blogtopsites

Sunday, 23 March 2014

Free Media Player for Windows Operating System

Here are some free media players for windows operating system.So the list is as follows....

1.Windows Media Player

Windows Media Player (abbreviated WMP) is a media player and media library application developed by Microsoft that is used for playing audio, video and viewing images on personal computers running the Microsoft Windows operating system, as well as on Pocket PC and Windows Mobile-based devices. Editions of Windows Media Player were also released for Mac OS,Mac OS X and Solaris but development of these has since been discontinued.
Official Website :- http://windows.microsoft.com/en-IN/windows/windows-media-player
ScreenShots


2.VLC Media Player

VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols...
To Download CLICK HERE
Official Website :- http://www.videolan.org/
ScreenShots

3.Real Player

RealPlayer has always enabled you to play RealAudio (*.ra) and RealMedia (*.ram) files. Download videos from thousands of Web sites with just one click.RealPlayer now comes with Cloud functionality. Move, Watch & Share Your Videos. Available for Windows, iPhone, iPad, Android, Roku & web browsers.
Official Website :- www.real.com/
ScreenShots

4.Winamp

Winamp is a media player for WindowsAndroid, and OS X developed by Justin Frankel and Dmitry Boldyrev by their company Nullsoft, which they later sold to AOL. Since version 2 it has been sold as freemium and supports extensibility with plug-ins and skins, and features music visualizationplaylist and a media library, supported by a large online community.
Official Website :-http://www.winamp.com/
Screenshots


5.Media Monkey

MediaMonkey (sometimes noted as MM) is a digital media player and media library application developed by Ventis Media Inc., for organizing and playing audio on Microsoft Windows operating systems. By using plugins, it can be extended to handle video and other media formats as well.
Official Website:-http://www.mediamonkey.com/
Screenshots

Speed Up Your PC and Internet Connection without any Software


1.Open RUN (Windows Key + R).



2.Type " temp% " and Press ENTER Key.
3.Then delete all the FOLDERS and FILES.
4.After that,Open RUN (Windows Key + R) again.



5.Type " prefetch " and Press ENTER Key.
6.Then delete all the FOLDERS and FILES.
7.After that RESTART your computer..

Enjoy....
If you have any problem please contact through comment....