Initial vommit
This commit is contained in:
commit
8ff5e1a1fc
4 changed files with 85 additions and 0 deletions
6
programs/blue.py
Executable file
6
programs/blue.py
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
|
||||
while True:
|
||||
sys.stdout.buffer.write(b"\x00\x00\xff")
|
6
programs/red.py
Executable file
6
programs/red.py
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
|
||||
while True:
|
||||
sys.stdout.buffer.write(b"\xff\x00\x00")
|
Reference in a new issue