한 달 일정을 한 눈에 확인 가능한 달력 위젯. 마이크로소프트가 제공하는 WPF로 제작. 처음 만들어본 게임이 아닌 응용 어플리케이션.
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
class tf_Spectrum: | |
Color = tf.constant([ | |
[0, 0, 128], | |
[0, 0, 255], | |
[0, 255, 0], | |
[255, 255, 0], | |
[255, 0, 0] | |
], dtype = tf.float32) | |
def tf_gray2color(gray, spectrum = tf_Spectrum.Color): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<? | |
echo(2); |
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
def fibonacci(num): | |
if num <= 2: | |
return 1 | |
return fibonacci(num - 1) + fibonacci(num - 2) | |
def exponential(base, exp): | |
value = 1 | |
for i in range(exp): | |
value *= base | |
return value |
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
This is test page for Gist. |
NewerOlder