This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="waste_calulator" class="container"> | |
<div class="heading p-5"> | |
<h1 class="display-4 text-white text-center">What is your cost<br> of ineffective meetings?</h1> | |
</div> | |
<div class="row justify-content-center"> | |
<!-- Meeting time --> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const boolDropdown = [ | |
{ | |
label: 'True', | |
value: 'true', | |
}, | |
{ | |
label: 'False', | |
value: 'false', | |
}, | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2018-02-13T12:03:35.631Z","extensionVersion":"v2.8.6"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2018-02-13T10:45:18.860Z","extensionVersion":"v2.8.6"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2017-11-11T13:40:10.680Z","extensionVersion":"v2.8.5"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//gist.github.com/ryanve/6153436 | |
(function(anchors, url, i, a) { | |
while ((a = anchors[i++]) && a.classList) | |
a.href === url && a.classList.add('current'); | |
}(document.getElementsByTagName('a'), location.href, 0)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://rbgeek.wordpress.com/2014/09/11/block-wordpress-xmlprc-php-ddos-attacks-using-fail2ban/ | |
If access.log is missing open | |
vim /etc/apache2/apache2.conf | |
and add.. | |
CustomLog ${APACHE_LOG_DIR}/access.log combined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="nav-group" data-toggle-name="radius_options"> | |
<div onClick="swiper.slideTo(0,400,true);" class="nav active" data-toggle="button">INFO</div> | |
<div onClick="swiper.slideTo(1,400,true);" class="nav" data-toggle="button">REGLER</div> | |
<div onClick="swiper.slideTo(3,400,true);" class="nav">ÖVRIGT</div> | |
</div> | |
<!-- Swiper --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Add this where you want your link, if you already have a element or button you would like to use, just add onClick="randomMe" to the element code, see example --> | |
<a onClick="randomMe()" rel="nofollow" href="#">Link do ankiety</a> | |
<!-- Add this script anywhere on page, it will exectue when user click link / element and will give user a random number between 1 and 100 where we send all with 50 or less to one url and the others with more then 50 to the other one, that should give us a likley 50/50 splitt over time --> | |
<script> | |
function randomMe() { | |
// Generate a number between 1 and 100 | |
var myNumber = Math.floor((Math.random() * 100) + 1); | |
// If number is over 50.. | |
if (myNumber > 50) { |
NewerOlder