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
#define ALT_TAB M(KC_ALT_TAB) // Macro for Alt-Tab | |
enum macro_keycodes { | |
KC_ALT_TAB | |
}; | |
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |
[0] = LAYOUT( | |
KC_MUTE, KC_ESC, KC_MPLY, \ | |
MO(1), KC_UP, ALT_TAB, \ |
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
'''<b>RunScript</b> - an easy way to write scripts for CellProfiler | |
<hr> | |
This module allows you to write small python scripts that are run as part | |
of the CellProfiler pipeline. | |
''' | |
################################# | |
# | |
# Imports from useful Python libraries | |
# | |
################################# |