View gist:a8f1cc09b79cb07f3ef9e5cd13b8f308
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://gist.github.com/JanPoonthong/f388e9bedfff977a6230a1b3f70cc3c2 |
View gist:bde3bc8298275c291a55cdc8b6fc2c9f
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
hello |
View gist:07266320c2cb70899a033092abe905b0
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
hello |
View gist:e763cb593ce93e536602413248358a4d
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
hello |
View z3tr.py
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
from functools import singledispatchmethod | |
class Negator: | |
@singledispatchmethod | |
def neg(self, arg): | |
raise NotImplementedError("Cannot negate a") | |
@neg.register | |
def _(self, arg: int): | |
return -arg |
View gist:b0cc65ca0683bca7adbd88d5e0b46476
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
hello |
View gist:802ff0e183d4a176e52e5a3fee00c1c9
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
hello |
View semicolon.diff
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
src/include/quick-lint-js/parse.h |
View realgavle.java
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
public static void countupA(int n) { | |
if (n == 0) { | |
System.out.println("blast off"); | |
} else { | |
countupB(n - 1); | |
System.out.println(n); | |
} | |
} | |
public static void countupB(int n) { |
View gist:ba7f9bef0bda492a86fde713dd97cc16
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://gist.github.com/76a5a4e6b20e97fc5794242bcb2b43ae |
NewerOlder