outdated. see keybase.md for more details
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://code.jquery.com/jquery-2.1.4.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Hangman</title> | |
<style id="jsbin-css"> | |
* { | |
font-family: "Courier New"; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://code.jquery.com/jquery-2.1.4.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Hangman</title> | |
<style id="jsbin-css"> | |
* { | |
font-family: "Courier New"; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Hangman</title> |
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
var mongoObjectId = function () { | |
var timestamp = (new Date().getTime() / 1000 | 0).toString(16); | |
return timestamp + 'xxxxxxxxxxxxxxxx'.replace(/[x]/g, function() { | |
return (Math.random() * 16 | 0).toString(16); | |
}).toLowerCase(); | |
}; |
This claim is outdated. Please see https://gist.github.com/soopyc/cacf010f3418406d39b4e18b6630f002
I hereby claim:
- I am soopyc on github.
- I am kcomain (https://keybase.io/kcomain) on keybase.
- I have a public key whose fingerprint is 7595 B36D F6C2 E95E 10E5 2866 2932 BA0F A3DD D7D6
To claim this, I am signing this object:
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
#!/usr/bin/env python3 | |
# Maintainer: soopyc (@[email protected]) | |
# SPDX-License-Identifier: CC0-1.0 | |
a = [] | |
b = [] | |
for color in range(40, 48): | |
a.append(f"\x1b[{color}m {color} ") | |
for color in range(100, 108): | |
b.append(f"\x1b[{color}m {color} ") |
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
# bad: [5b99c823ef95ba5c642ae105815d5acd4f093aa3] Mark official release | |
# good: [44fb1192185cdd03343da7faa08a1c605f773419] Mark official release | |
git bisect start '2.19.0' '2.18.0' | |
# good: [d40e91440d53a982b8c72b176c14f2a39c3e04d1] Merge pull request #9002 from NixOS/release-notes | |
git bisect good d40e91440d53a982b8c72b176c14f2a39c3e04d1 | |
# good: [e824ab30cff5bbe25f4095a0a3819ccc787cba98] Merge pull request #9195 from edolstra/remove-hasAllInfo | |
git bisect good e824ab30cff5bbe25f4095a0a3819ccc787cba98 | |
# bad: [66cb364f581486e0c426b35149ac13d19f7842bc] Merge pull request #9289 from edolstra/fix-warnings | |
git bisect bad 66cb364f581486e0c426b35149ac13d19f7842bc | |
# bad: [15c430f38971c2f852effec22392cbe1da511aec] Remove unused LockFile::write() |