forked from tomcritchlow/tomcritchlow.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu1.html
87 lines (50 loc) · 2.59 KB
/
menu1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
---
{% include head.html %}
<style>
header{
border-left:8px solid #00ff00;
border-bottom:1px dotted grey;
}
brand:after{
border-bottom:none !important;
}
</style>
<header class="pv3 pv3-l center pr4-l pl4-l f3 ph3 ph0-ns lh-copy">
<a class="no-underline" href="/"><brand class="relative">Tom Critchlow</brand></a>
<div class="fr f5 pv2 fw3">
<div class="hamburger hamburger--squeeze">
Menu
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
</div>
</header>
<script>
var $hamburger = $(".hamburger");
$hamburger.on("click", function(e) {
$hamburger.toggleClass("is-active");
$(".tommenu").toggle();
$("body").toggleClass('noscroll');
});
var $rightarrow = $(".rightarrow");
$rightarrow.on("click", function(e) {
$(".slides").scrollLeft($("body").width());
});
</script>
Here's my blog post on some stuff. Have you had the feeling of being prey inside an algorithmic system?
That system shock that comes from realizing that you’re no longer the user but the prey.
Maybe this is common behaviour - but I recently clicked an Instagram ad (yes, I have a new watch - it’s very on brand for my blog).
I don’t click ads often, in fact I can’t remember the last time I did.
But ever since clicking the watch ad my feed is populated exclusively by watch ads. So many watch ads. There’s an uneasy feeling of the algorithmic sharks circling in the water, they smell blood. A weakness in the user.
Have you had the feeling of being prey inside an algorithmic system?
That system shock that comes from realizing that you’re no longer the user but the prey.
Maybe this is common behaviour - but I recently clicked an Instagram ad (yes, I have a new watch - it’s very on brand for my blog).
I don’t click ads often, in fact I can’t remember the last time I did.
But ever since clicking the watch ad my feed is populated exclusively by watch ads. So many watch ads. There’s an uneasy feeling of the algorithmic sharks circling in the water, they smell blood. A weakness in the user.
https://mediatemple.net/blog/tips/carousels-dont-have-to-be-complicated/
</div>
</div>
</body>
</html>