Graphic design python turtle 🐢

from turtle import * import colorsys bgcolor('black') pensize(0) tracer(50) h=0 for i in range(300): c=colorsys.hsv_to_rgb(h,1,1) h+=0.9 color(c) forward(300) left(100) fd(i) goto(0,0) down() rt(90) begin_fill() circle(0) end_fill() rt(10) for j in range(5): rt(30) done() Please follow my blog and subscribe my channel for more videos and newly updates 👍👍👍👍👍 import turtle as t import colorsys t.bgcolor('black') t.tracer(100) h=0.4 def draw(ang,n): t.circle(5+n,60) t.left(ang) t.circle(5+n,60) for i in range(200): c=colorsys.hsv_to_rgb(h,1,1) h+=0.005 t.color(c) t.pensize(2) draw(90,i*2) draw(120,i*2.5) draw()

How can we protect our data from Cyber Crime ?

Protect our data from Cyber Crime:-

some easy tips to protect computer from the growing theats:-

1) Create backup of important data
2) Keep your software updated
3) Use security programs
4) Protect your password
5) Participation in social networking
6) Strengthen your home network

1) Create backup of important data:- Backup of all the important files whether personal or professional should be created. Getting used to back up your files regularly is the first step towards security of your personal computer. 

2) Keep your software updated:- This is especially important with your operating system and Internet security software. Cyber criminals frequently use known exploits, of flaws, in your software to gain access to your system.

3) Use security programs:- If your system does not have data protection software to protect online, then by all means buy Internet security programs for your computer.




4) Protect your password:- Try creating a password that consists of a combination of letters (both upper case and lower case), numbers and special characters. Password should be changed reqularly.

5) Participation in social networking:- While participating in most social networking sites do not expose the personal information to other and all of these sites have a certain intensity of control over security issues.

6) Strengthen your home network:- It's a good idea to start with a strong encryption password as well as a virtual private network. A VPN will encrypt all traffic leaving your devices until it arrives at its destination. If cybercriminals do manage to hack your communication line. They won't intercept anything but encrypted data. It's a good idea to use a VPN whenever you a public wi-fi network, whether it's in a library, carfe hotel, or airport etc.

Comments

Popular posts from this blog

Protocol verification using finite state machine model in computer network

Make fire crackers using python turtle 🐢

Scope and Limitation of Machine Learning