-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<title>Conflict</title> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" type="text/css" href="your-stylesheet-link-here.css"> | ||
</head> | ||
|
||
<main> | ||
<h1>Analyzing a Conflict</h1> | ||
<h4>August 10, 2015</h4> | ||
|
||
<section> | ||
<p> | ||
In this post, I'll take a close look at a conflict which at the time wreaked havoc on my peace of mind. I have a neigbhor living below me who frequently complains about the noise that I am supposedly making. I was informed by the landlord to not worry about it, because the tenant apparently has a history of making excessive complaints and even threatening lawsuits against everyone in the building including the landlord himself. | ||
</p> | ||
<p> | ||
Now this alone was causing me some stress, but the event in question had to do with my roommate. There was one night, where he was smashed drunk, and was in fact making alot of noise. The cops were called, and he was even rude to the cops. Eventually the landlord called me at 2am wondering wwhat was going on, and eventually the landlord himself came down. | ||
</p> | ||
|
||
<p> | ||
This was not only embarassing to me, but it also gave the crazy tenant below us some more material to work with to use against us. I was angry because up till now we had a spotless record, and now suddenly my roommate had given her something credible to work with. | ||
</p> | ||
<p> | ||
For the next week, I was in a state of extreme stress. I was channeling my anger towards the crazy tenant below us, thinking of how to fight the lawyer's letters she was sending over. What I didn't realize, however, was that I was actually angry with my roommate. I was angry with his reckless behavior. | ||
</p> | ||
<p> | ||
I eventually resolved the situation by having a direct chat with my roommate and I informed him that I was angry with him. We ended up hashing it out and he has limitted his partying since then. It was very difficult for me to confront him on this for some reason, and it ranks as one of the scariest things I have done. | ||
</p> | ||
|
||
</section> | ||
</main> | ||
|
||
</body> | ||
|
||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<title>How the Internet Works</title> | ||
<meta charset="UTF-8"> | ||
<link rel="stylesheet" type="text/css" href="your-stylesheet-link-here.css"> | ||
</head> | ||
|
||
<main> | ||
<h1>How the Internet Works</h1> | ||
<h4>August 10, 2015</h4> | ||
|
||
<section> | ||
<p> | ||
At a high level, the internet is a bunch of computers that talk to one another. One computer sends a message to another computer and may receive a response. However, although the goal is simple, the underlying mechanism for achieving this is complex. One way of thinking about it is that there is an interplay of hardware and software that is needed to get a message from point A to point B. The Internet Protocal Suite is helpeful in understanding this interplay. | ||
</p> | ||
<p> | ||
At the lowest level is the "Link Layer". This deals with how to tramsit an electrical signal between two points. One challenge it solves is how to reliably send a signal and it deals with issues such as electrical interference and degredation of signal strength. | ||
</p> | ||
|
||
<p> | ||
Next you have the "Internet" layer which deals with how you transpor a packet of information from point A to point B. It handles questions such as how to find a path through a series of nodes in the network to the destination. | ||
</p> | ||
<p> | ||
In the transport layer, you establish a link between the sender and receiver so that packets can be transfered freely back and forth. | ||
</p> | ||
<p> | ||
Finally you have the Application layer, which is the layer that is directly expsed to the user. This deals with the interface for interacting with the internet. | ||
</p> | ||
</section> | ||
</main> | ||
|
||
</body> | ||
|
||
</html> |
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