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
typed text: | |
| n | type | code | key | kc | mods | repeat | l | comp | iType | data | | |
|---:|--------:|-----:|:----|----:|-----:|-------:|--:|-----:|------:|-----:| | |
| 1 | keydown | F1 | F1 | 112 | | | 0 | | | | | |
| 2 | keyup | F1 | F1 | 112 | | | 0 | | | | | |
| 3 | keydown | F2 | F2 | 113 | | | 0 | | | | |
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
typed text: | |
| n | type | code | key | kc | mods | repeat | l | comp | iType | data | | |
|---:|--------:|-----:|:----|----:|-----:|-------:|--:|-----:|------:|-----:| | |
| 1 | keydown | F1 | F1 | 112 | | | 0 | | | | | |
| 2 | keyup | F1 | F1 | 112 | | | 0 | | | | | |
| 3 | keydown | F2 | F2 | 113 | | | 0 | | | | |
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
@font-face { | |
font-family: "ibm-plex-mono"; | |
font-style: normal; | |
font-weight: 400; | |
src: url(data:font/ttf;charset-utf-8;base64,AAEAAAASAQAABAAgRFNJRwAAAAEAAVsIAAAACEdERUYYthiZAAFNGAAAAIJHUE9TPbJ4ZQABTZwAAAToR1NVQt9ERhUAAVKEAAAIhE9TLzKH8WZmAAABqAAAAGBjbWFwrpljkQAADKQAAAieY3Z0IAJODk8AABhcAAAAPmZwZ20GWZw3AAAVRAAAAXNnYXNwABgAIQABTQgAAAAQZ2x5ZgFHeUYAAB3sAAETkGhlYWQLRWVwAAABLAAAADZoaGVhBYgC6QAAAWQAAAAkaG10eMlvp2QAAAIIAAAKnGxvY2Eav2EQAAAYnAAABVBtYXhwBN0DTwAAAYgAAAAgbmFtZS5FQhQAATF8AAAGWXBvc3TDi3HcAAE32AAAFTBwcmVw7506KgAAFrgAAAGiAAEAAAABAABGgo8CXw889QAJA+gAAAAA1VIehQAAAADVUgKh/vz/BQKIBF8AAAAJAAIAAAAAAAAAAQAABAH+7QAAAlj+/P78AogAAQAAAAAAAAAAAAAAAAAAAqcAAQAAAqcAywAiAGkABgABAAAAAAAKAAACAAIZAAMAAQADAlgBkAAFAAACigJYAAAASwKKAlgAAAFeADwBNQAAAgsFCQUAAAAAAKAAAG9QACB7AAAAAAAAAABJQk0gAEAAAPsCAwz/JAEsBAEBEyAAAZMAAAAAAgQCugAAACAAAwJYADIAAAAAAlgAAAJYAAACWABCAlgAPAJYAF8CWABUAlgAPAJYAEMCWABJAlgAQwJYADwCWABDAlgAYgJYAGoCWABdAlgAaQJYAFACWAA2AlgAYgJYAEICWABfAlgAPAJYAE0CWABDAlgAJwJYAFwCWABAAlgAHgJYAD0CWAA1AlgAVQJYAB8CWABYAlg |
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
// This file was generated by libdot/bin/concat.sh. | |
// It has been marked read-only for your safety. Rather | |
// than edit it directly, please modify one of these source | |
// files... | |
// | |
// libdot/js/lib.js | |
// libdot/js/lib_colors.js | |
// libdot/js/lib_f.js | |
// libdot/js/lib_message_manager.js | |
// libdot/js/lib_preference_manager.js |
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
protobuf | |
protobuf-2.6.0 | |
protobuf-2.6.1 | |
protobuf-master |
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
class AttributedDict(dict): | |
""" | |
A class extending the standard dict so that its keys can be accessed | |
as an object attributes (as long as the are strings). | |
Notice: this class is not pickable, so for example an attempt to save | |
its instance in Django session causes an error. | |
""" | |
__getattr__ = dict.__getitem__ |