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
body{ | |
background:lightblue !important; | |
} | |
.box { | |
background: black; | |
border-radius: 4px; | |
width: 40px; | |
height:40px; | |
} |
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
import ctypes | |
import win32event, winerror | |
class ExitCodeProcess(ctypes.Structure): | |
_fields_ = [ | |
('hProcess', ctypes.c_void_p), # HANDLE | |
('lpExitCode', ctypes.POINTER(ctypes.c_ulong)) # LPDWORD | |
] |
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
#!/usr/bin/env python | |
""" | |
simple example script for running and testing notebooks. | |
Usage: `ipnbdoctest.py foo.ipynb [bar.ipynb [...]]` | |
Each cell is submitted to the kernel, and the outputs are compared with those stored in the notebook. | |
Tested with python 3.6 and jupyter 5.0 | |
""" | |
# License: MIT, but credit is nice (Min RK, ociule). |