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
name: inversion | |
source code: |- | |
input: '1010' | |
blank: ' ' | |
start state: read | |
# Testing with https://turingmachine.io/ | |
# opt opt req opt | |
# {write: symbol, move: state} | |
# [' ',0,1] |
This file has been truncated, but you can view the full file.
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
############## kodi CRASH LOG ############### | |
################ SYSTEM INFO ################ | |
Date: Tue Feb 18 08:37:16 EST 2020 | |
kodi Options: --standalone -fs | |
Arch: armv7l | |
Kernel: Linux 4.19.83 #1 SMP Sat Nov 23 01:55:35 CET 2019 | |
Release: LibreELEC 9.2.0 | |
############## END SYSTEM INFO ############## |
This file has been truncated, but you can view the full file.
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
2019-04-11 12:28:42.031 T:1937312192 NOTICE: ----------------------------------------------------------------------- | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: Starting Kodi (18.5 Git:newclock5_18.5-Leia). Platform: Linux ARM 32-bit | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: Using Release Kodi x32 build (version for Raspberry Pi) | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: Kodi compiled 2019-11-23 by GCC 8.3.0 for Linux ARM 32-bit version 4.19.83 (267091) | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: Running on LibreELEC (official): 9.2.0, kernel: Linux ARM 32-bit version 4.19.83 | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: FFmpeg version/source: 4.0.4-Kodi | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: Host CPU: ARMv7 Processor rev 4 (v7l), 4 cores available | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: ARM Features: Neon enabled | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: special://xbmc/ is mapped to: /usr/share/kodi/ | |
2019-04-11 12:28:42.031 T:1937312192 NOTICE: special://xbmcbin/ is mapped to: |
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
#!/usr/bin/python | |
''' | |
SCTE-35 Decoder | |
Modifications Copyright (c) 2016 RL Drake Holdings, LLC. | |
All modifications are also available for use under the MIT license as stated | |
below. |
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
#!/usr/bin/python | |
''' | |
SCTE-35 Decoder | |
The MIT License (MIT) | |
Copyright (c) 2014 Al McCormack |