Skip to content

Instantly share code, notes, and snippets.

View prednaz's full-sized avatar

Philipp prednaz

View GitHub Profile
"main" 4
"false" 12
"true" 18
"not" 24
"negate" 31
"|" 38
"&" 48
"+" 58
"-" 68
"*" 78
"main" 4
"false" 12
"true" 18
"not" 24
"negate" 31
"|" 38
"&" 48
"+" 58
"-" 68
"*" 78
main = -69;
main = not False;
main =
if condition
then 69
else alternative;
condition = false;
alternative = 42;"
@prednaz
prednaz / if.log
Last active August 10, 2021 17:10
"main" 4
"condition" 16
"alternative" 22
"false" 28
"true" 34
"not" 40
"negate" 47
"|" 54
"&" 64
"+" 74
// ==UserScript==
// @name htwk_english
// @match https://webcourses.htwk-leipzig.de/tt/index.php?*
// @require https://code.jquery.com/jquery-3.5.1.min.js
// @grant none
// ==/UserScript==
$("input[type='radio']").eq(0).trigger("focus");
// https://api.jquery.com/on
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 2604:1380:4641:a100::1...
* TCP_NODELAY set
* Connected to www.haskell.org (2604:1380:4641:a100::1) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
* CAfile: /etc/ssl/cert.pem
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.css">
</head>
<body>
<button id="play">play</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
{-# language
FlexibleInstances,
MultiParamTypeClasses,
OverloadedLabels,
DuplicateRecordFields,
DataKinds,
UndecidableInstances,
TypeFamilies,
TemplateHaskell
#-}