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
| hdiutil makehybrid -udf -udf-volume-name DISCNAME -o OUT.iso IN.dvdmedia |
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
| #Datacom Project | |
| #Orlando Ferrer | |
| import socket | |
| import os | |
| import sys | |
| import platform | |
| ipaddress= sys.argv[1] | |
| client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) #TCP connection | |
| client_socket.settimeout(90) |