diff --git a/package-lock.json b/package-lock.json index fc77256..7358775 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,6 +18,9 @@ "hexo-renderer-stylus": "^2.1.0", "hexo-server": "^3.0.0", "hexo-theme-landscape": "^1.0.0" + }, + "devDependencies": { + "hexo-feed": "^1.1.1" } }, "node_modules/@tootallnate/once": { @@ -944,6 +947,16 @@ "node": ">=14" } }, + "node_modules/hexo-feed": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/hexo-feed/-/hexo-feed-1.1.1.tgz", + "integrity": "sha512-Hrp6YZGZ93/EqGOAvKll8hQpCWKggcbexP3Xkjx00YCUeOHGSNqBLdggRGAo8c7/BPbF6X0wLgar/WD+f5hKYQ==", + "dev": true, + "peerDependencies": { + "chalk": "^4.1.0", + "hexo": "^4.2.0 || ^5.2.0 || ^6.1.0" + } + }, "node_modules/hexo-front-matter": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hexo-front-matter/-/hexo-front-matter-3.0.0.tgz", diff --git a/package.json b/package.json index 486472d..9644bd2 100644 --- a/package.json +++ b/package.json @@ -22,5 +22,8 @@ "hexo-renderer-stylus": "^2.1.0", "hexo-server": "^3.0.0", "hexo-theme-landscape": "^1.0.0" + }, + "devDependencies": { + "hexo-feed": "^1.1.1" } -} \ No newline at end of file +} diff --git a/source/_posts/hello-world.md b/source/_posts/hello-world.md deleted file mode 100644 index 535464c..0000000 --- a/source/_posts/hello-world.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Hello World -date: 2023-05-17 20:35:10 ---- -Welcome to [Hexo](https://hexo.io/)! This is your very first post. Check [documentation](https://hexo.io/docs/) for more info. If you get any problems when using Hexo, you can find the answer in [troubleshooting](https://hexo.io/docs/troubleshooting.html) or you can ask me on [GitHub](https://github.com/hexojs/hexo/issues). - -## Quick Start - -### Create a new post - -``` bash -$ hexo new "My New Post" -``` - -More info: [Writing](https://hexo.io/docs/writing.html) - -### Run server - -``` bash -$ hexo server -``` - -More info: [Server](https://hexo.io/docs/server.html) - -### Generate static files - -``` bash -$ hexo generate -``` - -More info: [Generating](https://hexo.io/docs/generating.html) - -### Deploy to remote sites - -``` bash -$ hexo deploy -``` - -More info: [Deployment](https://hexo.io/docs/one-command-deployment.html) diff --git a/source/_posts/whatsapp-analyze.md b/source/_posts/whatsapp-analyze.md new file mode 100644 index 0000000..1869663 --- /dev/null +++ b/source/_posts/whatsapp-analyze.md @@ -0,0 +1,45 @@ +--- +title: Data about data +date: 2023-05-18 14:26:18 +tags: +--- + + +I am a huge fan of gathering, analyzing and evaluating data. Creating statistics and colorful graphs just has something to it. But the interesting part is not necessarily the data itself, it’s the data about the data. How often does something occur, at which time and by whom are very important characteristics when it comes to creating patterns. + +For example, let’s look at the two weekday-graphs of two different WhatsApp-chats of mine. + +**Hours Chat A** + +![hourchartA](.\whatsapp-analyzer\hourchartA.png) + +**Hours Chat B** + +![hourchartB](.\whatsapp-analyzer\hourchartB.png) + +It is not that hard to figure out the difference between those two graphs. The amount of daily messages in A are pretty stable except Friday and Monday, which are two extremes. Maybe this could be about a friend group planning what they’re going to do on the weekend? The general quantity of messages are also lower as in figure B. The second chat also has a huge gap between Sunday and Saturday. Could this be a groupchat related to work? Or is it someone close who happens to live in the same house? + +You can see that it is possible to gather connections and create assumptions about certain topics without even looking at the data itself. Now let’s take a deeper look. + + + +**Days Chat A** + +![heatmapA](.\whatsapp-analyzer\heatmapA.png) + + + +How interesting. We can see that the group is most active between the end of January till May and spikes again in October. If you happen to live in Austria, you probably now what that means. See most Austrian summer breaks for students last from June till the beginning of September while Christmas lasts from December till January. There is also one small break during November. You can clearly see that this could be a chat between friends who happen to be students but don’t have the same classes together. Those friends probably spend a lot of their free time together, which explains the lack of data during the breaks. + +**Days Chat B** + +![heatmapB](.\whatsapp-analyzer\heatmapB.png) + +We can see that the amount of messages remains pretty stable. This could prove our theory of two people in the same household as true. The gap in August could be a planned vacation maybe? + +It would be pretty frighting if I told you all our assumptions were correct. Right? You may now probably recognize that metadata is a lot more valuable than you originally thought. But what conclusions can we draw from this new gained awareness? + +Most people rely on the encryption of their messaging apps. If no one can read my data then I am safe right? No. As we can see, an attacker does not need access your communication in order to gather valuable information. + +Just keep that in mind. + diff --git a/source/_posts/whatsapp-analyze/heatmapA.png b/source/_posts/whatsapp-analyze/heatmapA.png new file mode 100644 index 0000000..108f121 Binary files /dev/null and b/source/_posts/whatsapp-analyze/heatmapA.png differ diff --git a/source/_posts/whatsapp-analyze/heatmapB.png b/source/_posts/whatsapp-analyze/heatmapB.png new file mode 100644 index 0000000..8e883df Binary files /dev/null and b/source/_posts/whatsapp-analyze/heatmapB.png differ diff --git a/source/_posts/whatsapp-analyze/hourchartA.png b/source/_posts/whatsapp-analyze/hourchartA.png new file mode 100644 index 0000000..373cd55 Binary files /dev/null and b/source/_posts/whatsapp-analyze/hourchartA.png differ diff --git a/source/_posts/whatsapp-analyze/hourchartB.png b/source/_posts/whatsapp-analyze/hourchartB.png new file mode 100644 index 0000000..42bc08c Binary files /dev/null and b/source/_posts/whatsapp-analyze/hourchartB.png differ