Skip to content

Instantly share code, notes, and snippets.

View attish's full-sized avatar

Attila István Nagy attish

View GitHub Profile
-- Using CMake 3.16.3
CMake Error at CMakeLists.txt:30 (include):
include could not find load file:
EnableCCache
CMake Error at CMakeLists.txt:78 (include):
include could not find load file:
Andreas M. Antonopoulos: The Courage to Innovate Without Permission
https://www.youtube.com/watch?v=ywq6NBETUJ8
----------------
1
00:00:00,400 --> 00:00:09,100
Valószínűleg hallottátok, hogy Bitcoin-szakértő vagyok.
Teljesen másról akarok beszélni: a bizalomról.
@attish
attish / wtf.html
Created December 7, 2018 17:24
WTF
<html>
<head>
<script>
f = function () {
{ return } // BAD
};
</script>
</head>
<body>
</body>
@attish
attish / client.html
Created December 6, 2018 08:31
Brython working websocket example
<html>
<head>
<meta charset="iso-8859-1">
<script src="brython.js"></script>
</head>
<body onload="brython(1)">
<script type="text/python3">
from browser import alert, document, window
def on_open(evt):
@attish
attish / history_rewrite.sh
Created July 31, 2009 18:28 — forked from coshx/history_rewrite.sh
change author information in history (corrected quotes)
#!/bin/sh
git filter-branch --env-filter '
an="$GIT_AUTHOR_NAME"
am="$GIT_AUTHOR_EMAIL"
cn="$GIT_COMMITTER_NAME"
cm="$GIT_COMMITTER_EMAIL"
if [ "$GIT_COMMITTER_EMAIL" = "your@email.to.match" ]