This file contains 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
Author: Aaron R. Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Summary: | |
Markdown language is a programming syntax used to seamlessly convert markdown plain text files into html documents. | |
Included below are examples of the syntax for writing effective markdown. | |
Tutorial Time: | |
10 minutes | |
1. Italicized Text |
This file contains 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
Author: Aaron R. Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
BASH Compairson Expressions | |
=========================== | |
Summary: | |
A brief introduction to comparison expressions import Bourne Again Shell (BASH). | |
I. Check for the existence of a file [ -e filepath] | |
Example: |
This file contains 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
Author: Aaron R. Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
A Curl Introduction With Examples | |
================================= | |
Definition: cURL is a software package on linux that utilizes a command line | |
interface to transfer data via an URL syntax. cURL supports ports other than | |
80 (HTTP), such as FTP, IMAP, POP3, SFTP, and SMTP. | |
1. Download a file with cURL. |
This file contains 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
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Motivation: As an engineer embarks on server related assignments or system | |
administrative tasks, a few rudimentary UNIX commands can broaden an engineer's | |
breadth of knowledge and increase work productivity ouput. | |
1) man <command> --> manual or documentation for particular command. | |
2) find . -name "sample.txt" --> Search the current directory for a file named sample.txt. | |
3) find / -name "sample.txt" --> Similar to one, search the root file sytem for a file named sample.txt. | |
4) find . -name "sample" -type d --> Search the current directory for a directory named sample. |
This file contains 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
# Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
# Summary: | |
# A rudimentary understanding of regex expression (Regex) can take a programmer a long | |
# ways with text manpulation. However, only once the advanced concepts of | |
# Regex is understood, can a programmer can increase the elegance and efficiency of code, | |
# and thefore ultimately increasing programming output by virtues of specialization. | |
# Motivation: | |
# I have been using regular expressions for a couple years in the most basics sense, and |
This file contains 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
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Summary: | |
The network file system (nfs) can be used and configured to share a server | |
disk with a client. For example, a server with the file system /home | |
can be made available as /home on the client server, given that the | |
host server is running. Additionally, this file system can be renamed on the client, | |
however this is generally not good practice and using the same name is recommended. | |
Permissions can also be set on the server, restricting read, write, execute | |
on the client server as needed. |
This file contains 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
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Summary: | |
The domain name system (DNS) it useful in translating ip-address to domain names and vice-versa. | |
Below will describe the basic workings of DNS and will show configuration on a linux server. | |
A. DNS and BIND | |
1. DNS - Domain Name Sytem | |
a) Translates between ip addresses and hostname | |
2. BIND - Berkely Internet Name System |
This file contains 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
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Summary: | |
Basic commands for secure file transport protocol (sftp) in linux. Sftp | |
runs on the same port as ssh (22), and has similar secure encryption. Secure | |
file transport protocol is useful for quickly uploading or downloading files | |
from a linux server with the two verbs get and put, respectively. Generally, | |
sftp is a quick and lightweight alternative to an third part client | |
file transport protocol (ftp) such as FileZilla. |
This file contains 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
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Summary: | |
Below is a summary of the linode dashboard console. This summary will describe important aspects of the | |
linode box, an explanation of graphs, and useful linux terminal commands to better understand linode box. |
This file contains 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
Author: Aaron Phalen | Twitter: @aaron_phalen | Email: [email protected] | |
Understading Proxy Servers With Examples in Python | |
================================================== | |
Summary: | |
In this succinct gist, a theory behind the workings, types, and configuration of a | |
proxy server will be discussed. Additionally, types of proxies, basic legality, and | |
purpose of proxy use will be touched upon. Basic examples will show utilizing a proxy | |
for http requests in the python programming language. |
NewerOlder