You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
4.3 KiB
115 lines
4.3 KiB
11 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||
|
|
||
|
<!-- Enable responsiveness on mobile devices-->
|
||
|
<!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape-->
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
|
||
|
|
||
|
<title>Julio Biason .Me 4.3</title>
|
||
|
|
||
|
<!-- CSS -->
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/print.css" media="print">
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/poole.css">
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/hyde.css">
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body class=" ">
|
||
|
|
||
|
<div class="sidebar">
|
||
|
<div class="container sidebar-sticky">
|
||
|
<div class="sidebar-about">
|
||
|
|
||
|
<a href="https://blog.juliobiason.me"><h1>Julio Biason .Me 4.3</h1></a>
|
||
|
|
||
|
<p class="lead">Old school dev living in a 2.0 dev world</p>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<ul class="sidebar-nav">
|
||
|
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/">English</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/pt">Português</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/tags">Tags (EN)</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/pt/tags">Tags (PT)</a></li>
|
||
|
|
||
|
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="content container">
|
||
|
|
||
|
<div class="post">
|
||
|
<h1 class="post-title">Things I Learnt The Hard Way - Think About The Users</h1>
|
||
|
<span class="post-date">
|
||
|
2019-07-17
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/books/">#books</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/things-i-learnt/">#things i learnt</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/privacy/">#privacy</a>
|
||
|
|
||
|
</span>
|
||
|
<p>Think how the data you're collecting from your users will be used -- this is
|
||
|
more prevalent on these days, where "privacy" is a premium.</p>
|
||
|
<span id="continue-reading"></span>
|
||
|
<p>I once had a discussion with a CTO about collecting the user IMEI on our
|
||
|
mobile app. Basically, there was no use case for capturing that information
|
||
|
yet but, as he put at the time, "We may want to know if one user uses two
|
||
|
phones, or if two users use the same phone". I raised the fact that we didn't
|
||
|
need this information and, besides that, it felt like we were invading the
|
||
|
users privacy. He still decided to go ahead. My answer: "I'll do it, but I
|
||
|
want to point that I'm not happy with it."</p>
|
||
|
<p>In the end, the store blocked the app... because we were capturing the IMEI.</p>
|
||
|
<p>But there are cases and cases. If you really <em>really</em> need to capture user
|
||
|
information, be sure to protect it against unauthorized use, be it by external
|
||
|
forces (someone found a way to attack your data) or internal (some disgruntled
|
||
|
colleague decided to take the data from your users with them).</p>
|
||
|
<p>And be sure, there <em>will</em> be a leak at some point, it's just a matter of time.
|
||
|
If you can, the best way to protect your users data is to never capture it.
|
||
|
When a flaw on your system is found or when some colleague leaves the company
|
||
|
in bad terms, there will be no data to expose to the world, anyway. You can't
|
||
|
be more secure than this.</p>
|
||
|
<div>
|
||
|
|
||
|
<div style="float:left">
|
||
|
<< <a href="/books/things-i-learnt/debuggers">Debuggers Are Overrated</a>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<div style="float:right">
|
||
|
<a href="/books/things-i-learnt/integration-tests">Unit Tests Are Good, Integration Tests Are Gooder</a> >>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|