Skip to content

Commit

Permalink
[Privacy]: Don’t load any resources externally.
Browse files Browse the repository at this point in the history
Loading resources externally violates:

* Everything runs **completely locally**: none of your data is uploaded anywhere

from the [README.md](https://github.com/karpathy/ulogme/tree/111e860ad616b00796e20186ed8669dcf56505ca#ulogme) because this HTTP connection tells someone when you are using ulogme (referrer which is included in the HTTP request by most browser default settings).
  • Loading branch information
ypid committed May 7, 2016
1 parent 111e860 commit d8328e5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions render/font_lato.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v11/nj47mAZe0mYUIySgfn0wpQ.ttf) format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v11/v0SdcGFAl2aezM9Vq_aFTQ.ttf) format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 900;
src: local('Lato Black'), local('Lato-Black'), url(http://fonts.gstatic.com/s/lato/v11/4cKlrioa77J2iqTqBgkRWg.ttf) format('truetype');
}
2 changes: 1 addition & 1 deletion render/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ulogme</title>

<link href='http://fonts.googleapis.com/css?family=Lato:300,400,900' rel='stylesheet' type='text/css'>
<link href='font_lato.css' rel='stylesheet' type='text/css'>
<link href='index_style.css' rel='stylesheet' type='text/css'>

<script src="jquery-1.8.3.min.js"></script>
Expand Down

0 comments on commit d8328e5

Please sign in to comment.