Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,502 members, 7,819,823 topics. Date: Tuesday, 07 May 2024 at 01:11 AM

TrillionBrains's Posts

Nairaland Forum / TrillionBrains's Profile / TrillionBrains's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (of 13 pages)

Computers / Utterly Mind-boggling Google Tricks You Never Knew About by TrillionBrains(m): 2:38am On Dec 30, 2016
1. Tell Google to do a Barrel Roll:
It is quite amazing and spectacularly to tell a Google search to turn around and sure it obeys and does exactly what you tells it. That's the situation here, it works on definitely any browser you try it on. A handy tool to show off you smartness.

2. Google Timer:
Type in ‘five minute timer’ and Google will present you with just that. In fact, you can request a timer of any length at all. What a cool feature!

3. Google Books Ngram Viewer:
Google Ngram allows you to search through over 5 million books printed since 1500 to see how frequently they have been mentioned through the centuries. This is very informative!

4. Spelling out Long Numbers:
Some numbers are so long that it can be hard to figure out exactly how they are to be said in English. Fortunately, Google allows you to find out simply by typing the number followed directly by =English.

5. Manual Writing:
For those learning peculiar writing systems, like the Japanese, Google Translate allows you to write by hand the symbol which it will then translate for you.

6. Google Fonts:
If you are looking for a fun and stylish font to use, Google Fonts offers many that you can download for free.

7. Google Scholar:
Google Scholar is a database designed for searching academic articles and books that have been peer-reviewed. So, if you need to look for something from a particularly refined subject, this is the best place for it.

8. Google Trends:
Google Trends allows you to see what people around the world are most interested in on any given day, or over certain periods of time.

9. Animal Sounds:
Whether you type in ‘Animal Sounds’ or just the name of a certain animal, Google has stored a vast number of animals sounds you can hear at the drop of a hat. This is great fun when you want to play with infants.

10. Zerg Rush:
If you actually enter the above command in your search, little-like O's will pup-out, flying all over your browser, tends to clean up the whole search results then at last forms the letter "". Quite a blissful encounter.

11. "the answer to life the universe and everything":
when entered in Google, it displays a certain calculator displaying the number 42. Well, it is yet to be known what this number stands for.

12. Find chuck norris:
This displays the statement below;
Google won't search for Chuck Norris because it knows you don't find Chuck Norris, he finds you. Your search - Chuck Norris - did not match any documents. Suggestions: Run, before he finds you.
So, just as Google suggested, run before it finds you. To where!
http://trillionclues..com.ng/2016/12/great-google-tricks-i-never-even-knew.html
Science/Technology / Re: How To Say "Hello World" In Different Programming Languages by TrillionBrains(m): 3:37pm On Dec 22, 2016
Html is not a programming language rather a mark-up language, DIFFERENCE @Davidhero
[url]trillionclues..com[/url]
Science/Technology / How To Say "Hello World" In Different Programming Languages by TrillionBrains(m): 2:41pm On Dec 22, 2016
20 Ways To Say "Hello World" In Programming
No doubt printing ‘Hello World’ is the most famous program. It is the first example in nearly every programming language for every programmer. Traditionally, it’s the first program developers use to test systems. For programmers, seeing the two words on the screen means their code can compile, load, run and they can see the output.
In this article, Let’s talk about how to write HELLO WORLD program in 25 different programming languages. You’ll also know the difficulty and simplicity of these programming languages after looking at their syntax.

1. C PROGRAMMING

#include
int main(void)
{
puts(“Hello, world!”);
}


2. C++ PROGRAMMING

#include
int main()
{
std::cout << “Hello, world!”;
return 0;
}


3. C# PROGRAMMING

using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine(“Hello, world!”);
}
}


4. JAVA PROGRAMMING

import javax.swing.JFrame; //Importing class JFrame
import javax.swing.JLabel; //Importing class JLabel
public class HelloWorld {
public static void main(String[] args) {
JFrame frame = new JFrame(); //Creating frame
frame.setTitle(“Hi!”); //Setting title frame
frame.add(new JLabel(“Hello, world!”));//Adding text to frame
frame.pack(); //Setting size to smallest
frame.setLocationRelativeTo(null); //Centering frame
frame.setVisible(true); //Showing frame
}
}


5. JavaScript

document.write(‘Hello, world!’);


6. Python PROGRAMMING

print “Hello, world!”


7. Pascal Codes

program HelloWorld;
begin
WriteLn(‘Hello, world!’);
end.


8. Ruby

puts “Hello, world!”


9. Visual Basic .NET

Module Module1
Sub Main()
Console.WriteLine(“Hello, world!”)
End Sub
End Module


10. MatLab

disp (‘Hello, world!’)


11. Swift

println(“Hello, world!”)


12. jQuery

$(“body”).append(“Hello world!”);


13. Bash

echo “Hello World”


14. Perl 5

print “Hello, world!”;

15. Basic
PRINT “Hello, world!”


16. Objective-C

#import
#import
int main(void)
{
NSLog(@”Hello, world!”);
return 0;
}


17. XSLT

Hello World


18. CoffeeScript

console.log ‘Hello, world!’


19. Logo

print [Hello, world!]


20. VBScript

MsgBox “Hello, World!”
http://trillionclues..com.ng/2016/12/how-to-say-hello-world-in-different.html
Programming / How To Say "Hello World" In Different Programming Languages by TrillionBrains(m): 2:29pm On Dec 22, 2016
20 Ways To Say "Hello World" In Programming
No doubt printing ‘Hello World’ is the most famous program. It is the first example in nearly every programming language for every programmer. Traditionally, it’s the first program developers use to test systems. For programmers, seeing the two words on the screen means their code can compile, load, run and they can see the output.
In this article, Let’s talk about how to write HELLO WORLD program in 25 different programming languages. You’ll also know the difficulty and simplicity of these programming languages after looking at their syntax.

1. C PROGRAMMING

#include
int main(void)
{
puts(“Hello, world!”);
}


2. C++ PROGRAMMING

#include
int main()
{
std::cout << “Hello, world!”;
return 0;
}


3. C# PROGRAMMING

using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine(“Hello, world!”);
}
}


4. JAVA PROGRAMMING

import javax.swing.JFrame; //Importing class JFrame
import javax.swing.JLabel; //Importing class JLabel
public class HelloWorld {
public static void main(String[] args) {
JFrame frame = new JFrame(); //Creating frame
frame.setTitle(“Hi!”); //Setting title frame
frame.add(new JLabel(“Hello, world!”));//Adding text to frame
frame.pack(); //Setting size to smallest
frame.setLocationRelativeTo(null); //Centering frame
frame.setVisible(true); //Showing frame
}
}


5. JavaScript

document.write(‘Hello, world!’);


6. Python PROGRAMMING

print “Hello, world!”


7. Pascal Codes

program HelloWorld;
begin
WriteLn(‘Hello, world!’);
end.


8. Ruby

puts “Hello, world!”


9. Visual Basic .NET

Module Module1
Sub Main()
Console.WriteLine(“Hello, world!”)
End Sub
End Module


10. MatLab

disp (‘Hello, world!’)


11. Swift

println(“Hello, world!”)


12. jQuery

$(“body”).append(“Hello world!”);


13. Bash

echo “Hello World”


14. Perl 5

print “Hello, world!”;

15. Basic
PRINT “Hello, world!”


16. Objective-C

#import
#import
int main(void)
{
NSLog(@”Hello, world!”);
return 0;
}


17. XSLT

Hello World


18. CoffeeScript

console.log ‘Hello, world!’


19. Logo

print [Hello, world!]


20. VBScript

MsgBox “Hello, World!”
http://trillionclues..com.ng/2016/12/how-to-say-hello-world-in-different.html
Phones / How To Download Specific Parts Of A Youtube Video by TrillionBrains(m): 1:37pm On Dec 22, 2016
There are many ways to download youtube videos, but in case of a scenario where you want to download portion of a youtube video and not the full length video, here is a simple tip while helps you avoid downloading the whole video (like a speech, new cover etc) and get only part of the online video in any format you need.

Clip Converter
Clip Converter is a very cool online video conversion tool, which lets you to convert nearly any audio or video from a URL (YouTube, Vimeo, Dailymotion, MySpace, Veoh…) to any known popular media formats.

How to use Clipconverter.cc
1. Copy the Youtube Video Link
2. Visit Clipconverter.cc Website.Website
3. Paste the copied video link into the clipconverter Video URL field and click on continue button.
4. Then select the video quality and conversion format either in audio format (or) video format such as Mp4, 3gp, AVI, MOV etc.
5. Once video format is selected, you will find conversion option listed below, un-check the “Start of video” and enter the starting time from were you want the video to be downloaded and also specify the end time by un-checking “End of video”.
6. Now click on “Start” button to begin conversion process.
7. Wait for few seconds for conversion.
Once conversion processed, click download to save converted youtube video parts into computer.

http://trillionclues..com.ng/2016/12/how-to-download-specific-parts-of.html
Science/Technology / How To Download Specific Parts Of A Youtube Video by TrillionBrains(m): 1:30pm On Dec 22, 2016
There are many ways to download youtube videos, but in case of a scenario where you want to download portion of a youtube video and not the full length video, here is a simple tip while helps you avoid downloading the whole video (like a speech, new cover etc) and get only part of the online video in any format you need.

Clip Converter
Clip Converter is a very cool online video conversion tool, which lets you to convert nearly any audio or video from a URL (YouTube, Vimeo, Dailymotion, MySpace, Veoh…) to any known popular media formats.

How to use Clipconverter.cc
1. Copy the Youtube Video Link
2. Visit Clipconverter.cc Website.Website
3. Paste the copied video link into the clipconverter Video URL field and click on continue button.
4. Then select the video quality and conversion format either in audio format (or) video format such as Mp4, 3gp, AVI, MOV etc.
5. Once video format is selected, you will find conversion option listed below, un-check the “Start of video” and enter the starting time from were you want the video to be downloaded and also specify the end time by un-checking “End of video”.
6. Now click on “Start” button to begin conversion process.
7. Wait for few seconds for conversion.
Once conversion processed, click download to save converted youtube video parts into computer.

http://trillionclues..com.ng/2016/12/how-to-download-specific-parts-of.html
Computers / How To Download Specific Parts Of A Youtube Video by TrillionBrains(m): 1:22pm On Dec 22, 2016
There are many ways to download youtube videos, but in case of a scenario where you want to download portion of a youtube video and not the full length video, here is a simple tip while helps you avoid downloading the whole video (like a speech, new cover etc) and get only part of the online video in any format you need.

Clip Converter
Clip Converter is a very cool online video conversion tool, which lets you to convert nearly any audio or video from a URL (YouTube, Vimeo, Dailymotion, MySpace, Veoh…) to any known popular media formats.

How to use Clipconverter.cc
1. Copy the Youtube Video Link
2. Visit Clipconverter.cc Website.Website
3. Paste the copied video link into the clipconverter Video URL field and click on continue button.
4. Then select the video quality and conversion format either in audio format (or) video format such as Mp4, 3gp, AVI, MOV etc.
5. Once video format is selected, you will find conversion option listed below, un-check the “Start of video” and enter the starting time from were you want the video to be downloaded and also specify the end time by un-checking “End of video”.
6. Now click on “Start” button to begin conversion process.
7. Wait for few seconds for conversion.
Once conversion processed, click download to save converted youtube video parts into computer.

http://trillionclues..com.ng/2016/12/how-to-download-specific-parts-of.html
Science/Technology / Re: These 13 Actions Can Harm Or Damage Your Computer System by TrillionBrains(m): 3:41pm On Dec 15, 2016
Sure @feodan, this website is amazing @trillionclues..com

1 Like

Science/Technology / These 13 Actions Can Harm Or Damage Your Computer System by TrillionBrains(m): 3:39pm On Dec 15, 2016
In the last 20 years, computers have become a necessity. People can spend hours in front of one at work, only to come back home and use their personal one, for which they've paid a handsome sum. Sadly, many people unknowingly engage in actions that are harmful to their computer. We’re all guilty of one or two of these actions, so I’ve compiled a list of the 16 most common things we do incorrectly, and how to do them without needing to take our computer in for repairs.

1. Blocking the Computer’s Vents

Trying to save space can often lead you to placing your computer close against the wall, desk, sofa, curtains, etc. The vents are vital in keeping the computer cool, and anything that blocks them may cause it to overheat. High temperatures damage the internal circuitry, so keeping the computer nice and cool by not blocking the vents should be a priority.

2. Deleting System Files

When we use our computer, we sometimes clog the hard drive with pictures, movies, music, and other junk. When the hard drive is full, it works harder, making your computer sluggish. The problem arises when inexperienced users try to clear up space by deleting files they don’t know of, and more often than not – they delete important system files. Deleting these files can render the computer inoperable, or prevent certain features from functioning (example: deleting system files related to the sound drive can disable your ability to listen to music, etc.) Don’t delete any files ending with.SYS,.DLL, or.EXE, in particular from these directories: Program Files, System32, Windows, Users.

3. Cleaning the Screen with Liquids

When you want to clean your computer screen, you probably use a wet wipe or some basic cleaning detergent, but this may actually damage it. Any type of liquid can cause corrosion if it gets into the screen, and detergents (even natural ones) may damage the special coating on the screen. The best way to clean a computer screen is by using a dry microfiber cloth, or the same kind of cloth you use to clean your eyeglasses.

4. Pushing the CD/DVD Tray to Close it

Even I do this from time to time, instead of pushing the open/close button on the drive. You may think that these actions are the same, but when you apply force to the drive, you can break the opening and closing mechanism. So next time you’re closing the drive, use the button.

5. Not Restarting After Installing New Software

When you install a new piece of software onto the computer, some may ask you to restart it. You may feel that it’s a waste of time, but these requests are not mere whims of developers. Some applications need to start up with the computer for them to function properly, so using them without the initial restart can result in them not working properly (or not at all). Even if you don’t have the patience for it, make it a habit of restarting your computer when prompted to.

6. Letting Pets Get Too Close to the Computer

If you’re a pet owner, you probably noticed that your pets like to use your computer as a pillow. Who can blame them? It’s nice and warm. You may find it adorable, but it’s actually very bad for your computer. Fur finds its way into the computer and can block the vents, or jam internal fans, causing the computer to overheat. So keep your furry friends away from your computer, and have it cleaned at least once a year.

7. Installing Programs Automatically

You may not like to read the information in the various windows during a program installation, and many programs will offer to “save you the effort” and automatically install themselves. The problem arises when these programs install add-ons like unwanted toolbars on your computer, which will, at best slow it down, and at worst steal your information. Next time you install anything, take a moment to read what’s going on instead of just clicking “OK”.

8. Opening the Computer Case When it’s Still Plugged In

It is recommended that you clean your computer every few months, clearing dust, fur, etc. from the case. Some of us like to do it ourselves, but sometimes forget to unplug the computer from the power socket. While you may think that when the computer is off it’s safe to touch the insides, it is not. There still is a current running inside, and touching any electrified part may short-circuit the computer and damage it, or worse – electrocute you.

9. Putting Magnets on or near your Computer

Regular hard drives use a magnetic system to store data. Unshielded cables can experience magnetic interference, resulting in loss or corruption of data. Older CRT computer screens (not the LCD or LED kind) are also very susceptible to magnetic interference. What all that means is that magnets are bad for computers, so keep them away from each other.

10. Exposing the Computer to Heat

Exposing your computer to direct heat sources such as sunlight or heaters can cause severe damage. Electronic devices such as computers, produce heat, so adding more heat can cause plastic parts to melt, as well as solder. So make sure that you keep your computer nice and cool.
It is recommended that you clean your computer every few months, clearing dust, fur, etc. from the case. Some of us like to do it ourselves, but sometimes forget to unplug the computer from the power socket. While you may think that when the computer is off it’s safe to touch the insides, it is not. There still is a current running inside, and touching any electrified part may short-circuit the computer and damage it, or worse – electrocute you.

11. Hitting the Case

If you hear strange noises coming from inside the computer case, when the computer behaves sluggishly or when it stops reacting, many people feel that a good thump will fix the problem. Computers are full of delicate parts, and hitting them can cause these parts to become loose, cables to disconnect, and even break important parts. Next time you feel like hitting your computer, take a breath, switch it off, and let it rest for a minute before starting it up. If you hear strange noises, it can mean that something has gotten loose inside, so don’t wait and take it to a technician for a checkup.

12. Not Logging out of Your E-mail When You’re Done
Once you’re done with your e-mails, you should log out from the service, even in a safe place like your office or home. If you don’t log off, you risk having a stranger access your account, exposing all of your personal information. If you need another reason, remember that you can reset your passwords via your e-mail account, so someone with access to it can access your other accounts.

13. Using Force when Connecting a USB Device
USB connections are great, they make connecting devices to your computer easy, using one type of connection. We use them for flash drives, to charge smartphones, connect our keyboard and mouse, etc. The shape of the USB can sometimes be a source of frustration when trying to connect it the wrong way. Even if you tried 2-3 times unsuccessfully, don’t jam it in by force – doing so can break the connector in your computer, and replacing it can cost a pretty penny.
http://trillionclues..com.ng/2016/12/these-13-actions-can-harm-or-damage.html

1 Like

Phones / Re: These 13 Actions Can Harm Or Damage Your Computer System by TrillionBrains(m): 3:38pm On Dec 15, 2016
Tnx @Obinna, checkout [url]trillionclues.[/url]
Computers / Re: 5 Of The Best Free Antivirus Software You Can Rely On by TrillionBrains(m): 3:37pm On Dec 15, 2016
Sure @Abdulaz, but to me it feels like Avira is much more Ok. Well don't forget to checkout more [url]trillionclues.[/url]
Phones / These 13 Actions Can Harm Or Damage Your Computer System by TrillionBrains(m): 2:17pm On Dec 15, 2016
In the last 20 years, computers have become a necessity. People can spend hours in front of one at work, only to come back home and use their personal one, for which they've paid a handsome sum. Sadly, many people unknowingly engage in actions that are harmful to their computer. We’re all guilty of one or two of these actions, so I’ve compiled a list of the 16 most common things we do incorrectly, and how to do them without needing to take our computer in for repairs.

1. Blocking the Computer’s Vents

Trying to save space can often lead you to placing your computer close against the wall, desk, sofa, curtains, etc. The vents are vital in keeping the computer cool, and anything that blocks them may cause it to overheat. High temperatures damage the internal circuitry, so keeping the computer nice and cool by not blocking the vents should be a priority.

2. Deleting System Files

When we use our computer, we sometimes clog the hard drive with pictures, movies, music, and other junk. When the hard drive is full, it works harder, making your computer sluggish. The problem arises when inexperienced users try to clear up space by deleting files they don’t know of, and more often than not – they delete important system files. Deleting these files can render the computer inoperable, or prevent certain features from functioning (example: deleting system files related to the sound drive can disable your ability to listen to music, etc.) Don’t delete any files ending with.SYS,.DLL, or.EXE, in particular from these directories: Program Files, System32, Windows, Users.

3. Cleaning the Screen with Liquids

When you want to clean your computer screen, you probably use a wet wipe or some basic cleaning detergent, but this may actually damage it. Any type of liquid can cause corrosion if it gets into the screen, and detergents (even natural ones) may damage the special coating on the screen. The best way to clean a computer screen is by using a dry microfiber cloth, or the same kind of cloth you use to clean your eyeglasses.

4. Pushing the CD/DVD Tray to Close it

Even I do this from time to time, instead of pushing the open/close button on the drive. You may think that these actions are the same, but when you apply force to the drive, you can break the opening and closing mechanism. So next time you’re closing the drive, use the button.

5. Not Restarting After Installing New Software

When you install a new piece of software onto the computer, some may ask you to restart it. You may feel that it’s a waste of time, but these requests are not mere whims of developers. Some applications need to start up with the computer for them to function properly, so using them without the initial restart can result in them not working properly (or not at all). Even if you don’t have the patience for it, make it a habit of restarting your computer when prompted to.

6. Letting Pets Get Too Close to the Computer

If you’re a pet owner, you probably noticed that your pets like to use your computer as a pillow. Who can blame them? It’s nice and warm. You may find it adorable, but it’s actually very bad for your computer. Fur finds its way into the computer and can block the vents, or jam internal fans, causing the computer to overheat. So keep your furry friends away from your computer, and have it cleaned at least once a year.

7. Installing Programs Automatically

You may not like to read the information in the various windows during a program installation, and many programs will offer to “save you the effort” and automatically install themselves. The problem arises when these programs install add-ons like unwanted toolbars on your computer, which will, at best slow it down, and at worst steal your information. Next time you install anything, take a moment to read what’s going on instead of just clicking “OK”.

8. Opening the Computer Case When it’s Still Plugged In

It is recommended that you clean your computer every few months, clearing dust, fur, etc. from the case. Some of us like to do it ourselves, but sometimes forget to unplug the computer from the power socket. While you may think that when the computer is off it’s safe to touch the insides, it is not. There still is a current running inside, and touching any electrified part may short-circuit the computer and damage it, or worse – electrocute you.

9. Putting Magnets on or near your Computer

Regular hard drives use a magnetic system to store data. Unshielded cables can experience magnetic interference, resulting in loss or corruption of data. Older CRT computer screens (not the LCD or LED kind) are also very susceptible to magnetic interference. What all that means is that magnets are bad for computers, so keep them away from each other.

10. Exposing the Computer to Heat

Exposing your computer to direct heat sources such as sunlight or heaters can cause severe damage. Electronic devices such as computers, produce heat, so adding more heat can cause plastic parts to melt, as well as solder. So make sure that you keep your computer nice and cool.
It is recommended that you clean your computer every few months, clearing dust, fur, etc. from the case. Some of us like to do it ourselves, but sometimes forget to unplug the computer from the power socket. While you may think that when the computer is off it’s safe to touch the insides, it is not. There still is a current running inside, and touching any electrified part may short-circuit the computer and damage it, or worse – electrocute you.

11. Hitting the Case

If you hear strange noises coming from inside the computer case, when the computer behaves sluggishly or when it stops reacting, many people feel that a good thump will fix the problem. Computers are full of delicate parts, and hitting them can cause these parts to become loose, cables to disconnect, and even break important parts. Next time you feel like hitting your computer, take a breath, switch it off, and let it rest for a minute before starting it up. If you hear strange noises, it can mean that something has gotten loose inside, so don’t wait and take it to a technician for a checkup.

12. Not Logging out of Your E-mail When You’re Done
Once you’re done with your e-mails, you should log out from the service, even in a safe place like your office or home. If you don’t log off, you risk having a stranger access your account, exposing all of your personal information. If you need another reason, remember that you can reset your passwords via your e-mail account, so someone with access to it can access your other accounts.

13. Using Force when Connecting a USB Device
USB connections are great, they make connecting devices to your computer easy, using one type of connection. We use them for flash drives, to charge smartphones, connect our keyboard and mouse, etc. The shape of the USB can sometimes be a source of frustration when trying to connect it the wrong way. Even if you tried 2-3 times unsuccessfully, don’t jam it in by force – doing so can break the connector in your computer, and replacing it can cost a pretty penny.
http://trillionclues..com.ng/2016/12/these-13-actions-can-harm-or-damage.html
Computers / These 13 Actions Can Harm Or Damage Your Computer System by TrillionBrains(m): 1:55pm On Dec 15, 2016
In the last 20 years, computers have become a necessity. People can spend hours in front of one at work, only to come back home and use their personal one, for which they've paid a handsome sum. Sadly, many people unknowingly engage in actions that are harmful to their computer. We’re all guilty of one or two of these actions, so I’ve compiled a list of the 16 most common things we do incorrectly, and how to do them without needing to take our computer in for repairs.

1. Blocking the Computer’s Vents

Trying to save space can often lead you to placing your computer close against the wall, desk, sofa, curtains, etc. The vents are vital in keeping the computer cool, and anything that blocks them may cause it to overheat. High temperatures damage the internal circuitry, so keeping the computer nice and cool by not blocking the vents should be a priority.

2. Deleting System Files

When we use our computer, we sometimes clog the hard drive with pictures, movies, music, and other junk. When the hard drive is full, it works harder, making your computer sluggish. The problem arises when inexperienced users try to clear up space by deleting files they don’t know of, and more often than not – they delete important system files. Deleting these files can render the computer inoperable, or prevent certain features from functioning (example: deleting system files related to the sound drive can disable your ability to listen to music, etc.) Don’t delete any files ending with.SYS,.DLL, or.EXE, in particular from these directories: Program Files, System32, Windows, Users.

3. Cleaning the Screen with Liquids

When you want to clean your computer screen, you probably use a wet wipe or some basic cleaning detergent, but this may actually damage it. Any type of liquid can cause corrosion if it gets into the screen, and detergents (even natural ones) may damage the special coating on the screen. The best way to clean a computer screen is by using a dry microfiber cloth, or the same kind of cloth you use to clean your eyeglasses.

4. Pushing the CD/DVD Tray to Close it

Even I do this from time to time, instead of pushing the open/close button on the drive. You may think that these actions are the same, but when you apply force to the drive, you can break the opening and closing mechanism. So next time you’re closing the drive, use the button.

5. Not Restarting After Installing New Software

When you install a new piece of software onto the computer, some may ask you to restart it. You may feel that it’s a waste of time, but these requests are not mere whims of developers. Some applications need to start up with the computer for them to function properly, so using them without the initial restart can result in them not working properly (or not at all). Even if you don’t have the patience for it, make it a habit of restarting your computer when prompted to.

6. Letting Pets Get Too Close to the Computer

If you’re a pet owner, you probably noticed that your pets like to use your computer as a pillow. Who can blame them? It’s nice and warm. You may find it adorable, but it’s actually very bad for your computer. Fur finds its way into the computer and can block the vents, or jam internal fans, causing the computer to overheat. So keep your furry friends away from your computer, and have it cleaned at least once a year.

7. Installing Programs Automatically

You may not like to read the information in the various windows during a program installation, and many programs will offer to “save you the effort” and automatically install themselves. The problem arises when these programs install add-ons like unwanted toolbars on your computer, which will, at best slow it down, and at worst steal your information. Next time you install anything, take a moment to read what’s going on instead of just clicking “OK”.

8. Opening the Computer Case When it’s Still Plugged In

It is recommended that you clean your computer every few months, clearing dust, fur, etc. from the case. Some of us like to do it ourselves, but sometimes forget to unplug the computer from the power socket. While you may think that when the computer is off it’s safe to touch the insides, it is not. There still is a current running inside, and touching any electrified part may short-circuit the computer and damage it, or worse – electrocute you.

9. Putting Magnets on or near your Computer

Regular hard drives use a magnetic system to store data. Unshielded cables can experience magnetic interference, resulting in loss or corruption of data. Older CRT computer screens (not the LCD or LED kind) are also very susceptible to magnetic interference. What all that means is that magnets are bad for computers, so keep them away from each other.

10. Exposing the Computer to Heat

Exposing your computer to direct heat sources such as sunlight or heaters can cause severe damage. Electronic devices such as computers, produce heat, so adding more heat can cause plastic parts to melt, as well as solder. So make sure that you keep your computer nice and cool.
It is recommended that you clean your computer every few months, clearing dust, fur, etc. from the case. Some of us like to do it ourselves, but sometimes forget to unplug the computer from the power socket. While you may think that when the computer is off it’s safe to touch the insides, it is not. There still is a current running inside, and touching any electrified part may short-circuit the computer and damage it, or worse – electrocute you.

11. Hitting the Case

If you hear strange noises coming from inside the computer case, when the computer behaves sluggishly or when it stops reacting, many people feel that a good thump will fix the problem. Computers are full of delicate parts, and hitting them can cause these parts to become loose, cables to disconnect, and even break important parts. Next time you feel like hitting your computer, take a breath, switch it off, and let it rest for a minute before starting it up. If you hear strange noises, it can mean that something has gotten loose inside, so don’t wait and take it to a technician for a checkup.

12. Not Logging out of Your E-mail When You’re Done
Once you’re done with your e-mails, you should log out from the service, even in a safe place like your office or home. If you don’t log off, you risk having a stranger access your account, exposing all of your personal information. If you need another reason, remember that you can reset your passwords via your e-mail account, so someone with access to it can access your other accounts.

13. Using Force when Connecting a USB Device
USB connections are great, they make connecting devices to your computer easy, using one type of connection. We use them for flash drives, to charge smartphones, connect our keyboard and mouse, etc. The shape of the USB can sometimes be a source of frustration when trying to connect it the wrong way. Even if you tried 2-3 times unsuccessfully, don’t jam it in by force – doing so can break the connector in your computer, and replacing it can cost a pretty penny.
http://trillionclues..com.ng/2016/12/these-13-actions-can-harm-or-damage.html
Computers / 5 Of The Best Free Antivirus Software You Can Rely On by TrillionBrains(m): 1:25pm On Dec 15, 2016
To begin with it is important to state that there is no best antivirus software out there. Why is this? Well, any product that you choose will act differently against various viruses since they all have technologically different AV (Antivirus) engines and components. While one antivirus software might have a higher detection rate, another might have better malicious URL blocking or virtualization techniques, while another might have less of an impact on system performance and so on and so forth.
1. Qihoo 360 Total Security
Advantages:
• Light on resources, extremely fast scanning times and pre-configuration protection modes.
• Easy to install and comes with no adware.
• Very fast updates/fixes and excellent customer service with immediate responses.
• Great detection rates, with very high zero-day protection.
• Includes Glasswire Firewall, malicious URL protection, network threat blocking, and windows patch-up components.
Disadvantages:
• Might encounter the odd false positive.
• Speedup and clean-up tools might not be for everyone.
This antivirus software is compatible with Windows XP-10 and Mac OSX and can be downloaded here. It will only take up 41.6 MB of your memory.
2. Avast Free Antivirus
Advantages:

• Very light on the system with a modern and clean UI (User Interface).
• The only antivirus software that comes complete with a fully customizable installer.
• Top notch detection capability.
• State of the art malicious URL blocking, network protection, integrated password manager, and outdated software checking. Furthermore, it comes with a rescue disk.

Disadvantages:

• Bloated default setup and has some ads and pop ups.
• You have to create an account after a month for further protection.

This antivirus software is also compatible with Windows XP-10 and Mac OSX and can be downloaded here. This software will take up 193 MB of your memory.

3. Comodo free Antivirus
Advantages:

Has many features and has lots of customization options.
Multi-layered protection scheme with Sandbox, HIPS, Antivirus and Firewall.
A clean UI (User Interface).
Tweaked settings means that this software has one of the best 0 day protection packages.

Disadvantages:

Isn’t very beginner friendly.
Buggy software.
Updates are slow to be released.

This antivirus software is also compatible with Windows XP-10, Linux and Mac OSX and can be downloaded here. This software will take up 208 MB of your memory.
4. AVIRA Free Antivirus
Advantages:

Is light on the system and runs very smoothly without slowing the system down.
In-depth scans which produce very few false positives.
Browser safety Add-ons available for all major browsers.
Clean ad-free GUI (Graphic User Interface), Ad-free installer, and no pop-ups or ads.

Disadvantages:

Zero-day protection is very weak.
Very ineffective Browser launcher which takes up a lot of memory.
Painful removal for detected malicious files.
No firewall/sandboxing/ web shield technologies.

This antivirus software is compatible with Windows XP-10, and Mac OSX. This software will take up 200 MB of your memory. It can be downloaded from here
5. Panda Free Antivirus
Advantages:

Low memory and CPU usage thanks to its cloud protection.
Tiled customizable UI (User Interface) and nicely rendered Settings interface.
Good detection rates and behavioral analysis program.
Decent web protection and hardware resource handling.

Disadvantages:

Requires an internet connection which leads to weaker offline protection.
Slow scanning speeds and occasionally has issues with virus removal.
Watch out for the Panda toolbar during installation.
Sometimes gives false positives.

This antivirus software is only compatible with Windows XP-10. It can be downloaded here. This software will take up just 61.4 MB of your memory.

more............
http://trillionclues..com.ng/2016/12/5-of-best-free-antivirus-software-you.html
Science/Technology / 5 Of The Best Free Antivirus Software You Can Rely On by TrillionBrains(m): 1:16pm On Dec 15, 2016
To begin with it is important to state that there is no best antivirus software out there. Why is this? Well, any product that you choose will act differently against various viruses since they all have technologically different AV (Antivirus) engines and components. While one antivirus software might have a higher detection rate, another might have better malicious URL blocking or virtualization techniques, while another might have less of an impact on system performance and so on and so forth.
1. Qihoo 360 Total Security
Advantages:
• Light on resources, extremely fast scanning times and pre-configuration protection modes.
• Easy to install and comes with no adware.
• Very fast updates/fixes and excellent customer service with immediate responses.
• Great detection rates, with very high zero-day protection.
• Includes Glasswire Firewall, malicious URL protection, network threat blocking, and windows patch-up components.
Disadvantages:
• Might encounter the odd false positive.
• Speedup and clean-up tools might not be for everyone.
This antivirus software is compatible with Windows XP-10 and Mac OSX and can be downloaded here. It will only take up 41.6 MB of your memory.
2. Avast Free Antivirus
Advantages:

• Very light on the system with a modern and clean UI (User Interface).
• The only antivirus software that comes complete with a fully customizable installer.
• Top notch detection capability.
• State of the art malicious URL blocking, network protection, integrated password manager, and outdated software checking. Furthermore, it comes with a rescue disk.

Disadvantages:

• Bloated default setup and has some ads and pop ups.
• You have to create an account after a month for further protection.

This antivirus software is also compatible with Windows XP-10 and Mac OSX and can be downloaded here. This software will take up 193 MB of your memory.

3. Comodo free Antivirus
Advantages:

Has many features and has lots of customization options.
Multi-layered protection scheme with Sandbox, HIPS, Antivirus and Firewall.
A clean UI (User Interface).
Tweaked settings means that this software has one of the best 0 day protection packages.

Disadvantages:

Isn’t very beginner friendly.
Buggy software.
Updates are slow to be released.

This antivirus software is also compatible with Windows XP-10, Linux and Mac OSX and can be downloaded here. This software will take up 208 MB of your memory.
4. AVIRA Free Antivirus
Advantages:

Is light on the system and runs very smoothly without slowing the system down.
In-depth scans which produce very few false positives.
Browser safety Add-ons available for all major browsers.
Clean ad-free GUI (Graphic User Interface), Ad-free installer, and no pop-ups or ads.

Disadvantages:

Zero-day protection is very weak.
Very ineffective Browser launcher which takes up a lot of memory.
Painful removal for detected malicious files.
No firewall/sandboxing/ web shield technologies.

This antivirus software is compatible with Windows XP-10, and Mac OSX. This software will take up 200 MB of your memory. It can be downloaded from here
5. Panda Free Antivirus
Advantages:

Low memory and CPU usage thanks to its cloud protection.
Tiled customizable UI (User Interface) and nicely rendered Settings interface.
Good detection rates and behavioral analysis program.
Decent web protection and hardware resource handling.

Disadvantages:

Requires an internet connection which leads to weaker offline protection.
Slow scanning speeds and occasionally has issues with virus removal.
Watch out for the Panda toolbar during installation.
Sometimes gives false positives.

This antivirus software is only compatible with Windows XP-10. It can be downloaded here. This software will take up just 61.4 MB of your memory.

more............
http://trillionclues..com.ng/2016/12/5-of-best-free-antivirus-software-you.html

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (of 13 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 90
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.