This file contains hidden or 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
<input type="text"> |
This file contains hidden or 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
function getChar({ code, shiftKey }) { | |
if (code.startsWith('Key')) { | |
return code.replace('Key', '') | |
} | |
if (code.startsWith('Digit')) { | |
return code.replace('Digit', '') | |
} | |
const normal = { |

This file contains hidden or 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
git log --format='%ae' | sort | uniq -c | sort -nr |
This file contains hidden or 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
% ------------------------------------------------------------------------------ | |
% Generic Expert System interface | |
% ------------------------------------------------------------------------------ | |
% Dynamic fact | |
% -------------------------------------- | |
:- dynamic(known/3). | |
% -------------------------------------- | |
% Start system | |
% -------------------------------------- | |
solve :- |
NewerOlder