Skip to content

Instantly share code, notes, and snippets.

View orlandoferrer's full-sized avatar

Orlando Ferrer orlandoferrer

View GitHub Profile
@orlandoferrer
orlandoferrer / mac_os_x_dvdmedia_to_iso
Created July 1, 2018 20:31 — forked from dir21/mac_os_x_dvdmedia_to_iso
Convert .dvdmedia to ISO
hdiutil makehybrid -udf -udf-volume-name DISCNAME -o OUT.iso IN.dvdmedia
@orlandoferrer
orlandoferrer / client.py
Created December 1, 2013 22:31
This is a basic client/server application in Python that utilizes socket connections to allow communication between computers. Several computer can connect to a centralized server that will distribute limited commands to all client computers connected. In this implementation, only one computer is allowed to send commands, and all other clients c…
#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)