master
Max Lehmann 5 years ago
parent 05e1c979c2
commit 3ecbc7a84d

@ -28,9 +28,9 @@
<nav> <!-- Control buttons -->
<div class="myBtnContainer" id="myBtnContainer">
<button class="btn active" onclick="filterSelection('all')"> Show all</button>
<button class="btn" onclick="filterSelection('tools')"> Tools</button>
<button class="btn" onclick="filterSelection('methods')"> Methods</button>
<button class="btn" onclick="filterSelection('experiences')"> Experiences </button>
<button class="btn tools" onclick="filterSelection('tools')"> Tools</button>
<button class="btn methods" onclick="filterSelection('methods')"> Methods</button>
<button class="btn experiences" onclick="filterSelection('experiences')"> Experiences </button>
</div>
</nav>
<body>
@ -44,6 +44,7 @@
</div>
<input type="button" class="printbutton" value="Print selection"name="printselection" onclick="window.print();return false;"/>
<input type="button" class="selectall" value="Select All"name="selectall" />
<div class="empty" id="empty"></div>
@ -2971,7 +2972,7 @@
The world is foreign to simplicity. The natural take on how things are is immense complexity and chaos. And then with a punch of one hand, firmly, we try to tame it, and put it in a form that is understandable. For a while, maybe, it holds its stability, sooner or later it dismantles again. And we panic. Should we wonder?
</p>
<p>
Who are these guys training for? Punches, kickbox. If there is a war coming, we are going to have to use more weapons then just our bodies, intellect, predictions. The war is already happening. What is war anyways? There is this discourse going on about this whole viral virus situation - hello pigeons - being at war with an invisible enemy. We have to defend our integrity. It is not about life, it is about death. And nobody wants to die. Nobody wants to suffer. Pain is painful. [prof. Sapolsky, behavioural science] Except the ones that do, and the ones that got used to the idea of doing so. I believe there is this strong pressure of surviving, and - honestly - I like it. (Gotta love my privilege.) But it is more than just mere survival. I want to survive well. [Maria Hlavajova was talking about this in december]
Who are these guys training for? Punches, kickbox. If there is a war coming, we are going to have to use more weapons than just our bodies, intellect, predictions. The war is already happening. What is war anyways? There is this discourse going on about this whole viral virus situation - hello pigeons - being at war with an invisible enemy. We have to defend our integrity. It is not about life, it is about death. And nobody wants to die. Nobody wants to suffer. Pain is painful. [prof. Sapolsky, behavioural science] Except the ones that do, and the ones that got used to the idea of doing so. I believe there is this strong pressure of surviving, and - honestly - I like it. (Gotta love my privilege.) But it is more than just mere survival. I want to survive well. [Maria Hlavajova was talking about this in december]
</p>
<p>
And here, we come to screaming and interaction. War, again. If you do not know the war is already happening, and you hear a big crowd screaming, somewhere, 3 blocks away from you. Not too far, you can hear the mass, the distinct voices of many people. You can't estimate how many there are, there is a lot of them. And then the first thought that pops up - it happened to me in 2016 [nazi group attack on the <a href="http://atrog.org/en/">Autonomous Rog Factory squat </a> in Ljubljana we were defending against eviction] - is this screaming ... What caused it? What does it react to?
@ -3173,7 +3174,14 @@
<!--script src="masonry.js"--><!--</script>-->
<script>
filterSelection("all")
// Select all button
var selectall = document.querySelector("button.selectall");
selectall.addEventListener("click", function (e) {
alert("SELECT ALL");
});
filterSelection("all")
function filterSelection(c) {
var x, i;
x = document.getElementsByClassName("filterDiv");

Loading…
Cancel
Save