DEV Community

Discussion on: Welcome Thread - v12

Collapse
 
amartin1911 profile image
Álvaro Martín

Hello everybody! Just joined dev.to community and stumbled upon this thread. I'm a student currently working on a GTK+/Python desktop app for my undergraduate university project (matplotlib, pyserial, sqlalchemy). Hope soon I could write some stuff to share with the community :)

PS. Had a little fun decoding the binary stream on the top of this page, so here's my humble Python "solution". Any tweak is much appreciated!

input = '01110111 01100101 01101100 01100011 01101111 01101101 01100101 00100001'.split(' ')
print(''.join([chr(int(i, 2)) for i in input]))

welcome!