From c798e59540b85b879caf7e3de2d62b2f22b875c6 Mon Sep 17 00:00:00 2001 From: Jan Schaumann Date: Tue, 15 Jan 2019 12:55:50 -0500 Subject: [PATCH 1/3] add a section on privacy screens --- config/data.js | 2 ++ config/privacyScreen.js | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 config/privacyScreen.js diff --git a/config/data.js b/config/data.js index e544ed6..e63c396 100644 --- a/config/data.js +++ b/config/data.js @@ -13,6 +13,7 @@ import appPermissions from './appPermissions'; import socialMedia from './socialMedia'; import phishing from './phishing'; import webcam from './webcam'; +import privacyScreen from './privacyScreen'; export default { passwordManager, @@ -23,6 +24,7 @@ export default { creditFreeze, dns, vpn, + privacyScreen, webcam, browsers, searchEngine, diff --git a/config/privacyScreen.js b/config/privacyScreen.js new file mode 100644 index 0000000..d1544ad --- /dev/null +++ b/config/privacyScreen.js @@ -0,0 +1,13 @@ +export default { + id: 'privacyScreen', + title: 'Use a laptop privacy screen', + description: `Protect yourself from people shoulder-surfing and use your laptop in private even when working in a public space, such as a cafe or on a plane. The privacy filter blocks side views outside the 60 degree angle, thereby ensuring that people around you cannot view your screen without impeding your ability to work in open workspaces or on the go. + `, + resources: [ + { + name: 'Laptop Privacy Screen Reiews', + url: + 'https://www.bestconsumerreviews.com/laptop-privacy-screen-reviews/', + }, + ], +}; From 762b91f4cc61b479d92698c262397a003b40e5c5 Mon Sep 17 00:00:00 2001 From: Brian Lovin Date: Wed, 16 Jan 2019 17:19:56 -0800 Subject: [PATCH 2/3] Rename webcam to physicalPrivacy, add screen protector copy --- config/data.js | 2 +- config/physicalPrivacy.js | 19 +++++++++++++++++++ config/privacyScreen.js | 13 ------------- config/vpn.js | 3 +-- config/webcam.js | 17 ----------------- 5 files changed, 21 insertions(+), 33 deletions(-) create mode 100644 config/physicalPrivacy.js delete mode 100644 config/privacyScreen.js delete mode 100644 config/webcam.js diff --git a/config/data.js b/config/data.js index 5fe7eb5..fc2da18 100644 --- a/config/data.js +++ b/config/data.js @@ -12,7 +12,7 @@ import email from './email'; import appPermissions from './appPermissions'; import socialMedia from './socialMedia'; import phishing from './phishing'; -import webcam from './webcam'; +import webcam from './physicalPrivacy'; import geotagging from './geotagging'; export default { diff --git a/config/physicalPrivacy.js b/config/physicalPrivacy.js new file mode 100644 index 0000000..a85611e --- /dev/null +++ b/config/physicalPrivacy.js @@ -0,0 +1,19 @@ +export default { + id: 'physicalPrivacy', + title: 'Review the privacy of your physical space', + description: `You should add a webcam cover on your laptop and desktop computers. A webcam cover provides peace of mind when entering and exiting video calls that you are only visible when you choose to be. + + You should protect yourself from people shoulder-surfing when working in a public space, such as a cafe or on a plane. A privacy screen blocks side views outside a 60 degree viewing angle. + `, + resources: [ + { + name: 'Webcam covers (3 pack) on Amazon · No affiliate link', + url: + 'https://www.amazon.com/0-027in-MacBook-Smartphone-Protecting-Security/dp/B077ZT29P2/ref=sr_1_4?s=pc&ie=UTF8&qid=1547412984&sr=1-4&keywords=webcam+cover', + }, + { + name: 'Laptop privacy screen reviews', + url: 'https://www.bestconsumerreviews.com/laptop-privacy-screen-reviews/', + }, + ], +}; diff --git a/config/privacyScreen.js b/config/privacyScreen.js deleted file mode 100644 index d1544ad..0000000 --- a/config/privacyScreen.js +++ /dev/null @@ -1,13 +0,0 @@ -export default { - id: 'privacyScreen', - title: 'Use a laptop privacy screen', - description: `Protect yourself from people shoulder-surfing and use your laptop in private even when working in a public space, such as a cafe or on a plane. The privacy filter blocks side views outside the 60 degree angle, thereby ensuring that people around you cannot view your screen without impeding your ability to work in open workspaces or on the go. - `, - resources: [ - { - name: 'Laptop Privacy Screen Reiews', - url: - 'https://www.bestconsumerreviews.com/laptop-privacy-screen-reviews/', - }, - ], -}; diff --git a/config/vpn.js b/config/vpn.js index a25e367..c5e4422 100644 --- a/config/vpn.js +++ b/config/vpn.js @@ -88,8 +88,7 @@ export default { }, { name: 'A detailed VPN provider comparison chart', - url: - 'https://thatoneprivacysite.net/vpn-comparison-chart/', + url: 'https://thatoneprivacysite.net/vpn-comparison-chart/', }, ], }; diff --git a/config/webcam.js b/config/webcam.js deleted file mode 100644 index 66386b3..0000000 --- a/config/webcam.js +++ /dev/null @@ -1,17 +0,0 @@ -export default { - id: 'webcam', - title: 'Cover your webcam', - description: `You should add a webcam cover on your laptop and desktop computers. In the case that your webcam light indicator breaks, or a hacker is able to turn on your camera without triggering the indicator light, a cover will keep you hidden from view. - `, - resources: [ - { - name: 'Webcam covers (3 pack) on Amazon · No affiliate link', - url: - 'https://www.amazon.com/0-027in-MacBook-Smartphone-Protecting-Security/dp/B077ZT29P2/ref=sr_1_4?s=pc&ie=UTF8&qid=1547412984&sr=1-4&keywords=webcam+cover', - }, - { - name: 'Related watching: Black Mirror "Shut Up and Dance"', - url: 'https://en.wikipedia.org/wiki/Shut_Up_and_Dance_(Black_Mirror)', - }, - ], -}; From 66619072a9668d625dd3addc182ba3e5520d3bc4 Mon Sep 17 00:00:00 2001 From: Brian Lovin Date: Wed, 16 Jan 2019 17:20:14 -0800 Subject: [PATCH 3/3] Rename import --- config/data.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/data.js b/config/data.js index fc2da18..7498653 100644 --- a/config/data.js +++ b/config/data.js @@ -12,7 +12,7 @@ import email from './email'; import appPermissions from './appPermissions'; import socialMedia from './socialMedia'; import phishing from './phishing'; -import webcam from './physicalPrivacy'; +import physicalPrivacy from './physicalPrivacy'; import geotagging from './geotagging'; export default { @@ -24,7 +24,7 @@ export default { creditFreeze, dns, vpn, - webcam, + physicalPrivacy, browsers, searchEngine, email,