Craftedtech

Software product development, full stack, dreaming big, and living small.

Common Ports

This is a list of common ports for reference. Port Protocol 20 FTP data (File Transfer Protocol) 21 FTP (File Transfer Protocol) 22 SSH (Secure Shell) 23 Telnet 25 SMTP (Send Mail Transfer Protocol) 43 whois 53 DNS (Domain Name Service) 68 DHCP (Dynamic Host Control Protocol) 79 Finger 80 HTTP (HyperText Transfer Protocol) 110 POP3 (Post Office Protocol, version 3) 115 SFTP (Secure File Transfer Protocol) 119 NNTP (Network New Transfer Protocol) 123 NTP (Network Time Protocol) 137 NetBIOS-ns 138 NetBIOS-dgm 139 NetBIOS 143 IMAP (Internet Message Access Protocol) 161 SNMP (Simple Network Management Protocol) 194 IRC (Internet Relay Chat) 220 IMAP3 (Internet Message Access Protocol 3) 389 LDAP (Lightweight Directory Access Protocol) 443 SSL (Secure Socket Layer) 445 SMB (NetBIOS over TCP)

AWK: the text data processing chainsaw

Overview This tutorial is written from the spective of processing lots of text data in a very quick fashion some ways that you could use this tool would be to parse log files or command output. I have used AWK to quicly parse and summarize logs that contain very small numbers of records to thousands of records. The great thing about awk is that it is included out of the box in most Unix based operating systems such as Linux, GNU, and Mac OSX.

Vagrant Virtualbox Setup

What are VirtialBox and Vagrant and what can they do for me? VirtualBox You can use VirtualBox to run an entire sandboxed operating system within your own computer. Vagrant You can use Vagrant to manage a development environment. Through the command line, you can download, install, configure, and run any available OS, do your work inside of it, shut it down, rebuild it on the fly, and more. The Dynamic Duo Through the use of VirtualBox and Vagrant, you can simulate the production environment of your production server.

First Post

This is my first post on the site. I hope that you like it! Welcome Function Here is a little Python function to welcome you: def hello_world(): print "Hello there!"