Skip to main content

Five Tips To Tighten Your Facebook Privacy Settings


Restrict your profile from appearing on search engines like Google:
Go to Account | Privacy Settings.
Click on Edit your settings under Applications and Websites.
Click on Edit settings for Public Search.
Uncheck the Enable public search option to refrain from appearing on search engines. If you allow public search, keep in mind that information you've opted to share with Everyone will appear in the public search as well.

Manage those you want to share your likes and interests with:
Go to Account | Privacy Settings.
Click on View settings under Basic directory settings.
Choose the appropriate option for See my interests and other Pages. If you set this option to Everyone and have made yourself publicaly searchable, your likes and interests will appear on search engine results as well.

Secure yourself from being tagged in embarrassing videos and photographs:
Go to Accounts | Privacy Settings.
Click on Customise settings under Sharing on Facebook.
Choose Customise under Things others share  | Photos and videos I'm tagged in.
Choose specific people or a friends list. Alternatively choose Only me if you don't want your any of your friends to be notified when you are tagged in photos or videos posted by other people.

One click solution to secure your applicatons, games and websites privacy settings:
Go to Accounts | Privacy Settings.
Click on Edit your settings under Applications and websites.
Click on Turn off all platform applications under Applications you use. By doing this, you can block all application activities from communicating with and about you. No more annoying application and game requests. Your data will no longer be shared with applications on Facebook Platform even through friends. Instant personalisation will also get blocked.
Alternatively, carefully choose the settings under each sub section of Application and websites to manually manage how much information you want to share through various applications you use.

Avoid being a brand ambassador by appearing on social ads:
Go to Accounts | Account Settings.
Click on Facebook Adverts tab. Read and close the Understanding Social Ads dialogue box.
Choose No one under Allow adverts on platform pages to show my information to option and click Save changes. This will restrict third party applications or advertising networks from publishing your information on adverts.
Choose No one under Show my social actions in Facebook Adverts to and click Save changes to restrict Facebok Adverts from doing the same.

Comments

Popular posts from this blog

Oracle and VB 6.0 Connectivity (Part 1)

Here is a basic VB application called voter information system demonstrated which explains the concepts quite clearly. The first step required to establish connectivity is preparing the back end and the front end of the project. These steps are divided into two parts first the back end that is the oracle and front end that is the Visual Basic 6.0. Oracle Firstly we need to set up the database. Create the tables, triggers and procedures and database in the oracle. Create tables: Example: create table voter(id number(5) primary key, name varchar2(25),address varchar2(50),age number(3),gender varchar2(6),dob varchar2(30)); create table votertemp(id number(5) primary key, name varchar2(25),address varchar2(50),age number(3),gender varchar2(6),dob varchar2(30)); (we will be using the next table in the triggers that we will be implementing) Visual Basic 6.0 Develop the VB application as in this example given below. Design the necessary forms for the application. The next part is

Validations in Visual Basic 6.0

This topic will demonstrate how to perform client side validations in Visual Basic 6.0. It will guide you with a step by step procedure. 1) Firstly in the below image suppose you want to accept only integer numbers as id in the textbox next to ID label in the form from the user you can perform client side validations in the following way: These are the ascii codes that i am using for acepting only integer values from user. Back space - 8 0 to 9 Integers - 48 to 57 Delete - 127 This is how the function will look. Private Sub Text2_KeyPress(KeyAscii As Integer) If Not ((KeyAscii >= 48 And KeyAscii <= 57) Or KeyAscii = 127 Or KeyAscii = 8) Then MsgBox "enter proper value" KeyAscii = 0 End If End Sub Double click on the text box which you want to validate. Next select the event as keypress from top right list box. In this case the name of text box is text1. This is the function for accepting input as integer value only from the user.

Oracle and VB 6.0 Connectivity (Part 3)

Now we will see how to insert values into table a table and to view them. Oracle Initially we had created table in part1. Visual Basic 6.0 Now we wil insert data into the table through visual basic. The code for inserting will be as follows When you double click on add button it will open your code window it will have this code! Private Sub Command1_Click() Dim gen As String If (Option1.Value = True) Then gen = "male" ElseIf (Option2.Value = True) Then gen = "female" End If rsv.Open "insert into voter values(" & Text5.Text & ",'" & Text2.Text & "','" & Text3.Text & "','" & Combo1.Text & "','" & gen & "','" & DTPicker1.Value & "')", conv, adOpenDynamic, adLockOptimistic If (rsv.State = 1) Then rsv.Close End If MsgBox ("Data Entered") End Sub This will add the data entered into